Autostart mattermost-desktop

This commit is contained in:
gardouille 2024-03-12 17:39:32 +01:00
parent 17c48b2bb7
commit 62711816d9
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@ if [ $(command -v "${BROWSER}") ] && [ ! $(pidof -x "${BROWSER}") ] ; then
"${BROWSER}" &
fi
## Start a Mattermost
if [ $(command -v "mattermost-desktop") ] && [ ! $(pidof -x "mattermost-desktop") ] ; then
"mattermost-desktop" &
fi
## Load correct keyboard configuration
keyboard.sh
# }}}