config: add <core><promptCommand>

...to enable configuration of the action prompt command.

Also set some better defaults for labnag.

The new default command is:

    labnag \
        --message '%m' \
        --button-dismiss '%n' \
        --button-dismiss '%y' \
        --background '%b' \
        --text '%t' \
        --border '%t' \
        --border-bottom '%t' \
        --button-background '%b' \
        --button-text '%t' \
        --border-bottom-size 1 \
        --button-border-size 3 \
        --timeout 0

...where the conversion specifiers are defined as follows:

    %m: the `<prompt>` message option
    %n: _("No")
    %y: _("Yes")
    %b: osd.bg.color
    %t: osd.label.text.color

This config options also enables the use of a different dialog client, for
example like this:

    <core>
      <promptCommand>zenity --question --text="%m"</promptCommand>
    </core>
This commit is contained in:
Johan Malm 2025-09-22 18:32:42 +01:00 committed by Johan Malm
parent 7028e65154
commit 5765586636
10 changed files with 193 additions and 6 deletions

View file

@ -74,6 +74,8 @@ struct rcxml {
enum lab_placement_policy placement_policy;
bool xwayland_persistence;
bool primary_selection;
char *prompt_command;
int placement_cascade_offset_x;
int placement_cascade_offset_y;