diff --git a/mpc/mpc-consume b/mpc/mpc-consume
deleted file mode 100755
index a7695ce..0000000
--- a/mpc/mpc-consume
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-if [[ "$(mpc consume)" == *"consume: on"* ]]; then
-	notify-send -a "Mopidy" -u low -t 1 "Consume On" "Songs will be removed from the playlist after completion"
-else
-	notify-send -a "Mopidy" -u low -t 1 "Consume Off" "Songs will remain in the playlist after completion"
-fi
diff --git a/mpc/mpc-playlists b/mpc/mpc-playlists
deleted file mode 100755
index b51eecb..0000000
--- a/mpc/mpc-playlists
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-MESSAGE='-mesg Append:'
-if [ "$1" = "--clear" ]; then
-	MESSAGE='-mesg Replace:'
-fi
-PLAYLIST="$(mpc lsplaylists | rofi -lines 10 -dmenu -p 'Play MPD Playlist: ' $MESSAGE)"
-if [ "$PLAYLIST" = "" ]; then
-	exit
-fi
-if [ "$1" = "--clear" ]; then
-	mpc clear
-fi
-mpc load $PLAYLIST
-if [[ "$(mpc)" != *"playing"* ]]; then
-	mpc play
-fi
-notify-send -u low -t 5 -a 'Mopidy' "$PLAYLIST" "Beginning playback of playlist $PLAYLIST"
diff --git a/mpc/mpc-repeat b/mpc/mpc-repeat
deleted file mode 100755
index cb9af66..0000000
--- a/mpc/mpc-repeat
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-if [[ "$(mpc repeat)" == *"repeat: on"* ]]; then
-	notify-send -a "Mopidy" -u low -t 1 "Repeat On" "The playlist will be repeated after it is completed"
-else
-	notify-send -a "Mopidy" -u low -t 1 "Repeat Off" "Playback will stop at the end of the playlist"
-fi
diff --git a/mpc/mpc-shuffle b/mpc/mpc-shuffle
deleted file mode 100755
index 68a4f50..0000000
--- a/mpc/mpc-shuffle
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-if [[ "$(mpc random)" == *"random: on"* ]]; then
-	notify-send -a "Mopidy" -u low -t 1 "Shuffle On" "Songs will be played in random order"
-else
-	notify-send -a "Mopidy" -u low -t 1 "Shuffle Off" "Songs will be played sequentially"
-fi