My .xinitrc
if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
for f in /etc/X11/xinit/xinitrc.d/*; do | |
[ -x "$f" ] && . "$f" | |
done | |
unset f | |
fi | |
# Start Gnome-related services | |
gsettings-data-convert & | |
xdg-user-dirs-gtk-update & | |
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & | |
/usr/lib/gnome-settings-daemon/gnome-settings-daemon & | |
eval $(gnome-keyring-daemon --start --components=pkcs11,secrets,ssh,gpg) | |
export GNOME_KEYRING_CONTROL GNOME_KEYRING_PID GPG_AGENT_INFO SSH_AUTH_SOCK | |
# Source my personal .profile file | |
. ~/Config/Profile/.profile | |
# Autostart Apps | |
plank & | |
budgie-panel & | |
kupfer --no-splash & | |
xbindkeys | |
perl ~/Code/Desktop/xSwipe/xSwipe.pl & | |
python /home/mank319/.local/share/gtk-theme-variant-switcher/switcher.py & | |
tp-battery-icon -b 2 & # to display my 2nd battery's status | |
sleep 2 | |
nm-applet & | |
gnome-pie & | |
variety & | |
owncloud & | |
# Execute the cerbere watchdog which is responsible for starting the gala wm | |
exec cerbere |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment