+scripts to version control

Stored in .local/scripts, scripts I use for my init. I will be adding my
xinit shortly for a full experience.
This commit is contained in:
dx
2020-05-12 22:06:42 +01:00
parent f3d34eed3f
commit ceaa91c43e
6 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#!/bin/bash
feh --bg-scale --randomize $HOME/Pictures/Backgrounds;

3
Scripts/.local/scripts/rdwm Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
killall dwm;

View File

@@ -0,0 +1,8 @@
#!/bin/bash
killall nm-applet;
killall blueman-applet;
killall sxhkd;
killall mpd;
nm-applet & blueman-applet & refresh_bar & mpd & sxhkd;

View File

@@ -0,0 +1,4 @@
#!/bin/bash
killall set_bar;
$HOME/.local/scripts/set_bar;

64
Scripts/.local/scripts/set_bar Executable file
View File

@@ -0,0 +1,64 @@
#!/bin/bash
delimiter=' | '
timedate() {
echo $(date +'%a %F %R')
}
battery() {
capacity=$(cat /sys/class/power_supply/BAT0/capacity) || break
status=$(cat /sys/class/power_supply/BAT0/status)
if [[ $status == "Charging" ]]
then
status=""
else
if [[ $capacity -ge 75 ]]
then
status=""
elif [[ $capacity -ge 50 ]]
then
status=""
elif [[ $capacity -ge 25 ]]
then
status=""
elif [[ $capacity -ge 10 ]]
then
status=""
else
status=""
fi
fi
echo "$status $capacity%"
}
volume() {
sinks="$(pactl list sinks)"
vol="$(echo "$sinks" | grep '[0-9]\+%' | sed "s,.* \([0-9]\+\)%.*,\1,;1q")"
if [[ $vol -gt 50 ]]
then
icon=""
elif [[ $vol -gt 10 ]]
then
icon=""
else
icon=""
fi
echo "$icon $vol%"
}
ram() {
echo $(vmstat -s -a -S M | grep 'used memory' | grep -Po "\d+")M
}
disk() {
echo $(df | grep /dev/sda2 | awk '{print $5}')
}
while true; do
xsetroot -name "Meme level at $(disk) $delimiter $(ram) $delimiter $(volume) $delimiter $(battery) $delimiter $(timedate)"
sleep 30s;
done

3
Scripts/.local/scripts/suctl Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
systemctl --user $@