dotfiles/.config/wm_scripts/autostart.sh
2021-10-06 00:56:12 +08:00

21 lines
308 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 picom
run firefox
run discord
run alacritty "--working-directory $HOME/"
run feh "--bg-fill $HOME/wallpaper/Loveles.jpg"
[ -f "setlayout.sh" ] && ./setlayout.sh