- #!/bin/sh
- #
- # These things are run when an Openbox X Session is started.
- # You may place a similar script in $HOME/.config/openbox/autostart
- # to run user-specific things.
- #
-
- # If you want to use GNOME config tools...
- #
- #if test -x /usr/lib/x86_64-linux-gnu/gnome-settings-daemon >/dev/null; then
- # /usr/lib/x86_64-linux-gnu/gnome-settings-daemon &
- #elif which gnome-settings-daemon >/dev/null 2>&1; then
- # gnome-settings-daemon &
- #fi
-
- # If you want to use XFCE config tools...
- #
- #xfce-mcs-manager &
- #XDG_CONFIG_HOME="/home/immanuel/.config"
- #HOME="/home/immanuel"
- #source $XDG_CONFIG_HOME/openbox/environment
- source $HOME/.profile
-
- xrdb /home/immanuel/.config/Xresources
- feh --bg-fill $HOME/Pictures/Wallpapers/$WALLPAPER
- compton -b &
- xkbcomp $XDG_CONFIG_HOME/xkb/custom.xkb :0 &
- st -c 'DROPDOWN_TERM' -e 'tmux' &
|