diff options
-rwxr-xr-x | mpc-notify | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -9,6 +9,12 @@ # For notification on media keys: # Bind media key to a call to mpc with the approprite command. +# exit early if we're in tty +if [ -z "$WAYLAND_DISPLAY" ] && [ -z "$DISPLAY" ]; then + exit 2 +fi +command="$1" + # FEATURE: make width and height configurable through flags preview_width=64 preview_height=64 |