dotfiles/.config/wm_scripts/autostart.sh
2021-07-27 19:23:52 +08:00

19 lines
261 B
Bash
Executable File

#!/bin/bash
#
# Script to autostart programs.
#
function run()
{
if ! pgrep -f $1; then
$1 $2&
fi
}
[[ $(pgrep dwm) ]] && run slstatus
run firefox
run discord
run alacritty "--working-directory $HOME/"
run feh "--bg-fill $HOME/wallpaper/ff_campfire.jpg"