dotfiles/home/.config/xmonad/scripts/autostart.sh
2021-08-24 15:40:24 +02:00

7 lines
222 B
Bash
Executable file

#!/bin/sh
# Automatically start the applications in $HOME/.config/autostart
AUTOSTART_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/autostart"
find "$AUTOSTART_DIR" -name '*.desktop' -exec ~/.local/bin/scripts/deskopen "{}" \;