From 20abc74f4864bd6114fbccf8f78b5259bee85d92 Mon Sep 17 00:00:00 2001 From: Yuri Zamyatin Date: Sat, 25 Oct 2025 14:18:56 +0000 Subject: [PATCH] i3blocks --- arch-user/bin/i3blocks/bandwidth.sh | 101 ++++++++++++++++++++++++++++ arch-user/bin/i3blocks/battery.sh | 4 +- arch-user/bin/i3blocks/weather.sh | 3 - 3 files changed, 104 insertions(+), 4 deletions(-) create mode 100755 arch-user/bin/i3blocks/bandwidth.sh delete mode 100755 arch-user/bin/i3blocks/weather.sh diff --git a/arch-user/bin/i3blocks/bandwidth.sh b/arch-user/bin/i3blocks/bandwidth.sh new file mode 100755 index 0000000..77a9e53 --- /dev/null +++ b/arch-user/bin/i3blocks/bandwidth.sh @@ -0,0 +1,101 @@ +#!/usr/bin/env bash +# https://github.com/vivien/i3blocks-contrib/blob/master/bandwidth/bandwidth +# Copyright (C) 2012 Stefan Breunig +# Copyright (C) 2014 kaueraal +# Copyright (C) 2015 Thiago Perrotta + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Get custom IN and OUT labels if provided by command line arguments +INLABEL="🠟 " +OUTLABEL="🠝 " + +# Use the provided interface, otherwise the device used for the default route. +if [[ -z $INTERFACE ]] && [[ -n $BLOCK_INSTANCE ]]; then + INTERFACE=$BLOCK_INSTANCE +elif [[ -z $INTERFACE ]]; then + INTERFACE=$(ip route | awk '/^default/ { print $5 ; exit }') +fi + +# Exit if there is no default route +[[ -z "$INTERFACE" ]] && exit + +# Issue #36 compliant. +if ! [ -e "/sys/class/net/${INTERFACE}/operstate" ] || \ + (! [ "$TREAT_UNKNOWN_AS_UP" = "1" ] && + ! [ "`cat /sys/class/net/${INTERFACE}/operstate`" = "up" ]) +then + echo "$INTERFACE down" + echo "$INTERFACE down" + echo "#FF0000" + exit 0 +fi + +# path to store the old results in +path="/tmp/$(basename $0)-${INTERFACE}" + +# grabbing data for each adapter. +read rx < "/sys/class/net/${INTERFACE}/statistics/rx_bytes" +read tx < "/sys/class/net/${INTERFACE}/statistics/tx_bytes" + +# get time +time="$(date +%s)" + +# write current data if file does not exist. Do not exit, this will cause +# problems if this file is sourced instead of executed as another process. +if ! [[ -f "${path}" ]]; then + echo "${time} ${rx} ${tx}" > "${path}" + chmod 0666 "${path}" +fi + + +# read previous state and update data storage +read old < "${path}" +echo "${time} ${rx} ${tx}" > "${path}" + +# parse old data and calc time passed +old=(${old//;/ }) +time_diff=$(( $time - ${old[0]} )) + +# sanity check: has a positive amount of time passed +[[ "${time_diff}" -gt 0 ]] || exit + +# calc bytes transferred, and their rate in byte/s +rx_diff=$(( $rx - ${old[1]} )) +tx_diff=$(( $tx - ${old[2]} )) +rx_rate=$(( $rx_diff / $time_diff )) +tx_rate=$(( $tx_diff / $time_diff )) + +# shift by 10 bytes to get KiB/s. If the value is larger than +# 1024^2 = 1048576, then display MiB/s instead + +# incoming +echo -n "$INLABEL" +rx_kib=$(( $rx_rate >> 10 )) +if hash bc 2>/dev/null && [[ "$rx_rate" -gt 1048576 ]]; then + printf '%sM' "`echo "scale=1; $rx_kib / 1024" | bc`" +else + echo -n "${rx_kib}K" +fi + +echo -n " " + +# outgoing +echo -n "$OUTLABEL" +tx_kib=$(( $tx_rate >> 10 )) +if hash bc 2>/dev/null && [[ "$tx_rate" -gt 1048576 ]]; then + printf '%sM\n' "`echo "scale=1; $tx_kib / 1024" | bc`" +else + echo "${tx_kib}K" +fi diff --git a/arch-user/bin/i3blocks/battery.sh b/arch-user/bin/i3blocks/battery.sh index 698eb87..dfeb23f 100755 --- a/arch-user/bin/i3blocks/battery.sh +++ b/arch-user/bin/i3blocks/battery.sh @@ -10,5 +10,7 @@ if [ "$stat" = "1" ]; then echo "🔌 $cap% ${w}W" else echo "🔋 $cap% ${w}W" - [ "$cap" -lt "15" ] && exit 33 + if [ "$cap" -lt "15" ]; then + exit 33 + fi fi diff --git a/arch-user/bin/i3blocks/weather.sh b/arch-user/bin/i3blocks/weather.sh deleted file mode 100755 index ebcc333..0000000 --- a/arch-user/bin/i3blocks/weather.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -curl "https://wttr.in/?format=%l;%t%20%p" --silent | sed 's/^\(.\{3\}\)\(.*\);/\1 /' -echo