aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/systemd/user/teams-xsight.service
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/systemd/user/teams-xsight.service')
-rw-r--r--dot_config/systemd/user/teams-xsight.service27
1 files changed, 27 insertions, 0 deletions
diff --git a/dot_config/systemd/user/teams-xsight.service b/dot_config/systemd/user/teams-xsight.service
new file mode 100644
index 0000000..478f734
--- /dev/null
+++ b/dot_config/systemd/user/teams-xsight.service
@@ -0,0 +1,27 @@
+[Unit]
+Description=Microsoft Teams — XSight account (flatpak)
+PartOf=graphical-session.target
+After=graphical-session.target
+ConditionEnvironment=WAYLAND_DISPLAY
+
+[Service]
+Type=simple
+# Mirrors the Exec= line in teams-xsight.desktop. --user-data-dir isolates
+# this instance from teams-sii; --class is for sway window matching.
+ExecStart=/usr/bin/flatpak run com.github.IsmaelMartinez.teams_for_linux \
+ --class=teams-xsight \
+ --user-data-dir=%h/.var/app/com.github.IsmaelMartinez.teams_for_linux/config/profile-xsight \
+ --appIcon=%h/.local/share/icons/hicolor/256x256/apps/teams-xsight.png \
+ "--appTitle=Teams — XSight"
+# Both Teams instances share the same flatpak app id, so we can't use
+# `flatpak kill <app-id>` in ExecStop (it would also kill the sii one).
+# KillMode=mixed sends SIGTERM to the main process only — teams-for-linux
+# treats that as a real Quit (not tray-hide), and SIGKILL hits stragglers
+# after the stop timeout if Electron misbehaves.
+KillMode=mixed
+Restart=on-failure
+RestartSec=5s
+TimeoutStopSec=15s
+
+[Install]
+WantedBy=sway-session.target