aboutsummaryrefslogtreecommitdiff
path: root/clilaunch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'clilaunch.sh')
-rwxr-xr-xclilaunch.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/clilaunch.sh b/clilaunch.sh
new file mode 100755
index 0000000..1309b16
--- /dev/null
+++ b/clilaunch.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+# Скрипт для запуска cli программ с именованным заголовком из лаунчера
+
+case "$1" in
+ peaclock)
+ peaclock
+
+ break
+ ;;
+
+ *)
+ foot --title="$1" $1
+
+ break
+ ;;
+esac