aboutsummaryrefslogtreecommitdiff
path: root/i3/blocks/space
diff options
context:
space:
mode:
authorNeodarZ <neodarz@neodarz.ovh>2016-11-03 23:32:29 +0100
committerNeodarZ <neodarz@neodarz.ovh>2016-11-03 23:32:29 +0100
commit85869af083741e8230cf66d1acc4a3b2da21dbd5 (patch)
treef84efd1622d327039e0c0876a39b948469c42388 /i3/blocks/space
parent146b416466cda8fdb6151bf73f99fa65a483fc09 (diff)
downloaddotfiles-85869af083741e8230cf66d1acc4a3b2da21dbd5.tar.xz
dotfiles-85869af083741e8230cf66d1acc4a3b2da21dbd5.zip
Add the new i3 configuration
Diffstat (limited to 'i3/blocks/space')
-rwxr-xr-xi3/blocks/space38
1 files changed, 0 insertions, 38 deletions
diff --git a/i3/blocks/space b/i3/blocks/space
deleted file mode 100755
index 6e78d19..0000000
--- a/i3/blocks/space
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-INSTANCE="${BLOCK_INSTANCE}"
-URGENT_VALUE=90
-
-if [[ "${INSTANCE}" = "" ]]; then
- INSTANCE="$HOME;free"
-fi
-
-DISPLAY=$(echo "${INSTANCE}" | awk -F ';' '{print $2}')
-INSTANCE=$(echo "${INSTANCE}" | awk -F ';' '{print $1}')
-
-if [[ "${DISPLAY}" = "" ]]; then
- DISPLAY="free"
-fi
-
-SPACE_VARS=$(df -h "${INSTANCE}" | tail -n 1 | awk '{$1="";$6="";print $0}')
-PERC_SPACE=$(echo "${SPACE_VARS}" | awk -F ' ' '{print $4}' | tr -d '%')
-
-if [[ "${DISPLAY}" = "max" ]]; then
- VALUE=$(echo "${SPACE_VARS}" | awk -F ' ' '{print $1}')
-elif [[ "${DISPLAY}" = "used" ]]; then
- VALUE=$(echo "${SPACE_VARS}" | awk -F ' ' '{print $2}')
-elif [[ "${DISPLAY}" = "free" ]]; then
- VALUE=$(echo "${SPACE_VARS}" | awk -F ' ' '{print $3}')
-elif [[ "${DISPLAY}" = "perc" ]]; then
- VALUE="${PERC_SPACE}%"
-fi
-
-if [[ "${VALUE}" ]]; then
- echo "${VALUE}"
- echo "${VALUE}"
- echo ""
-fi
-
-if [[ "${PERC_SPACE}" -gt "${URGENT_VALUE}" ]]; then
- exit 33
-fi \ No newline at end of file