mirror of
https://github.com/swaywm/sway.git
synced 2026-04-21 06:46:22 -04:00
swaybar: handle hotplugging
Don't kill and respawn swaybars on hotplug.
This commit is contained in:
parent
fa4308c5ab
commit
82f1393cbb
6 changed files with 81 additions and 66 deletions
|
|
@ -165,7 +165,7 @@ cleanup:
|
|||
return NULL;
|
||||
}
|
||||
|
||||
void invoke_swaybar(struct bar_config *bar) {
|
||||
static void invoke_swaybar(struct bar_config *bar) {
|
||||
// Pipe to communicate errors
|
||||
int filedes[2];
|
||||
if (pipe(filedes) == -1) {
|
||||
|
|
@ -219,27 +219,13 @@ void invoke_swaybar(struct bar_config *bar) {
|
|||
close(filedes[1]);
|
||||
}
|
||||
|
||||
void load_swaybars() {
|
||||
void load_swaybars(void) {
|
||||
for (int i = 0; i < config->bars->length; ++i) {
|
||||
struct bar_config *bar = config->bars->items[i];
|
||||
bool apply = false;
|
||||
if (bar->outputs) {
|
||||
for (int j = 0; j < bar->outputs->length; ++j) {
|
||||
char *o = bar->outputs->items[j];
|
||||
if (!strcmp(o, "*") || output_by_name(o)) {
|
||||
apply = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
apply = true;
|
||||
}
|
||||
if (apply) {
|
||||
if (bar->pid != 0) {
|
||||
terminate_swaybar(bar->pid);
|
||||
}
|
||||
wlr_log(WLR_DEBUG, "Invoking swaybar for bar id '%s'", bar->id);
|
||||
invoke_swaybar(bar);
|
||||
if (bar->pid != 0) {
|
||||
terminate_swaybar(bar->pid);
|
||||
}
|
||||
wlr_log(WLR_DEBUG, "Invoking swaybar for bar id '%s'", bar->id);
|
||||
invoke_swaybar(bar);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue