summaryrefslogtreecommitdiff
path: root/i3/Scripts/ram.sh
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-01-13 12:51:55 +0100
committerJulian T <julian@jtle.dk>2020-01-13 12:51:55 +0100
commit4486784f8003e3b73bb228443a359a32dc8f0e43 (patch)
tree80590c24122813cbaa938340fd1517249f674fba /i3/Scripts/ram.sh
parent2171f213d6c7d0443c52b736b12f4394b4e34655 (diff)
i3 and zsh cleanup, and passmenu smaller mod
Diffstat (limited to 'i3/Scripts/ram.sh')
-rw-r--r--i3/Scripts/ram.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/i3/Scripts/ram.sh b/i3/Scripts/ram.sh
deleted file mode 100644
index b0c2442..0000000
--- a/i3/Scripts/ram.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-PIDFILE=/tmp/statRam.pid
-STATUSFILE=/tmp/dsbRfree
-
-kill `cat $PIDFILE`
-if [ $? -eq 0 ]; then
- echo "Shutting down"
- rm $STATUSFILE
- exit
-fi
-
-echo "Starting up"
-
-echo $$ > $PIDFILE
-
-while true; do
- echo " $(free -h | grep Mem: | awk '{print $3}') " > $STATUSFILE
- sleep 2
-done
-