From 12c602dc11761da4a2ed0944dcabf441b4764931 Mon Sep 17 00:00:00 2001 From: pr0fsmith <54153368+pr0fsmith@users.noreply.github.com> Date: Mon, 14 Mar 2022 19:12:25 -0400 Subject: [PATCH] Delete changescrn --- changescrn | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 changescrn diff --git a/changescrn b/changescrn deleted file mode 100644 index 97f0f87..0000000 --- a/changescrn +++ /dev/null @@ -1,42 +0,0 @@ -#! /bin/bash - -#Arguments -OLDPNG=$1 #name of screen you'd like to change. Screen names are default names without the .png -NEWPNG=$2 #path/to new .png file - -#Replace the old screen with the new png you specify. Each option is the name of the default png file. - - case $OLDPNG in - batteryempty) - cp $NEWPNG /usr/share/remarkable/batteryempty.png - ;; - lowbattery) - cp $NEWPNG /usr/share/remarkable/lowbattery.png - ;; - overheating) - cp $NEWPNG /usr/share/remarkable/overheating.png - ;; - poweroff) - cp $NEWPNG /usr/share/remarkable/poweroff.png - ;; - rebooting) - cp $NEWPNG /usr/share/remarkable/rebooting.png - ;; - recovery) - cp $NEWPNG /usr/share/remarkable/recovery.png - ;; - splash) - cp $NEWPNG /usr/share/remarkable/splash.png - ;; - starting) - cp $NEWPNG /usr/share/remarkable/starting.png - ;; - suspended) - cp $NEWPNG /usr/share/remarkable/suspended.png - ;; - *) - echo "Usage: changescrn [Screen Options] [New .png location]" - echo "Screen Options: mv batteryempty lowbattery overheating poweroff rebooting recovery splash starting suspended" - ;; - esac -