nixos-config/scripts/terminal

19 lines
255 B
Plaintext
Raw Permalink Normal View History

2022-10-18 20:04:46 -03:00
#!/bin/sh
CLASS="terminal"
while test $# -gt 0;do
case $1 in
-c|--class)
shift
CLASS=$1
shift
;;
*)
break
;;
esac
done
exec alacritty --class "$CLASS" "$@"