forked from external/yambar
Rename project: f00bar -> yambar
This commit is contained in:
parent
9b9344877f
commit
9dbbc480e4
23 changed files with 87 additions and 87 deletions
|
@ -379,7 +379,7 @@ bar_new(const struct bar_config *config)
|
|||
backend_data = bar_backend_xcb_new();
|
||||
backend_iface = &xcb_backend_iface;
|
||||
#else
|
||||
LOG_ERR("f00bar was compiled without the XCB backend");
|
||||
LOG_ERR("yambar was compiled without the XCB backend");
|
||||
return NULL;
|
||||
#endif
|
||||
break;
|
||||
|
@ -389,7 +389,7 @@ bar_new(const struct bar_config *config)
|
|||
backend_data = bar_backend_wayland_new();
|
||||
backend_iface = &wayland_backend_iface;
|
||||
#else
|
||||
LOG_ERR("f00bar was compiled without the Wayland backend");
|
||||
LOG_ERR("yambar was compiled without the Wayland backend");
|
||||
return NULL;
|
||||
#endif
|
||||
break;
|
||||
|
|
|
@ -45,4 +45,4 @@ bar = declare_dependency(
|
|||
sources: ['bar.c', 'bar.h', 'private.h', 'backend.h'],
|
||||
dependencies: bar_backends + [threads])
|
||||
|
||||
install_headers('bar.h', subdir: 'f00bar/bar')
|
||||
install_headers('bar.h', subdir: 'yambar/bar')
|
||||
|
|
|
@ -467,7 +467,7 @@ get_buffer(struct wayland_backend *backend)
|
|||
pixman_image_t *pix = NULL;
|
||||
|
||||
/* Backing memory for SHM */
|
||||
pool_fd = memfd_create("f00bar-wayland-shm-buffer-pool", MFD_CLOEXEC);
|
||||
pool_fd = memfd_create("yambar-wayland-shm-buffer-pool", MFD_CLOEXEC);
|
||||
if (pool_fd == -1) {
|
||||
LOG_ERRNO("failed to create SHM backing memory file");
|
||||
goto err;
|
||||
|
@ -643,7 +643,7 @@ setup(struct bar *_bar)
|
|||
|
||||
backend->layer_surface = zwlr_layer_shell_v1_get_layer_surface(
|
||||
backend->layer_shell, backend->surface, backend->monitor->output,
|
||||
ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM, "f00bar");
|
||||
ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM, "yambar");
|
||||
if (backend->layer_surface == NULL) {
|
||||
LOG_ERR("failed to create layer shell surface");
|
||||
return false;
|
||||
|
|
|
@ -167,7 +167,7 @@ setup(struct bar *_bar)
|
|||
backend->colormap}
|
||||
);
|
||||
|
||||
const char *title = "f00bar";
|
||||
const char *title = "yambar";
|
||||
xcb_change_property(
|
||||
backend->conn,
|
||||
XCB_PROP_MODE_REPLACE, backend->win,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue