mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 04:25:42 +02:00
Introduce a new icon particle. It follows the icon spec (https://specifications.freedesktop.org/icon-theme-spec/latest/index.html). Rendering logic is taken from fuzzel (using nanosvg + libpng), while loading logic is taken from sway. Standard usage is with `use-tag = false` which expands the provided string template and then loads the string as the icon name. There are settings to manually override the base paths, themes, etc. The second usage which is required for tray support is a special icon tag that transfers raw pixmaps. With `use-tag = true` it first expands the string, and then uses that output to find an icon pixmap tag. To reduce memory usage, themes are reference counted so they can be passed down the configuration stack without having to load them in multiple times. For programmability, a fallback particle can be specified if no icon/tag is found `fallback: ...`. And the new icon pixmap tag can be existence checked in map conditions using `+{tag_name}`. Future work to be done in follow up diffs: 1. Icon caching. Currently performs an icon lookup on each instantiation & a render on each refresh. 2. Theme caching. Changing theme directories results in a new "theme collection" being created resulting in the possibility of duplicated theme loading.
212 lines
6.8 KiB
Meson
212 lines
6.8 KiB
Meson
project('yambar', 'c',
|
|
version: '1.11.0',
|
|
license: 'MIT',
|
|
meson_version: '>=0.59.0',
|
|
default_options: ['c_std=c18',
|
|
'warning_level=1',
|
|
'werror=true',
|
|
'b_ndebug=if-release'])
|
|
|
|
is_debug_build = get_option('buildtype').startswith('debug')
|
|
plugs_as_libs = get_option('core-plugins-as-shared-libraries')
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
if cc.has_function('memfd_create')
|
|
add_project_arguments('-DMEMFD_CREATE', language: 'c')
|
|
endif
|
|
|
|
# Compute the relative path used by compiler invocations.
|
|
source_root = meson.current_source_dir().split('/')
|
|
build_root = meson.global_build_root().split('/')
|
|
relative_dir_parts = []
|
|
i = 0
|
|
in_prefix = true
|
|
foreach p : build_root
|
|
if i >= source_root.length() or not in_prefix or p != source_root[i]
|
|
in_prefix = false
|
|
relative_dir_parts += '..'
|
|
endif
|
|
i += 1
|
|
endforeach
|
|
i = 0
|
|
in_prefix = true
|
|
foreach p : source_root
|
|
if i >= build_root.length() or not in_prefix or build_root[i] != p
|
|
in_prefix = false
|
|
relative_dir_parts += p
|
|
endif
|
|
i += 1
|
|
endforeach
|
|
relative_dir = join_paths(relative_dir_parts) + '/'
|
|
|
|
if cc.has_argument('-fmacro-prefix-map=/foo=')
|
|
add_project_arguments('-fmacro-prefix-map=@0@='.format(relative_dir), language: 'c')
|
|
endif
|
|
|
|
# Common dependencies
|
|
dl = cc.find_library('dl')
|
|
m = cc.find_library('m')
|
|
threads = [dependency('threads'), cc.find_library('stdthreads', required: false)]
|
|
libepoll = dependency('epoll-shim', required: false)
|
|
libinotify = dependency('libinotify', required: false)
|
|
pixman = dependency('pixman-1')
|
|
yaml = dependency('yaml-0.1')
|
|
system_nanosvg = cc.find_library('nanosvg', required: get_option('system-nanosvg'))
|
|
system_nanosvgrast = cc.find_library('nanosvgrast', required: get_option('system-nanosvg'))
|
|
if system_nanosvg.found() and system_nanosvgrast.found()
|
|
nanosvg = declare_dependency(
|
|
dependencies: [system_nanosvg, system_nanosvgrast]
|
|
)
|
|
else
|
|
nanosvg = declare_dependency(
|
|
sources: ['nanosvg.c', '3rd-party/nanosvg/src/nanosvg.h',
|
|
'nanosvgrast.c', '3rd-party/nanosvg/src/nanosvgrast.h'],
|
|
include_directories: '.',
|
|
dependencies: m)
|
|
endif
|
|
png = dependency('libpng')
|
|
|
|
# X11/XCB dependencies
|
|
xcb_aux = dependency('xcb-aux', required: get_option('backend-x11'))
|
|
xcb_cursor = dependency('xcb-cursor', required: get_option('backend-x11'))
|
|
xcb_event = dependency('xcb-event', required: get_option('backend-x11'))
|
|
xcb_ewmh = dependency('xcb-ewmh', required: get_option('backend-x11'))
|
|
xcb_randr = dependency('xcb-randr', required: get_option('backend-x11'))
|
|
xcb_render = dependency('xcb-render', required: get_option('backend-x11'))
|
|
xcb_errors = dependency('xcb-errors', required: false)
|
|
backend_x11 = xcb_aux.found() and xcb_cursor.found() and xcb_event.found() and \
|
|
xcb_ewmh.found() and xcb_randr.found() and xcb_render.found()
|
|
|
|
# Wayland dependencies
|
|
wayland_client = dependency('wayland-client', required: get_option('backend-wayland'))
|
|
wayland_cursor = dependency('wayland-cursor', required: get_option('backend-wayland'))
|
|
backend_wayland = wayland_client.found() and wayland_cursor.found()
|
|
|
|
# "My" dependencies, fallback to subproject
|
|
tllist = dependency('tllist', version: '>=1.0.1', fallback: 'tllist')
|
|
fcft = dependency('fcft', version: ['>=3.0.0', '<4.0.0'], fallback: 'fcft')
|
|
|
|
add_project_arguments(
|
|
['-D_GNU_SOURCE'] +
|
|
(is_debug_build ? ['-D_DEBUG'] : []) +
|
|
(backend_x11 ? ['-DENABLE_X11'] : []) +
|
|
(backend_wayland ? ['-DENABLE_WAYLAND'] : []) +
|
|
(plugs_as_libs ? ['-DCORE_PLUGINS_AS_SHARED_LIBRARIES'] : []),
|
|
language: 'c',
|
|
)
|
|
|
|
if backend_x11
|
|
xcb_stuff_lib = static_library(
|
|
'xcb-stuff', 'xcb.c', 'xcb.h',
|
|
dependencies: [xcb_aux, xcb_cursor, xcb_event, xcb_ewmh, xcb_randr,
|
|
xcb_render, xcb_errors],
|
|
c_args: xcb_errors.found() ? '-DHAVE_XCB_ERRORS' : [],
|
|
pic: plugs_as_libs)
|
|
|
|
xcb_stuff = declare_dependency(
|
|
link_with: xcb_stuff_lib,
|
|
dependencies: [xcb_aux, xcb_cursor, xcb_event, xcb_ewmh, xcb_randr,
|
|
xcb_render, xcb_errors],
|
|
)
|
|
install_headers('xcb.h', subdir: 'yambar')
|
|
endif
|
|
|
|
subdir('completions')
|
|
subdir('bar')
|
|
subdir('decorations')
|
|
subdir('particles')
|
|
subdir('modules')
|
|
subdir('doc')
|
|
|
|
env = find_program('env', native: true)
|
|
generate_version_sh = files('generate-version.sh')
|
|
version = custom_target(
|
|
'generate_version',
|
|
build_always_stale: true,
|
|
output: 'version.h',
|
|
command: [env, 'LC_ALL=C', generate_version_sh, meson.project_version(), '@CURRENT_SOURCE_DIR@', '@OUTPUT@'])
|
|
|
|
yambar = executable(
|
|
'yambar',
|
|
'char32.c', 'char32.h',
|
|
'color.h',
|
|
'config-verify.c', 'config-verify.h',
|
|
'config.c', 'config.h',
|
|
'decoration.h',
|
|
'font-shaping.h',
|
|
'log.c', 'log.h',
|
|
'main.c',
|
|
'module.c', 'module.h',
|
|
'particle.c', 'particle.h',
|
|
'plugin.c', 'plugin.h',
|
|
'tag.c', 'tag.h',
|
|
'yml.c', 'yml.h',
|
|
'icon.c', 'icon.h',
|
|
'png.c', 'png-yambar.h',
|
|
'stringop.c', 'stringop.h',
|
|
version,
|
|
dependencies: [bar, libepoll, libinotify, pixman, yaml, nanosvg, png, threads, dl, tllist, fcft] +
|
|
decorations + particles + modules,
|
|
build_rpath: '$ORIGIN/modules:$ORIGIN/decorations:$ORIGIN/particles',
|
|
export_dynamic: true,
|
|
install: true,
|
|
install_rpath: '$ORIGIN/../' + get_option('libdir') + '/yambar')
|
|
|
|
install_data(
|
|
'LICENSE', 'README.md',
|
|
install_dir: join_paths(get_option('datadir'), 'doc', 'yambar'))
|
|
install_data('yambar.desktop', install_dir: join_paths(get_option('datadir'), 'applications'))
|
|
|
|
subdir('test')
|
|
|
|
install_headers(
|
|
'color.h',
|
|
'config.h',
|
|
'config-verify.h',
|
|
'decoration.h',
|
|
'log.h',
|
|
'module.h',
|
|
'particle.h',
|
|
'stride.h',
|
|
'tag.h',
|
|
'yml.h',
|
|
subdir: 'yambar')
|
|
|
|
summary(
|
|
{
|
|
'Build type': get_option('buildtype'),
|
|
'XCB backend': backend_x11,
|
|
'Wayland backend': backend_wayland,
|
|
'Core modules as plugins': plugs_as_libs,
|
|
},
|
|
bool_yn: true
|
|
)
|
|
|
|
summary(
|
|
{
|
|
'ALSA': plugin_alsa_enabled,
|
|
'Backlight': plugin_backlight_enabled,
|
|
'Battery': plugin_battery_enabled,
|
|
'Clock': plugin_clock_enabled,
|
|
'CPU monitoring': plugin_cpu_enabled,
|
|
'Disk I/O monitoring': plugin_disk_io_enabled,
|
|
'dwl (dwm for Wayland)': plugin_dwl_enabled,
|
|
'Foreign toplevel (window tracking for Wayland)': plugin_foreign_toplevel_enabled,
|
|
'Memory monitoring': plugin_mem_enabled,
|
|
'Music Player Daemon (MPD)': plugin_mpd_enabled,
|
|
'i3+Sway': plugin_i3_enabled,
|
|
'Label': plugin_label_enabled,
|
|
'Network monitoring': plugin_network_enabled,
|
|
'Pipewire': plugin_pipewire_enabled,
|
|
'PulseAudio': plugin_pulse_enabled,
|
|
'Removables monitoring': plugin_removables_enabled,
|
|
'River': plugin_river_enabled,
|
|
'Script': plugin_script_enabled,
|
|
'Sway XKB keyboard': plugin_sway_xkb_enabled,
|
|
'XKB keyboard (for X11)': plugin_xkb_enabled,
|
|
'XWindow (window tracking for X11)': plugin_xwindow_enabled,
|
|
},
|
|
section: 'Optional modules',
|
|
bool_yn: true
|
|
)
|