This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/scripts/terminal

17 lines
386 B
Bash
Executable file

#!/bin/sh
test "$1" = "-e" && shift
# {%@@ if terminal == "alacritty" @@%} #
command -v alacritty > /dev/null &&
{
test $# -gt 0 &&
exec alacritty -e $@ ||
exec alacritty
}
# {%@@ elif terminal == "kitty" @@%} #
command -v kitty > /dev/null &&
exec kitty -- $@
# {%@@ endif @@%} #
notify-send "Error" "Terminal program missing"