aboutsummaryrefslogtreecommitdiff
path: root/.config/eww/scripts
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2024-01-23 23:58:43 +0200
committersrdusr <trevorgray@srdusr.com>2024-01-23 23:58:43 +0200
commitca5247110af91b030c55598c5a25a538032d5b00 (patch)
treef0b36c526d00923eaa39a034e7c97489a4ba1229 /.config/eww/scripts
parentb1a5549678fd5f504c096ab589eeaa375c5ad91d (diff)
downloaddotfiles-ca5247110af91b030c55598c5a25a538032d5b00.tar.gz
dotfiles-ca5247110af91b030c55598c5a25a538032d5b00.zip
Removed mem-ad script
Diffstat (limited to '.config/eww/scripts')
-rwxr-xr-x.config/eww/scripts/mem-ad15
1 files changed, 0 insertions, 15 deletions
diff --git a/.config/eww/scripts/mem-ad b/.config/eww/scripts/mem-ad
deleted file mode 100755
index 1e4cf89..0000000
--- a/.config/eww/scripts/mem-ad
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-
-total="$(free -m | grep Mem: | awk '{ print $2 }')"
-used="$(free -m | grep Mem: | awk '{ print $3 }')"
-
-free=$(expr $total - $used)
-
-if [ "$1" = "total" ]; then
- echo $total
-elif [ "$1" = "used" ]; then
- echo $used
-elif [ "$1" = "free" ]; then
- echo $free
-fi