summary refs log tree commit diff
path: root/bin/termify
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-01-29 16:09:39 +0100
committerRobert Günzler <r@gnzler.io>2020-01-29 17:55:11 +0100
commit5f2dbebf65dc5a2e528072a8eb0bac524d86257d (patch)
treeef44a5412e1397b5ddcffcb8c0dfd11d89901202 /bin/termify
parentf5d56602df70950de6b7d40966b00c9939c81763 (diff)
Replace termify with swx
Make swq match app_ids using jq's test() which allows "fuzzy" matching
Diffstat (limited to '')
-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 $@ &