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
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
is_docked=$(cat ~/.config/janishutz/docked)
if [ $is_docked == "y" ]; then
echo "n" >~/.config/janishutz/docked
else
echo "y" >~/.config/janishutz/docked
fi
hyprctl reload
echo "Switched to docked mode"