Re-enable qutebrowser at startup

This commit is contained in:
gardouille 2020-12-17 16:10:19 +01:00
parent 3ece3f7dbc
commit f821dff3a5
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 5 additions and 0 deletions

View File

@ -11,11 +11,16 @@ hc emit_hook reload
xsetroot -solid '#5A8E3A'
TERMINAL="termit"
BROWSER="qutebrowser"
if [ $(command -v "${TERMINAL}") ] && [ ! $(pidof -x "${TERMINAL}") ] ; then
"${TERMINAL}" &
fi
if [ $(command -v "${BROWSER}") ] && [ ! $(pidof -x "${BROWSER}") ] ; then
"${BROWSER}" &
fi
###################
### Keybindings ###
###################