summaryrefslogtreecommitdiffstats
path: root/swaybar/main.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-11-29 12:03:13 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-11-29 12:03:13 -0500
commite59cffcea2a881f16de3716c6b24d93aceb8c79a (patch)
treea09447b6eb903573edb598c7b80ac7c3c492dee5 /swaybar/main.c
parentAdd swaybar basics (diff)
downloadsway-e59cffcea2a881f16de3716c6b24d93aceb8c79a.tar.gz
sway-e59cffcea2a881f16de3716c6b24d93aceb8c79a.tar.zst
sway-e59cffcea2a881f16de3716c6b24d93aceb8c79a.zip
Support desktop shell panels in compositor
Diffstat (limited to 'swaybar/main.c')
-rw-r--r--swaybar/main.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index dfdda9ca..b25d8252 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -25,34 +25,34 @@ struct colors {
25struct registry *registry; 25struct registry *registry;
26struct window *window; 26struct window *window;
27struct colors colors = { 27struct colors colors = {
28 .background = 0x00000000, 28 .background = 0x000000FF,
29 .statusline = 0xffffffff, 29 .statusline = 0xFFFFFFFF,
30 .seperator = 0x666666ff, 30 .seperator = 0x666666FF,
31 31
32 .focused_workspace = { 32 .focused_workspace = {
33 .border = 0x4c7899ff, 33 .border = 0x4C7899FF,
34 .background = 0x285577ff, 34 .background = 0x285577FF,
35 .text = 0xffffffff 35 .text = 0xFFFFFFFF
36 }, 36 },
37 .active_workspace = { 37 .active_workspace = {
38 .border = 0x333333ff, 38 .border = 0x333333FF,
39 .background = 0x5f676aff, 39 .background = 0x5F676AFF,
40 .text = 0xffffffff 40 .text = 0xFFFFFFFF
41 }, 41 },
42 .inactive_workspace = { 42 .inactive_workspace = {
43 .border = 0x333333ff, 43 .border = 0x333333FF,
44 .background = 0x222222ff, 44 .background = 0x222222FF,
45 .text = 0x888888ff 45 .text = 0x888888FF
46 }, 46 },
47 .urgent_workspace = { 47 .urgent_workspace = {
48 .border = 0x2f343aff, 48 .border = 0x2F343AFF,
49 .background = 0x900000ff, 49 .background = 0x900000FF,
50 .text = 0xffffffff 50 .text = 0xFFFFFFFF
51 }, 51 },
52 .binding_mode = { 52 .binding_mode = {
53 .border = 0x2f343aff, 53 .border = 0x2F343AFF,
54 .background = 0x900000ff, 54 .background = 0x900000FF,
55 .text = 0xffffffff 55 .text = 0xFFFFFFFF
56 }, 56 },
57}; 57};
58 58