350fb4fe59
Profile-based dotfiles with switchable color themes. Structure: profiles/ with themes/ and config/ per profile.
12 lines
258 B
Bash
Executable File
12 lines
258 B
Bash
Executable File
#!/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) &
|