This commit is contained in:
The-Repo-Club 2023-09-30 16:37:54 +01:00
parent 1ac6862320
commit 3db60c1a9d
No known key found for this signature in database
GPG Key ID: E30EC2FBFB05C44F
7 changed files with 65 additions and 63 deletions

View File

@ -1 +1,3 @@
/home/repo
/home/repo/Downloads/GiveMeDaBadge
/home/repo

Binary file not shown.

View File

@ -5,5 +5,5 @@ function chris
end
function sshme
ssh opc@129.151.81.219
ssh ubuntu@129.151.81.74
end

View File

@ -1,2 +1,2 @@
LastUsed=1695238476
LastUsed=1696088482
Message='Fully Updated'

View File

@ -1,14 +1,15 @@
#!/usr/bin/env bash
network() {
drive=enp0s20f0u2
# load colors
. $HOME/.config/flexiflow_bar/bar_themes/minimal-mistakes
R1=$(cat /sys/class/net/wlan0/statistics/rx_bytes)
T1=$(cat /sys/class/net/wlan0/statistics/tx_bytes)
R1=$(cat /sys/class/net/"${drive}"/statistics/rx_bytes)
T1=$(cat /sys/class/net/"${drive}"/statistics/tx_bytes)
sleep 1
R2=$(cat /sys/class/net/wlan0/statistics/rx_bytes)
T2=$(cat /sys/class/net/wlan0/statistics/tx_bytes)
R2=$(cat /sys/class/net/"${drive}"/statistics/rx_bytes)
T2=$(cat /sys/class/net/"${drive}"/statistics/tx_bytes)
TBPS=$(expr $T2 - $T1)
RBPS=$(expr $R2 - $R1)
TKBPS=$(echo "$TBPS / 1024" | bc)
@ -29,13 +30,11 @@ network() {
TKBPS=" $TKBPS kb"
fi
case "$(cat /sys/class/net/wl*/operstate 2>/dev/null)" in
case "$(cat /sys/class/net/"${drive}"/operstate 2>/dev/null)" in
up) printf " %s %s \n" "^c$Foreground^^b$Purple^$icon_up" "^c$Foreground^^b$Purple_Bright^ Connected" ;;
down) printf " %s %s \n" "^c$Foreground^^b$Purple^$icon_down" "^c$Foreground^^b$Purple_Bright^ Disconnected" ;;
esac
# printf " %s %s %s %s \n" "^c$Foreground^^b$Purple^$icon_down" "^c$Foreground^^b$Purple_Bright^ ${RKBPS^^}" "^c$Foreground^^b$Purple^$icon_up" "^c$Foreground^^b$Purple_Bright^ ${TKBPS^^}"
}
network

View File

@ -9,13 +9,14 @@ get_updates() {
timestamp=$(date +%s)
icon=""
if [ "$updates" -ge "0" ]; then
if [ "$updates" -eq 0 ]; then
updatecount="Fully Updated"
elif [ "$updates" -ge "1" ]; then
elif [ "$updates" -eq 1 ]; then
updatecount="$updates Update"
else
updatecount="$updates Updates"
fi
[[ -f $configFile ]] && . $configFile
if [[ -z "$LastUsed" ]] || [[ -z "$Message" ]]; then
printf "%s %s \n" "^c$Foreground^^b$Purple^ $icon " "^c$Foreground^^b$Purple_Bright^ $updatecount"

View File

@ -50,8 +50,8 @@ keys = [Key(*key) for key in [ # type: ignore
([mod], "Tab", lazy.next_layout()),
# qtile stuff
([mod, "control"], "b", lazy.hide_show_bar()),
([mod, "control"], "s", lazy.shutdown()),
([mod, "shift"], "b", lazy.hide_show_bar()),
([mod, "shift"], "s", lazy.shutdown()),
([mod, "shift"], "r", restart),
([mod, "shift"], "e", lazy.spawn(cfg.power)),
@ -67,10 +67,10 @@ keys = [Key(*key) for key in [ # type: ignore
([mod], "y", lazy.spawn(cfg.youtube)),
# web browser
([mod], "b", lazy.spawn(cfg.browser)),
([mod, "control"], "b", lazy.spawn(cfg.browser)),
# code editor
([mod], "c", lazy.spawn(cfg.editor)),
([mod, "control"], "e", lazy.spawn(cfg.editor)),
# backlight
([], "XF86MonBrightnessDown", lazy.spawn("brightnessctl set 5%-")),