dotfiles/homedir/.config/ssm/services/moltenbar

21 lines
451 B
Plaintext
Executable File

#!/usr/bin/env ssm
#service_respawn='true'
service_command='/home/fbt/bin/moltenbar'
service_cgroup_cleanup = 1
post_start() {
# Die if the thing didn't start
timer 5 nullexec xdo id -a moltenbar || return 1
# Set the layer on which lemonbar resides
xdo above -t $( xdo id -n root ) $( xdo id -a moltenbar )
# Set the top badding for bspwm
bspc config top_padding $(( 14 + 9 )) &>/tmp/debug.log
}
pre_stop() {
bspc config top_padding 0
}