mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
8 lines
234 B
Bash
Executable file
8 lines
234 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" | xargs -I {} sh -c "~/.local/bin/scripts/deskopen {} &"
|