summary refs log tree commit diff
path: root/bin/termify
diff options
context:
space:
mode:
Diffstat (limited to 'bin/termify')
-rwxr-xr-xbin/termify10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/termify b/bin/termify
deleted file mode 100755
index 4778470..0000000
--- a/bin/termify
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-arg0=$(basename $1 || echo $1)
-
-case "$TERM" in
-	alacritty) args="--title='$arg0' --class='$arg0' --command" ;;
-	*) args="" ;;
-esac
-
-exec $TERM $args $@ &