15 lines
292 B
Bash
Executable file
15 lines
292 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# $XDG_CONFIG_HOME/polybar/launch-dwm.sh &
|
|
picom &
|
|
nitrogen --restore &
|
|
$HOME/.scripts/launch-conky_dwm.sh &
|
|
sxhkd -c $HOME/.config/sxhkd/dwm &
|
|
if [ x$(pidof dwmblocks) = "x" ]
|
|
then
|
|
dwmblocks &
|
|
pkill -RTMIN+1 dwmblocks
|
|
else
|
|
echo 'dwmblocks is running, skipped.'
|
|
fi
|
|
fcitx5 -d &
|