Browse Source

feat: remove blocks.h from .gitignore

master
Tovi Jaeschke-Rogers 5 days ago
parent
commit
8b9fc55a81
2 changed files with 23 additions and 1 deletions
  1. +1
    -1
      .gitignore
  2. +22
    -0
      blocks.h

+ 1
- 1
.gitignore View File

@ -1,5 +1,5 @@
# Custom blocks file
blocks.h
# blocks.h
# Prerequisites
*.d


+ 22
- 0
blocks.h View File

@ -0,0 +1,22 @@
//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*/
{ "Docker: ", "status-docker", 60, 0 },
{ "Pkgs: ", "status-pkgs", 1800, 0 },
{ "Disk: ", "status-disk-usage", 30, 0 },
{ "Mem: ", "status-memory", 30, 0 },
{ "Net: ", "status-internet", 60, 0 },
{ "", "status-temperature", 30, 0 },
{ "", "status-battery", 60, 0 },
{ "", "status-datetime", 60, 0 },
};
//sets delimiter between status commands. NULL character ('\0') means no delimiter.
static char delim[] = " | ";
static unsigned int delimLen = 5;

Loading…
Cancel
Save