dotfiles/.config/wm_scripts/autostart.sh

13 lines
134 B
Bash
Raw Normal View History

2021-02-18 22:18:26 +08:00
#!/bin/bash
function run()
{
if ! pgrep -f $1; then
$1&
fi
}
run firefox
run discord
run "alacritty --working-directory $HOME/"