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
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
SUMMARY="$DUNST_SUMMARY"
APP="$DUNST_APP_NAME"
BODY="$DUNST_BODY"
[ -z "$SUMMARY" ] && exit 0
echo "${APP}: ${SUMMARY}${BODY:+ — $BODY}" > /tmp/waybar-notif
# Datei nach 10 Sekunden automatisch leeren
(sleep 10 && rm -f /tmp/waybar-notif) &