feat: simple install script until archmgr completed

This commit is contained in:
2026-06-18 11:23:48 +02:00
parent b167d40039
commit a776d1760a
15 changed files with 430 additions and 40 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
enabled=$(hyprctl getoption input:kb_options | grep "caps:swapescape")
if [[ $enabled == "" ]]; then
hyprctl keyword input:kb_options "caps:swapescape"
notify-send "Swapescape enabled"
else
hyprctl keyword input:kb_options ""
notify-send "Swapescape disabled"
fi