dotfiles/dotfiles/.scripts/autostart_desktop.sh
2024-05-17 21:13:48 -07:00

7 lines
152 B
Bash
Executable File

#!/usr/bin/env bash
for file in $HOME/.config/autostart/*; do
exec_line=$(cat "$file" | grep '^Exec' | cut -d '=' -f2-)
eval "$exec_line"
done