summary refs log tree commit diff
path: root/bin/termify
blob: 4778470b4306191c232083138e09f6c340f3313e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

arg0=$(basename $1 || echo $1)

case "$TERM" in
	alacritty) args="--title='$arg0' --class='$arg0' --command" ;;
	*) args="" ;;
esac

exec $TERM $args $@ &