diff options
author | Daniel Jones <admin@danieljon.es> | 2019-12-12 00:23:42 +1030 |
---|---|---|
committer | Daniel Jones <admin@danieljon.es> | 2019-12-12 00:26:22 +1030 |
commit | 797fd1710f2f1ea082bf111f2c930c7c36cb59b4 (patch) | |
tree | 64d55056850ae58418f4ee3a757eb99ab74e2b51 /config.h | |
parent | 7ed46f531ccf25db7edb980cfb0910d6a63f38b9 (diff) | |
download | binstatus-797fd1710f2f1ea082bf111f2c930c7c36cb59b4.tar.gz binstatus-797fd1710f2f1ea082bf111f2c930c7c36cb59b4.zip |
added meridem flag
you can now toggle whether to show the meridem tag on each clock you configure
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,7 @@ enum flag NORMALTIME = 1<<1, BINARYTIME = 1<<2, MILITARYTIME = 1<<3, + SHOWMERIDIEM = 1<<4, }; struct component @@ -37,7 +38,7 @@ struct component */ static const struct component components[] ={ /* function flag */ - {currenttime, NORMALTIME}, + {currenttime, NORMALTIME|SHOWMERIDIEM}, {battery, 0}, {charging, 0}, }; |