aboutsummaryrefslogtreecommitdiff
path: root/blocks.def.h
diff options
context:
space:
mode:
authoraleksav013 <aleksav013@gmail.com>2021-05-18 09:59:51 +0200
committerAleksa Vučković <aleksav013@gmail.com>2022-01-08 10:47:05 +0100
commit0326cef548a53e413788e0c46e000e31802f783b (patch)
tree672f816c2bd41521a6fd378888d30d8e925775ef /blocks.def.h
parenta933ce0d6109524b393feb3e7156cbf0de88b42c (diff)
Making changes
Diffstat (limited to 'blocks.def.h')
-rw-r--r--blocks.def.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/blocks.def.h b/blocks.def.h
index 9c22d68..7db515e 100644
--- a/blocks.def.h
+++ b/blocks.def.h
@@ -1,9 +1,13 @@
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
- {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
-
- {"", "date '+%b %d (%a) %I:%M%p'", 5, 0},
+ {"", "network", 1, 0},
+ {"Cpu: ", "top -bn 1 | sed '3q;d' | awk {'print $2i\"%\"'}", 5, 0},
+ {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 5, 0},
+ {"", "battery", 60, 0},
+ {"Brightness:", "echo $(xbacklight -get)%", 0, 6},
+ {"Volume:", "pamixer --get-volume-human", 0, 10},
+ {"", "date '+%d.%m.%Y. %H:%M'", 60, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.