diff options
author | Vitor Gonçalves <vitorg@tilde.team> | 2023-12-05 00:33:51 -0300 |
---|---|---|
committer | Vitor Gonçalves <vitorg@tilde.team> | 2023-12-05 00:33:51 -0300 |
commit | fbab3f5d2ce404dbd402780a2252a26a131fe2f7 (patch) | |
tree | d9ffd098b71c9dcdec2ffdd8c7eebaea938fc0da | |
parent | 8672079ff9c24bed08053219d39cf97db69c4d95 (diff) | |
download | dots-fbab3f5d2ce404dbd402780a2252a26a131fe2f7.tar.gz |
sway: prettier sway (with swayfx too)
-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 9a5d4e3..53a970b 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -46,8 +46,8 @@ bindsym $mod+Shift+c reload bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' bindsym $mod+$left focus left -bindsym $mod+$down focus next -bindsym $mod+$up focus prev +bindsym $mod+$down focus down +bindsym $mod+$up focus up bindsym $mod+$right focus right bindsym $mod+Shift+$left move left bindsym $mod+Shift+$down move down @@ -68,8 +68,8 @@ bindsym $mod+Shift+$right move right bindsym $mod+8 workspace number 8 bindsym $mod+9 workspace number 9 # Move focused container to workspace - bindsym $mod+Shift+1 move container to workspace 1:term - bindsym $mod+Shift+2 move container to workspace 2:web + bindsym $mod+Shift+1 move container to workspace number 1 + bindsym $mod+Shift+2 move container to workspace number 2 bindsym $mod+Shift+3 move container to workspace number 3 bindsym $mod+Shift+4 move container to workspace number 4 bindsym $mod+Shift+5 move container to workspace number 5 @@ -134,21 +134,30 @@ mode "resize" { bindsym Escape mode "default" } +# eyecandy +blur enable +blur_radius 1 +corner_radius 5 + # statusbar bar { - font pango:envypn 10 - status_command i3status + font pango:monospace 11 + status_command i3status-rs + colors { + background #1a181a + focused_workspace #e5c463 #4e432f #edebee + } } # window borders -gaps inner 2 +gaps inner 4 default_border pixel default_floating_border none client.focused #f85e84cc #f85e84cc #f85e84cc #f85e84cc client.focused_inactive #848089cc #848089cc #848089cc #848089cc client.unfocused #848089cc #848089cc #848089cc #848089cc -font pango:envypn 10 +font pango:monospace 0 exec wl-paste -t text --watch clipman store --no-persist include /etc/sway/config.d/* |