1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
8f08f6c0b1 Added window rule to get transparency and nice focus 2025-10-08 20:11:32 +00:00
f5765d0845 Added zig and raylib in install.sh 2025-10-08 20:11:11 +00:00
2 changed files with 18 additions and 5 deletions

View File

@ -9,23 +9,34 @@ layout {
proportion 0.66667 proportion 0.66667
} }
default-column-width { proportion 0.33333; } default-column-width { proportion 0.33333; }
}
window-rule {
match is-focused=false
opacity 0.8
}
window-rule {
match is-focused=true
draw-border-with-background false
opacity 0.93
focus-ring { focus-ring {
off on
}
border {
width 4 width 4
active-color "#7fc8ff" active-color "#7fc8ff"
inactive-color "#505050" inactive-color "#505050"
urgent-color "#9b0000"
} }
} }
binds { binds {
Mod+Shift+Slash { show-hotkey-overlay; } Mod+Shift+Slash { show-hotkey-overlay; }
Mod+T hotkey-overlay-title="Open a Terminal: ghostty" { spawn "ghostty"; } Mod+T hotkey-overlay-title="Open a Terminal: ghostty" { spawn "ghostty"; }
Mod+B hotkey-overlay-title="Open a Browser: firefox" { spawn "firefox"; }
Mod+D hotkey-overlay-title="Run an Application: wofi" { spawn "wofi -n"; } Mod+D hotkey-overlay-title="Run an Application: wofi" { spawn "wofi -n"; }
Mod+W hotkey-overlay-title="Change Wallpaper: wofi" { spawn "~/.config/wofi/wallpaper.sh"; } Mod+W hotkey-overlay-title="Change Wallpaper: wofi" { spawn "~/.config/wofi/wallpaper.sh"; }
Mod+W hotkey-overlay-title="Open Project: wofi" { spawn "~/.config/wofi/projects.sh"; } Mod+P hotkey-overlay-title="Open Project: wofi" { spawn "~/.config/wofi/projects.sh"; }
Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; } Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; }
XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+"; } XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+"; }

View File

@ -22,6 +22,8 @@ yay -S --noconfirm --needed \
ttf-firacode-nerd \ ttf-firacode-nerd \
neovim \ neovim \
yazi \ yazi \
zig \
raylib \
firefox firefox
mkdir -p "$HOME/tmp" mkdir -p "$HOME/tmp"