dotfiles/.config/wm_scripts/autostart.sh

20 lines
302 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"
[ -f "setlayout.sh" ] && ./setlayout.sh