mirror of
https://github.com/tomru/hlwm-config.git
synced 2026-03-03 06:27:20 +01:00
50 lines
907 B
Bash
Executable File
50 lines
907 B
Bash
Executable File
#!/usr/bin/env bash
|
|
exec 2>&1 >> >(tee -i /tmp/hlwm-autostart.log)
|
|
|
|
PIDS_FILE=/tmp/hlwm-autostart-pids
|
|
|
|
hc() {
|
|
herbstclient "$@"
|
|
}
|
|
|
|
store_pid() {
|
|
echo $! >> $PIDS_FILE
|
|
}
|
|
|
|
cd $(dirname $0)
|
|
|
|
source ./gruvbox_colors.sh
|
|
|
|
cat $PIDS_FILE | xargs kill
|
|
rm $PIDS_FILE
|
|
|
|
hc emit_hook reload
|
|
|
|
hc set default_frame_layout 1 # horizontal
|
|
hc set_layout horizontal # need to manually change the current one as well
|
|
hc set tree_style '╾│ ├└╼─┐'
|
|
|
|
./wallpaper.sh
|
|
./bindings.sh
|
|
./rules.sh
|
|
./styling.sh
|
|
|
|
hc unlock
|
|
hc detect_monitors
|
|
|
|
panel_height=20
|
|
statusbar_height=20
|
|
|
|
for monitor in $(hc list_monitors | cut -d: -f1) ; do
|
|
# start it on each monitor
|
|
hc pad $monitor $panel_height 0 $statusbar_height 0
|
|
./panel.py $monitor & store_pid
|
|
./statusbar.sh $monitor & store_pid
|
|
done
|
|
|
|
wmname LG3D
|
|
|
|
systemctl --user restart hlwm-session.target
|
|
#systemctl --user restart battery-warning.timer
|
|
|