From 62711816d9d1f7f63c8655d7022493a07f26cbc6 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 12 Mar 2024 17:39:32 +0100 Subject: [PATCH] Autostart mattermost-desktop --- autostart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autostart b/autostart index 55230e1..1291da6 100755 --- a/autostart +++ b/autostart @@ -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 # }}}