This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository evisum.
View the commit online.
commit 7caa881270be5be07ed6b50bd5147a63c0a2f29a
Author: Alastair Poole <[email protected]>
AuthorDate: Sat Mar 28 00:02:00 2026 +0000
config: use flags
---
src/bin/evisum_config.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/bin/evisum_config.c b/src/bin/evisum_config.c
index 6af9a46..9a40e39 100644
--- a/src/bin/evisum_config.c
+++ b/src/bin/evisum_config.c
@@ -1,5 +1,6 @@
#include "config.h"
#include "evisum_config.h"
+#include "ui/evisum_ui_process_list.h"
#include <Eina.h>
#include <Ecore_File.h>
#include <Efreet.h>
@@ -177,7 +178,13 @@ _config_init() {
cfg->proc.show_statusbar = 1;
cfg->proc.show_user = 1;
cfg->proc.transparent = 0;
- cfg->proc.fields = 0x0002191a;
+ cfg->proc.fields = (1u << PROC_FIELD_CMD)
+ | (1u << PROC_FIELD_PID)
+ | (1u << PROC_FIELD_THREADS)
+ | (1u << PROC_FIELD_FILES)
+ | (1u << PROC_FIELD_SIZE)
+ | (1u << PROC_FIELD_VIRT)
+ | (1u << PROC_FIELD_CPU_USAGE);
cfg->proc.alpha = 100;
cfg->cpu.visual = strdup("default");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.