small pixel drawing of a pufferfish dotfiles

*
j3s j3s@c3f.net
Wed, 16 Sep 2020 16:33:02 -0500
commit

50cbc6e11bc96fe27e3bb1aff08047ee82b66ee7

parent

a768c7669f82ae2350fd5b3af48d85a94e80d155

2 files changed, 12 insertions(+), 4 deletions(-)

jump to
M .config/sway/config.config/sway/config

@@ -36,10 +36,10 @@ ### Idle configuration

# # Example configuration: # -# exec swayidle -w \ -# timeout 300 'swaylock -f -c 000000' \ -# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ -# before-sleep 'swaylock -f -c 000000' +#exec swayidle -w \ +# timeout 300 'swaylock -f -c 000000' \ +# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ +# before-sleep 'swaylock -f -c 000000' # # This will lock your screen after 300 seconds of inactivity, then turn off # your displays after another 300 seconds, and turn your screens back on when

@@ -165,6 +165,11 @@ bindsym $mod+space focus mode_toggle

# Move focus to the parent container # bindsym $mod+a focus parent + + # Float config + # use swaymsg -t get_tree to find class or app_id + for_window [class="Steam"] floating enable + for_window [class="Mumble"] floating enable # # Scratchpad: #
M bin/vpmbin/vpm

@@ -4,6 +4,9 @@ case $1 in

install) xbps-install -S "$2" ;; + reinstall) + xbps-install -f "$2" + ;; remove) xbps-remove -R "$2" ;;