sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 35e600eb713befcccaec9a6ff9108a9257c5d9c5
parent 891ec00535c38bec3cfca595e94dec27f1e785d3
Author: Aaron Marcher <me@drkhsh.at>
Date:   Fri, 18 May 2018 11:40:38 +0200

Move scripts into top level page

Diffstat:
Rdwm.suckless.org/status_monitor/scripts/email_notifier_script/index.md -> dwm.suckless.org/status_monitor/email_notifier_script/index.md | 0
Mdwm.suckless.org/status_monitor/index.md | 35+++++++++++++++++++++++++++++++++--
Ddwm.suckless.org/status_monitor/scripts/basic_collection/index.md | 9---------
Ddwm.suckless.org/status_monitor/scripts/simple_monitors/index.md | 46----------------------------------------------
4 files changed, 33 insertions(+), 57 deletions(-)

diff --git a/dwm.suckless.org/status_monitor/scripts/email_notifier_script/index.md b/dwm.suckless.org/status_monitor/email_notifier_script/index.md diff --git a/dwm.suckless.org/status_monitor/index.md b/dwm.suckless.org/status_monitor/index.md @@ -11,6 +11,36 @@ It can be easily set and retrieved using standard Unix tools. xprop -root -notype -f WM_NAME "8u" \ | sed -n -r 's/WM_NAME = \"(.*)\"/\1/p' +Example shell scripts +--------------------- + +Return battery capacity percentage: + + $(echo $(awk '/rem/ { print $3/89000 }' /proc/acpi/battery/BAT0/state| hoc| cut -c3,4)% + +Your battery may be called something different, so check /proc/acpi for its name. Also, change 89000 to whatever the capacity is for your battery. This returns the remaining battery power as a percentage. +hoc comes from plan9port or 9base. + +Depending on your system, you can also use + + cat /sys/class/power_supply/BAT0/capacity + +to get your battery status in percentage. + +Return the amount of ram used, in megabytes: + + $(free -m |awk '/cache:/ { print $3"M" }') + +Return the temperature of the cpu, in degree celcius: + + $(awk '{ print $2 }' /proc/acpi/thermal_zone/THM0/temperature)C + +Return volume: + + amixer get Front | tail -n1 | awk '{ print $5 }' | tr -d [] + +Change “Front” to your audio device + Using shell scripts very well leads to big scripts, which pull in unneeded dependencies. One solution for this is to write everything in C, which is much more efficient. @@ -26,7 +56,7 @@ You can read more [on the project page](https://tools.suckless.org/slstatus/). User submitted versions ----------------------- -Please add your own version of dwmstatus here (keeping the list sorted). +Feel free to add your own status monitors here (keeping the list sorted). * [barM](barM.c) - can display all, time/date, ram usage, output of commands (the New BarMonitor). * [dstat](https://www.umaxx.net/dl) [Screenshot](https://www.umaxx.net/dstat.png) - displays the current network throughput, CPU usage, performance settings, battery status, temperature, volume settings, as well as the current date and time (OpenBSD only, no support for Linux). @@ -35,13 +65,14 @@ Please add your own version of dwmstatus here (keeping the list sorted). * [dwmstat](https://notabug.org/kl3/dwmstat) - small and simple | IP, CPU temperature, system volume, current local time (and more) | config.h | OpenBSD * [go-dwmstatus](https://github.com/oniichaNj/go-dwmstatus) - A Go bar that prints current MPD song, load averages, time/date and battery percentage. * [gods](https://github.com/schachmat/gods) - implemented in Go. prints network speed, cpu, ram, date/time +* [posix scripts](https://notabug.org/kl3/scripts) - basic collection of simple, fully POSIX sh compliant scripts to get various system information * [profil-dwmstatus-1.0.c](profil-dwmstatus-1.0.c) - cpufreq, battery percent and date/time * [suspend-statusbar.c](https://github.com/snobb/dwm-statusbar) - date, loadavg, battery and more. If battery goes below threshold - run suspend command Helper functions ---------------- -If you have simple C functions for gathering system information, please +If you have simple C functions for gathering system information, feel free to add them here (keeping the list sorted). * [ACPI battery status on Linux](new-acpi-battery.c) diff --git a/dwm.suckless.org/status_monitor/scripts/basic_collection/index.md b/dwm.suckless.org/status_monitor/scripts/basic_collection/index.md @@ -1,9 +0,0 @@ -Scripts collection -================== - -Description ------------ - -A basic collection of simple, fully POSIX sh compliant scripts to get various -system information among other useful things can be found at kl3's [scripts](https://notabug.org/kl3/scripts) -repository. Feel free to copy, adapt and/or improve them. diff --git a/dwm.suckless.org/status_monitor/scripts/simple_monitors/index.md b/dwm.suckless.org/status_monitor/scripts/simple_monitors/index.md @@ -1,46 +0,0 @@ -Simple Monitors -=== - -Description ---- - -These are just very simple monitors for the dwm status bar. - -Battery ---- - -Your battery may be called something different, so check /proc/acpi for its name. Also, change 89000 to whatever the capacity is for your battery. -This returns the remaining battery power as a percentage. - - $(echo $(awk '/rem/ { print $3/89000 }' /proc/acpi/battery/BAT0/state| hoc| cut -c3,4)% - -hoc comes from plan9port or 9base. - -Depending on your system, you can also use - - cat /sys/class/power_supply/BAT0/capacity - -to get your battery status in percentage. - -Ram used ---- - -Return the amount of ram used, in megabytes. - - $(free -m |awk '/cache:/ { print $3"M" }') - -Temperature ---- - -Returns the temperature of the cpu, in celcius. - - $(awk '{ print $2 }' /proc/acpi/thermal_zone/THM0/temperature)C - -Volume ---- - - amixer get Front | tail -n1 | awk '{ print $5 }' | tr -d [] - -Change "Front" to your audio device - -I told you they were simple.