summaryrefslogtreecommitdiff
path: root/.local/bin/notifyd
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/notifyd')
-rwxr-xr-x.local/bin/notifyd14
1 files changed, 0 insertions, 14 deletions
diff --git a/.local/bin/notifyd b/.local/bin/notifyd
deleted file mode 100755
index ddd5971..0000000
--- a/.local/bin/notifyd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-connected_to_x_server() {
- xdpyinfo &>/dev/null
- return $?
-}
-
-start_backend() {
- /usr/lib/xfce4/notifyd/xfce4-notifyd
-}
-
-while connected_to_x_server; do
- start_backend
-done