2021-07-22 20:21:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Automatically start the applications in $HOME/.config/autostart
|
|
|
|
|
|
|
|
AUTOSTART_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/autostart"
|
2021-08-24 13:40:24 +00:00
|
|
|
find "$AUTOSTART_DIR" -name '*.desktop' -exec ~/.local/bin/scripts/deskopen "{}" \;
|