aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-11-11 18:06:50 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-11-11 18:06:50 -0500
commit0c8491f7d0c735299a25f0ab929f5d1e0866b929 (patch)
tree69fc808ce6b8ceda33e8fadcf7cbbc10b892ca00 /sway/config.c
parentWire up output frame loop (diff)
downloadsway-0c8491f7d0c735299a25f0ab929f5d1e0866b929.tar.gz
sway-0c8491f7d0c735299a25f0ab929f5d1e0866b929.tar.zst
sway-0c8491f7d0c735299a25f0ab929f5d1e0866b929.zip
Initial (awful) pass on xdg shell support
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 78ab8f3b..aa40c49a 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -932,6 +932,7 @@ void merge_output_config(struct output_config *dst, struct output_config *src) {
932 932
933static void invoke_swaybar(struct bar_config *bar) { 933static void invoke_swaybar(struct bar_config *bar) {
934 return; // TODO WLR 934 return; // TODO WLR
935 sway_log(L_DEBUG, "Invoking swaybar for bar id '%s'", bar->id);
935 // Pipe to communicate errors 936 // Pipe to communicate errors
936 int filedes[2]; 937 int filedes[2];
937 if (pipe(filedes) == -1) { 938 if (pipe(filedes) == -1) {
@@ -1059,7 +1060,6 @@ void load_swaybars() {
1059 if (bar->pid != 0) { 1060 if (bar->pid != 0) {
1060 terminate_swaybar(bar->pid); 1061 terminate_swaybar(bar->pid);
1061 } 1062 }
1062 sway_log(L_DEBUG, "Invoking swaybar for bar id '%s'", bar->id);
1063 invoke_swaybar(bar); 1063 invoke_swaybar(bar);
1064 } 1064 }
1065 1065