diff options
author | Joshua Yun <joshua@joshuayun.com> | 2025-03-12 13:50:27 -0500 |
---|---|---|
committer | Joshua Yun <joshua@joshuayun.com> | 2025-03-12 13:50:27 -0500 |
commit | 226491c2e86947440692ce0305b9b9e97399608d (patch) | |
tree | b4ed5994571ca739cb166bb0636c2f8c7a3428d0 /config.def.h | |
parent | 538dbb6053db4b69d2bc82a6fc95f21e6d257172 (diff) | |
download | dwl-226491c2e86947440692ce0305b9b9e97399608d.tar.gz |
Autostart applets
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 6717978..a9e4e3d 100644 --- a/config.def.h +++ b/config.def.h @@ -18,7 +18,7 @@ static const float fullscreen_bg[] = {0.1f, 0.1f, 0.1f, 1.0f}; /* You ca static uint32_t colors[][3] = { /* fg bg border */ [SchemeNorm] = { 0xbbbbbbff, 0x222222ff, 0x444444ff }, - [SchemeSel] = { 0xeeeeeeff, 0x005577ff, 0x005577ff }, + [SchemeSel] = { 0xeeeeeeff, 0x396847ff, 0x396847ff }, [SchemeUrg] = { 0, 0, 0x770000ff }, }; @@ -32,6 +32,8 @@ static int log_level = WLR_ERROR; static const char *const autostart[] = { "dbus-update-activation-environment", "WAYLAND_DISPLAY", "XDG_CURRENT_DESKTOP", "XDG_SESSION_DESKTOP", "XDG_SESSION_TYPE", NULL, "systemctl", "--user" , "import-environment", "WAYLAND_DISPLAY", "XDG_CURRENT_DESKTOP", "XDG_SESSION_DESKTOP", "XDG_SESSION_TYPE", NULL, + "nm-applet", NULL, + "blueman-applet", NULL, NULL /* terminate */ }; |