nixos-config/scripts/terminal
2022-12-06 20:29:38 -03:00

19 lines
255 B
Bash

#!/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" "$@"