Dotfiles for different machines on different branches.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
254 B

9 months ago
9 months ago
9 months ago
  1. #!/bin/sh
  2. # inspired by by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
  3. status() { \
  4. echo "$(memory)|$(cpu)|$(disk /)|$(volume)|$(battery BAT0)|$(internet)|$(clock)"
  5. }
  6. while :; do
  7. xsetroot -name "$(status | tr '\n' ' ')"
  8. sleep 1m
  9. done