diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-28 18:43:38 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-28 18:44:14 +0000 |
commit | 46aa551ae8d225a78d8aff0b2b00809977b4612e (patch) | |
tree | 1aa8f5e3bc0d25b65a57b80aa1e4228969ab77a9 /.config/sway | |
parent | e2c37175176b2bf53021f3eb8c0d24276b150220 (diff) | |
download | dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar.gz dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar.bz2 dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar.lz dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar.xz dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.tar.zst dotfiles-46aa551ae8d225a78d8aff0b2b00809977b4612e.zip |
Support XDG_CONFIG_HOME
Diffstat (limited to '.config/sway')
-rw-r--r-- | .config/sway/config | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/.config/sway/config b/.config/sway/config index 57d2cf1..9a12360 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -191,11 +191,16 @@ input "1699:32801:Chicony_Saitek_Eclipse_II_Keyboard" xkb_layout gb,no bindsym $mod+Shift+$down move down bindsym $mod+Shift+$up move up bindsym $mod+Shift+$right move right - # Ditto, with arrow keys - bindsym $mod+Shift+Left move left - bindsym $mod+Shift+Down move down - bindsym $mod+Shift+Up move up - bindsym $mod+Shift+Right move right + # Resize + bindsym $mod+Ctrl+Down resize shrink height 10 + bindsym $mod+Ctrl+Up resize grow height 10 + bindsym $mod+Ctrl+Right resize shrink width 10 + bindsym $mod+Ctrl+Left resize grow width 10 + # Ditto + bindsym $mod+Ctrl+$down resize shrink height 10 + bindsym $mod+Ctrl+$up resize grow height 10 + bindsym $mod+Ctrl+$right resize shrink width 10 + bindsym $mod+Ctrl+$left resize grow width 10 # # Workspaces: # @@ -224,6 +229,9 @@ input "1699:32801:Chicony_Saitek_Eclipse_II_Keyboard" xkb_layout gb,no bindsym $mod+Shift+8 move container to workspace number 8 bindsym $mod+Shift+9 move container to workspace number 9 bindsym $mod+Shift+0 move container to workspace number 10 + + bindsym $mod+Shift+Left move container to workspace prev + bindsym $mod+Shift+Right move container to workspace next # Note: workspaces can have any name you want, not just numbers. # We just use 1-10 as the default. # @@ -307,14 +315,15 @@ input "type:touchpad" { output $laptop_screen enable -exec_always $HOME/.config/sway/clamshell.sh +exec_always ${XDG_CONFIG_HOME:-~/.config}/sway/clamshell.sh exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK exec dunst exec nm-applet --indicator exec blueman-applet exec thunar --daemon -#exec pipewire -#exec pipewire-pulse +exec pipewire +exec pipewire-pulse +exec wireplumber exec gentoo-pipewire-launcher exec foot --server |