Compare commits

..

2 Commits

Author SHA1 Message Date
8864557b02 feat(sway): add swayfx theming 2026-02-02 18:28:39 +01:00
f9da29cc0d feat(sway): consistent border theming 2026-02-02 18:28:04 +01:00
6 changed files with 15 additions and 12 deletions

View File

@@ -15,6 +15,9 @@ set $lockscreen swaylock
# other # other
set $wobs /tmp/wob.sock set $wobs /tmp/wob.sock
# style
set $border 3
# colors # colors
set $bg0 #32302f set $bg0 #32302f
set $bg1 #252423 set $bg1 #252423

View File

@@ -1,8 +1,8 @@
titlebar_border_thickness 2
font pango:JetBrainsMono Nerd Font Bold 10 font pango:JetBrainsMono Nerd Font Bold 10
default_floating_border normal 2 default_floating_border normal $border
default_border normal 2 default_border normal $border
titlebar_border_thickness $border
# class border bground text indicator child_border # class border bground text indicator child_border
client.focused $fg $bg0 $fg $fg $fg client.focused $fg $bg0 $fg $fg $fg

View File

@@ -1,11 +1,8 @@
gaps outer 6 titlebar_separator disable
gaps inner 6
gaps top 1
corner_radius 7
shadows enable shadows enable
shadow_blur_radius 25 shadow_blur_radius 25
shadow_color #0000007F shadow_color #0000007F
shadow_offset 0 5 shadow_offset 0 5
blur enable blur enable

View File

@@ -71,7 +71,7 @@ bindsym $mod+e layout toggle split
bindsym $mod+f fullscreen bindsym $mod+f fullscreen
# focus # focus
bindsym $mod+Shift+space floating toggle; [floating] border pixel 3; [tiling] border normal 3 bindsym $mod+Shift+space floating toggle; [floating] border pixel $border; [tiling] border normal $border
bindsym $mod+space focus mode_toggle bindsym $mod+space focus mode_toggle
bindsym $mod+a focus parent bindsym $mod+a focus parent

View File

@@ -1,6 +1,6 @@
# additional theming # additional theming
for_window [floating] border pixel 3 for_window [floating] border pixel $border
for_window [tiling] border normal 3 for_window [tiling] border normal $border
# workspace assignment # workspace assignment
assign [app_id="google-chrome"] workspace 2 assign [app_id="google-chrome"] workspace 2

View File

@@ -1,7 +1,10 @@
# deamon # deamon
exec swayidle -w exec swayidle -w
exec wlsunset -l 46.1 -L 14.5 exec wlsunset -l 46.1 -L 14.5
exec rm -f $wobs && mkfifo $wobs && tail -f $wobs | wob exec rm -f $wobs \
&& mkfifo $wobs \
&& tail -f $wobs \
| wob
exec protonmail-bridge -n exec protonmail-bridge -n
# traditional "start when os starts" programs # traditional "start when os starts" programs