Allow other configurations to hook into hlwm

This commit is contained in:
Tom Willemse 2016-08-05 01:47:50 +02:00
parent e87c292ab3
commit 6cabddd647

View file

@ -207,3 +207,16 @@ herbstclient set tree_style '╾│ ├└╼─┐'
## Monitors ## Monitors
# I have two monitors, each with a resolution of 1920x1080. # I have two monitors, each with a resolution of 1920x1080.
hc set_monitors 1920x1080+0+0 1920x1080+1920+0 hc set_monitors 1920x1080+0+0 1920x1080+1920+0
## Other configurations
# Load any other configuration files in
# $HOME/.config/herbstluftwm/autostart.d so other programs can
# configure parts of herbstluftwm to their needs (such as keybindings
# for Rofi).
if [ -d "${HOME}/.config/herbstluftwm/autostart.d" ]; then
for f in ${HOME}/.config/herbstluftwm/autostart.d/?*.sh; do
[ -x "$f" ] && source "$f"
done
unset f
fi