diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-03-29 18:18:33 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-03-29 18:18:33 +0530 |
commit | 47a4b0dd46436640f251b010f2d2509b5a76f19e (patch) | |
tree | 1ee109e1cc43d4896a5febd3ee7b5eef4e739070 | |
parent | 3211182e0640f0003d9e3f7fafc44bddc8600db5 (diff) |
updated keyBindings.txt
-rwxr-xr-x | .config/XMonad/baraction | 49 | ||||
-rw-r--r-- | keyBindings | 10 |
2 files changed, 5 insertions, 54 deletions
diff --git a/.config/XMonad/baraction b/.config/XMonad/baraction deleted file mode 100755 index b32d693..0000000 --- a/.config/XMonad/baraction +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/zsh - -COLOR1="#130F23" -COLOR2="#8D5BD0" -A1="%{B"$COLOR2"}%{F"$COLOR1"}%{B"$COLOR1"}%{F-}" -A2="%{B"$COLOR1"}%{F"$COLOR2"}%{B"$COLOR2"}%{F-}" - -clock() { - datetime=$(date +"%d %b(%A) %H:%M") - # echo "%{B#6c71c4}%{F#f0f0f0} $datetime %{B-}%{F-}" - echo $datetime -} - -cpu_load() { - read cpu a b c previdle rest < /proc/stat - prevtotal=$((a+b+c+previdle)) - sleep 0.5 - read cpu a b c idle rest < /proc/stat - total=$((a+b+c+idle)) - cpu=$((100*( (total-prevtotal) - (idle-previdle) ) / (total-prevtotal) )) - echo CPU:$cpu% -} - -cpu_temp() { - CEL=$'\xc2\xb0C' - temp=$( cat /sys/devices/virtual/thermal/thermal_zone0/temp ) - temp=`expr $temp / 1000` - echo TEMP:$temp$CEL -} - -mem_usage() { - mem=$(free -m | grep Mem: | awk '{print$3 / $2 * 100}') - # echo "%{B#14eea0}%{F#232627}" - printf "MEM: %.0f%%" $mem -} - -volume() { - volume_level=$(pamixer --get-volume-human) - if [ $volume_level = "muted" ]; then - echo "%{F#ff0058}VOL: $(pamixer --get-volume)%{F-}" - else - echo "VOL: $volume_level" - fi -} - -while :; do - echo "%{r}"$A2$A1$(volume)$A2$(cpu_temp)$A1$(cpu_load)$A2$(mem_usage)$A1$(clock) - sleep 1 -done diff --git a/keyBindings b/keyBindings index 316020a..2ff0d2a 100644 --- a/keyBindings +++ b/keyBindings @@ -1,7 +1,7 @@ -ModQ recompile -- lock +ModQ LockScreen ModW Nitrogen NSP ModE EmailClient -ModR +ModR TerminalFileManager ModT Scratchpad-st ModY GIMP ModU Scratchpad-scrcpy @@ -17,10 +17,10 @@ ModH NavigateWindows ModJ NavigateWindows ModK NavigateWindows ModL NavigateWindows -ModZ -- DND/PauseNotifications +ModZ ModX -ModC -- ColorPicker -ModV Sticky +ModC ColorPicker +ModV StickyWindow ModB Konqueror ModN ClearNotifications ModM VLC |