From 2504958328cec5a3d376d204aeaf27bea8e8807d Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Mon, 25 Apr 2022 15:45:31 +0200 Subject: [PATCH] Add picom to auto start array --- config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index f2e4517..2cacce1 100644 --- a/config.h +++ b/config.h @@ -30,9 +30,12 @@ static const char *colors[][3] = { }; // Autostart programs static const char *const autostart[] = { + // Start my build of slstatus "slstatus", NULL, + // Keyboard layouts switch (requires setxkbmap) "setxkbmap", "-model", "pc101", "-layout", "us,ar", "-variant", ",,", "-option", "grp:win_space_toggle", NULL, - "xcompmgr", NULL, + "picom", NULL, // Start compositor , for transparency + "nitrogen --restore", NULL, // Restores the wallpaper NULL /* terminate */ };