dotfiles/awesome/autorun.sh

23 lines
338 B
Bash
Raw Normal View History

2023-10-01 01:49:19 +00:00
#!/bin/sh
run() {
if ! pgrep -f "$1" ;
then
"$@"&
fi
}
# Currently not working
run "alacritty --title bottom -e btm --battery"
2023-10-01 01:49:19 +00:00
run "cbatticon"
run "blueman-applet"
run "nm-applet --no-agent"
run "nextcloud --background"
run "pasystray"
run "xscreensaver -no-splash"
run "sleep 4"
run "wmctrl -r bottom -t 1"
run "keepassxc"
2023-10-01 01:49:19 +00:00