Browse Source

Update dwm status bar

master
Tovi Jaeschke-Rogers 3 years ago
parent
commit
67deafe024
2 changed files with 4 additions and 13 deletions
  1. +2
    -6
      .dwm/autostart.sh
  2. +2
    -7
      .dwm/dwm-sss

+ 2
- 6
.dwm/autostart.sh View File

@ -1,14 +1,10 @@
#!/bin/bash #!/bin/bash
xmodmap -e 'clear Lock' &
xmodmap -e 'keycode 135 = Super_R' &
xmodmap -e 'keycode 66 = Escape' &
xmodmap -e 'keycode 9 = Caps_Lock' &
~/.local/bin/remap-keys
#pulseaudio --start & #pulseaudio --start &
dunst & dunst &
xautolock -time 10 -locker slock & xautolock -time 10 -locker slock &
feh --bg-fill ~/Pictures/Wallpapers/nature/$(ls ~/Pictures/Wallpapers/nature/ | shuf -n 1)
feh --bg-fill ~/Pictures/wp/$(ls ~/Pictures/wp/ | shuf -n 1)
#compton -b --backend xrender --config ~/.config/compton/compton.conf & #compton -b --backend xrender --config ~/.config/compton/compton.conf &
unclutter & unclutter &
#transmission-daemon & #transmission-daemon &


+ 2
- 7
.dwm/dwm-sss View File

@ -3,15 +3,10 @@
while true; while true;
do do
f=$(cat /sys/class/thermal/thermal_zone0/temp) f=$(cat /sys/class/thermal/thermal_zone0/temp)
b=$(cat /sys/class/power_supply/BAT1/capacity)
t=$(echo $f | cut -b -2).$(echo $f | cut -b 3-)°C t=$(echo $f | cut -b -2).$(echo $f | cut -b 3-)°C
d=$(date '+%a %b %d, %H:%M:%S') d=$(date '+%a %b %d, %H:%M:%S')
p=$(pacman -Qu | grep -v "\[ignored\]" | wc -l) p=$(pacman -Qu | grep -v "\[ignored\]" | wc -l)
s=$(mpc status | grep -Eo 'playing|paused' || echo "stopped")
S=$(mpc current| cut -c 1-30)
td=$(transmission-remote --list | grep "Downloading" | uniq -c | awk '{print $1}')
[ -z $td ] && td=0
ts=$(transmission-remote --list | grep "Seeding" | uniq -c | awk '{print $1}')
[ -z $ts ] && ts=0
xsetroot -name "Torrents Down: $td Seed: $ts | Mpc $s $S | Pkgs: $p | $d | $t"
xsetroot -name " Pkgs: ${p} | ${d} | ${t} | Bat: ${b}% "
sleep 0.5; sleep 0.5;
done; done;

Loading…
Cancel
Save