dotfiles/home/.config/xmonad/scripts/autostart.sh

8 lines
234 B
Bash
Raw Normal View History

#!/bin/sh
# Automatically start the applications in $HOME/.config/autostart
AUTOSTART_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/autostart"
2021-09-02 15:38:48 +00:00
find $AUTOSTART_DIR -name "*.desktop" | xargs -I {} sh -c "~/.local/bin/scripts/deskopen {} &"