diff options
| author | 2024-01-12 18:34:25 +0500 | |
|---|---|---|
| committer | 2024-01-15 06:30:30 +0000 | |
| commit | 6b3e2bbd678b27d40c603e709a80b1760ffca139 (patch) | |
| tree | f94a3e7c627a45a83635a6fedb74bafa163be7f0 /clilaunch.sh | |
| parent | d7ae6c112c7e330fbcf03f6ad581f992a932b8ba (diff) | |
update pkglist.txt
Diffstat (limited to 'clilaunch.sh')
| -rwxr-xr-x | clilaunch.sh | 16 |
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 |
