aboutsummaryrefslogtreecommitdiff
path: root/Heads-Up-Display
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-01-07 14:52:22 +0200
committersrdusr <trevorgray@srdusr.com>2023-01-07 14:52:22 +0200
commitc6848e26d94a438d51e460d050011ce5ec67919b (patch)
tree73c10f66df5445694ac314e9ad07201736b9ad44 /Heads-Up-Display
parentea2432765d9f3ff54e93cbd6e076344bd22b9fde (diff)
downloaddotfiles-c6848e26d94a438d51e460d050011ce5ec67919b.tar.gz
dotfiles-c6848e26d94a438d51e460d050011ce5ec67919b.zip
Wrong directory
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
-