hide fcitx5 tray icon

This commit is contained in:
Pierre Olivier Martel
2026-02-25 21:44:08 -05:00
parent 8e88b780d3
commit 7ae27d4253
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!/bin/bash
# Restart an application by killing it and relaunching via uwsm.
# Usage: omarchy-restart-app <application-name>
# Usage: omarchy-restart-app <application-name> [application-args...]
pkill -x $1
setsid uwsm-app -- $1 >/dev/null 2>&1 &
setsid uwsm-app -- "$@" >/dev/null 2>&1 &