blob: 4659fc3ce5b362789ad1c8624081869c8dd7b5b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
# -lf/nf/cf color
# Defines the foreground color for low, normal and critical notifications respectively.
#
# -lb/nb/cb color
# Defines the background color for low, normal and critical notifications respectively.
#
# -lfr/nfr/cfr color
# Defines the frame color for low, normal and critical notifications respectively.
[ -f "$HOME/.cache/wal/colors.sh" ] && . "$HOME/.cache/wal/colors.sh"
pidof dunst && killall dunst
dunst -lf "${color0:-#ffffff}" \
-lb "${color1:-#eeeeee}" \
-lfr "${color2:-#dddddd}" \
-nf "${color3:-#cccccc}" \
-nb "${color4:-#bbbbbb}" \
-nfr "${color5:-#aaaaaa}" \
-cf "${color6:-#999999}" \
-cb "${color7:-#888888}" \
-cfr "${color8:-#777777}" > /dev/null 2>&1 &
|