Load correct keyboard configuration at startup

This commit is contained in:
gardouille 2021-11-29 14:28:12 +01:00
parent d09783388e
commit 909de4cbeb
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 7 additions and 0 deletions

View File

@ -13,14 +13,21 @@ xsetroot -solid '#5A8E3A'
TERMINAL="alacritty"
BROWSER="qutebrowser"
# Autostart apps {{{
## Start a terminal
if [ $(command -v "${TERMINAL}") ] && [ ! $(pidof -x "${TERMINAL}") ] ; then
"${TERMINAL}" &
fi
## Start a web browser
if [ $(command -v "${BROWSER}") ] && [ ! $(pidof -x "${BROWSER}") ] ; then
"${BROWSER}" &
fi
## Load correct keyboard configuration
keyboard.sh
# }}}
###################
### Keybindings ###
###################