aboutsummaryrefslogtreecommitdiff
path: root/Heads-Up-Display
diff options
context:
space:
mode:
Diffstat (limited to 'Heads-Up-Display')
-rwxr-xr-xHeads-Up-Display13
1 files changed, 0 insertions, 13 deletions
diff --git a/Heads-Up-Display b/Heads-Up-Display
deleted file mode 100755
index d90c7d3..0000000
--- a/Heads-Up-Display
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-id=$(xdotool search --class Heads-Up-Display);
-if [ -z "$id" ]; then
- alacritty --class "Heads-Up-Display" -e tmux new-session -A -s HUD -e bash > /dev/null 2>&1 &
-else
- if [ ! -f /tmp/hide_hud ]; then
- touch /tmp/hide_hud && xdo hide "$id"
- elif [ -f /tmp/hide_hud ]; then
- rm /tmp/hide_hud && xdo show "$id"
- fi
-fi
-