2018-04-12 05:34:23 +02:00
|
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
|
2017-12-12 05:49:30 +01:00
|
|
|
# Source the .Xresources and .xmodmap files
|
|
|
|
xrdb -merge ~/.Xresources
|
|
|
|
xmodmap ~/.xmodmap
|
|
|
|
|
|
|
|
# Source the files in the xinitrc.d directory
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
|
|
|
|
2018-08-31 20:28:02 +02:00
|
|
|
# Never blank the screen (disable power saving)
|
|
|
|
xset s off -dpms
|
|
|
|
|
2017-12-12 05:49:30 +01:00
|
|
|
# Start compton
|
|
|
|
compton -b
|
|
|
|
|
|
|
|
# Set the desktop background
|
2018-08-31 20:28:02 +02:00
|
|
|
feh --no-fehbg --bg-fill ~/.config/feh/back.png
|
2017-12-12 05:49:30 +01:00
|
|
|
|
|
|
|
# Start the window manager
|
2018-01-04 05:07:10 +01:00
|
|
|
exec bspwm
|
2017-12-12 05:49:30 +01:00
|
|
|
|
|
|
|
# vim:ft=zsh
|