initial dotfiles setup

Profile-based dotfiles with switchable color themes.
Structure: profiles/ with themes/ and config/ per profile.
This commit is contained in:
2026-04-21 17:41:08 +02:00
commit 350fb4fe59
26 changed files with 1827 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
DEVICE="htix5288:00-0911:5288-touchpad"
STATE_FILE="/tmp/touchpad-disabled"
if [ -f "$STATE_FILE" ]; then
hyprctl keyword "device[$DEVICE]:enabled" true
rm "$STATE_FILE"
notify-send "Touchpad" "Aktiviert"
else
hyprctl keyword "device[$DEVICE]:enabled" false
touch "$STATE_FILE"
notify-send "Touchpad" "Deaktiviert"
fi