Allow other configurations to hook into hlwm
This commit is contained in:
parent
e87c292ab3
commit
6cabddd647
1 changed files with 13 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue