Skip to content

Instantly share code, notes, and snippets.

@SietsevanderMolen
Created May 22, 2016 10:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SietsevanderMolen/7b4cc32ce7b4884513b0a639540e454f to your computer and use it in GitHub Desktop.
Save SietsevanderMolen/7b4cc32ce7b4884513b0a639540e454f to your computer and use it in GitHub Desktop.
Start all entries in xdg autostart dir
autostart_etc=${XDG_CONFIG_DIRS-/etc/xdg}/autostart
autostart_home=${XDG_CONFIG_HOME-~/.config}/autostart
shopt -s nullglob
for i in $autostart_etc/*.desktop $autostart_home/*.desktop; do
if ! grep -q "OnlyShowIn=" "$i"; then
$(grep "Exec=" "$i" | sed 's/Exec=//') &
fi
done
@justmegawatt
Copy link

How do I change my i3 background from Qubes wallpaper to something else? For a WM typically I'd use FEH or whatever, but that's not available with Qubes and Dom0 right? With too xfce you can just right click and change the wallpaper, but that's not available with i3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment