diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 01:09:49 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 01:09:49 +0200 |
commit | 0438660003a5f3cbdb2dd8a42961e0c8629f80b9 (patch) | |
tree | e2829960bbb7f2cc5ef55d0c48ea3c781f1c4b79 /.config/waybar/custom | |
parent | dd397e6a4a9368117e2689904bb6bb8586d598e9 (diff) |
waybar: Add waybar configuration
Diffstat (limited to '.config/waybar/custom')
-rwxr-xr-x | .config/waybar/custom/disk | 3 | ||||
-rwxr-xr-x | .config/waybar/custom/keyboard | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.config/waybar/custom/disk b/.config/waybar/custom/disk new file mode 100755 index 0000000..143e41c --- /dev/null +++ b/.config/waybar/custom/disk @@ -0,0 +1,3 @@ +#!/bin/sh + +df -BG | awk '$6 == "/" { print $3 }' diff --git a/.config/waybar/custom/keyboard b/.config/waybar/custom/keyboard new file mode 100755 index 0000000..eba7e61 --- /dev/null +++ b/.config/waybar/custom/keyboard @@ -0,0 +1,11 @@ +#!/bin/sh + +hyprctl devices | sed -En ' +/^\tKeyboard at/ { + :loop + n + /^\t\t\trules: /! b loop + s/.* l "([^"]+)", v "([^"]+)".*/\1(\2)/p + q +} +' |