From 6b3e2bbd678b27d40c603e709a80b1760ffca139 Mon Sep 17 00:00:00 2001 From: blueingreen68 Date: Fri, 12 Jan 2024 18:34:25 +0500 Subject: update pkglist.txt --- clilaunch.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 clilaunch.sh (limited to 'clilaunch.sh') 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 -- cgit