aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-04-06 08:24:08 +0300
committerYaroslav <contact@yaroslavps.com>2020-04-06 08:24:08 +0300
commit4e7f7cd77cb2d66aefa7ab574d1f6edf66482f41 (patch)
treed47ad1808100f027714097a21adb3b0dbd8796ab /dotfiles/.local
parent64c32afca8b5d52809bffeaa5bedc44579f97939 (diff)
downloadswayrice-4e7f7cd77cb2d66aefa7ab574d1f6edf66482f41.tar.gz
swayrice-4e7f7cd77cb2d66aefa7ab574d1f6edf66482f41.zip
remove old scripts
Diffstat (limited to 'dotfiles/.local')
-rwxr-xr-xdotfiles/.local/bin/activenv3
-rwxr-xr-xdotfiles/.local/bin/i3barbattery34
2 files changed, 0 insertions, 37 deletions
diff --git a/dotfiles/.local/bin/activenv b/dotfiles/.local/bin/activenv
deleted file mode 100755
index 6ffac10..0000000
--- a/dotfiles/.local/bin/activenv
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-source ~/Documents/venvs/$1/bin/activate
diff --git a/dotfiles/.local/bin/i3barbattery b/dotfiles/.local/bin/i3barbattery
deleted file mode 100755
index edc89c3..0000000
--- a/dotfiles/.local/bin/i3barbattery
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-# Taken from Luke Smith's rice
-# Takes battery name as an argument (e.g. BAT0)
-
-case $BLOCK_BUTTON in
- 3) notify-send "🔋 Battery module" "🔋: discharging
-🛑: not charging
-♻: stagnant charge
-🔌: charging
-⚡: charged
-❗: battery very low!
-- Text color reflects charge left" ;;
-esac
-
-capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
-status=$(cat /sys/class/power_supply/"$1"/status)
-
-if [ "$capacity" -ge 75 ]; then
- color="#689d6a"
-elif [ "$capacity" -ge 50 ]; then
- color="#ffffff"
-elif [ "$capacity" -ge 25 ]; then
- color="#ffff00"
-else
- color="#ff0000"
- warn="❗"
-fi
-
-[ -z $warn ] && warn=" "
-
-[ "$status" = "Charging" ] && color="#ffffff"
-
-printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//;s/Discharging/🔋/;s/Not Charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"
-