From 63c7a2d696072f40a2cd70608bb652c351ed47f1 Mon Sep 17 00:00:00 2001 From: joygnu Date: Mon, 1 Jul 2024 08:08:36 +0200 Subject: [PATCH] cleand --- home/hyprland/pause.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 home/hyprland/pause.sh diff --git a/home/hyprland/pause.sh b/home/hyprland/pause.sh deleted file mode 100755 index 87c0ed9..0000000 --- a/home/hyprland/pause.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -# Get the current state of MOC -state=$(mocp -Q %state) - -# Check the state and toggle accordingly -if [ "$state" == "PLAY" ]; then - mocp -P -elif [ "$state" == "PAUSE" ]; then - mocp -U -else - echo "MOC is not currently playing or paused." -fi -