terminal: allow setting class

This commit is contained in:
lelgenio 2021-12-07 20:57:29 -03:00
parent b6d5b09932
commit 688088ba0b
1 changed files with 17 additions and 4 deletions

View File

@ -1,19 +1,32 @@
#!/bin/sh
while test $# -gt 0;do
case $1 in
-c|--class)
shift
CLASS=$1
shift
;;
*)
break
;;
esac
done
test "$1" = "-e" && shift
# {%@@ if terminal == "alacritty" @@%} #
command -v alacritty > /dev/null &&
{
test $# -gt 0 &&
exec alacritty -e $@ ||
exec alacritty
exec alacritty --class "$CLASS" -e $@ ||
exec alacritty --class "$CLASS"
}
# {%@@ elif terminal == "foot" @@%} #
command -v footclient > /dev/null &&
exec footclient -- $@
exec footclient --class "$CLASS" -- $@
# {%@@ elif terminal == "kitty" @@%} #
command -v kitty > /dev/null &&
exec kitty -- $@
exec kitty --class "$CLASS" -- $@
# {%@@ endif @@%} #
notify-send "Error" "Terminal program missing"