diff options
author | Calvin Lee <[email protected]> | 2017-06-13 12:42:11 -0700 |
---|---|---|
committer | Calvin Lee <[email protected]> | 2017-06-13 12:42:11 -0700 |
commit | 33fdae2001f489c40667797ce3bc50eedb352ee0 (patch) | |
tree | 03b220c43ada1864fc1e44082c614de3b073a6ca /swaybar/bar.c | |
parent | 0a71aa6e97a96ffbd34fe18ec42b27d8fe5952e8 (diff) |
Remove Xembed Support
Xembed support is premature in sway and should be postponed. This commit
only removes swaybar starting xembedsniproxy, if users would like, they
can still start xembedsniproxy manually, however there will be no
official support.
Diffstat (limited to 'swaybar/bar.c')
-rw-r--r-- | swaybar/bar.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 5d480b63..5e87eac9 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -27,9 +27,6 @@ static void bar_init(struct bar *bar) { bar->config = init_config(); bar->status = init_status_line(); bar->outputs = create_list(); -#ifdef ENABLE_TRAY - bar->xembed_pid = 0; -#endif } static void spawn_status_cmd_proc(struct bar *bar) { @@ -252,8 +249,6 @@ void bar_run(struct bar *bar) { event_loop_poll(); #ifdef ENABLE_TRAY - tray_upkeep(bar); - dispatch_dbus(); #endif } |