Last active
March 9, 2021 19:21
-
-
Save nickknissen/7585861 to your computer and use it in GitHub Desktop.
#!/bin/sh #
# ~/.xsession
#
# Executed by xdm/gdm/kdm at login
# /bin/bash --login -i ~/.xinitrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export BROWSER=google-chrome | |
export DE=openbox | |
# Dbus fix | |
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then | |
eval "$(dbus-launch --sh-syntax --exit-with-session)" | |
fi | |
# Gtk themes | |
export GTK2_RC_FILES="$HOME/.gtkrc-2.0" | |
exec openbox-session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# ~/.xsession | |
# | |
# Executed by xdm/gdm/kdm at login | |
# | |
/bin/bash --login -i ~/.xinitrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(sleep 3 && /usr/bin/nm-applet --sm-disable) & | |
tint2 & | |
volumeicon & | |
parcellite & | |
# Enable as required | |
#compton -cCGb & | |
#xbacklight -set 100 & | |
#/usr/bin/synclient TouchpadOff=1 & | |
#xxkb & | |
#spacefm -d & | |
sh ~/.fehbg & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment