wob: add module
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
7a461c70ed
commit
ebba24a6fe
|
@ -1392,6 +1392,15 @@ in {
|
||||||
This module replaces 'programs.rtx', which has been removed.
|
This module replaces 'programs.rtx', which has been removed.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2024-01-27T22:53:00+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'services.wob'.
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -364,6 +364,7 @@ let
|
||||||
./services/window-managers/spectrwm.nix
|
./services/window-managers/spectrwm.nix
|
||||||
./services/window-managers/xmonad.nix
|
./services/window-managers/xmonad.nix
|
||||||
./services/wlsunset.nix
|
./services/wlsunset.nix
|
||||||
|
./services/wob.nix
|
||||||
./services/xcape.nix
|
./services/xcape.nix
|
||||||
./services/xembed-sni-proxy.nix
|
./services/xembed-sni-proxy.nix
|
||||||
./services/xidlehook.nix
|
./services/xidlehook.nix
|
||||||
|
|
79
modules/services/wob.nix
Normal file
79
modules/services/wob.nix
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (lib)
|
||||||
|
getExe literalExpression mkEnableOption mkIf mkOption mkPackageOption
|
||||||
|
optional;
|
||||||
|
|
||||||
|
cfg = config.services.wob;
|
||||||
|
settingsFormat = pkgs.formats.ini { };
|
||||||
|
|
||||||
|
configFile = settingsFormat.generate "wob.ini" cfg.settings;
|
||||||
|
in {
|
||||||
|
meta.maintainers = with lib.maintainers; [ Scrumplex ];
|
||||||
|
|
||||||
|
options.services.wob = {
|
||||||
|
enable = mkEnableOption "wob";
|
||||||
|
package = mkPackageOption pkgs "wob" { };
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = settingsFormat.type;
|
||||||
|
default = { };
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
"" = {
|
||||||
|
border_size = 10;
|
||||||
|
height = 50;
|
||||||
|
};
|
||||||
|
"output.foo".name = "DP-1";
|
||||||
|
"style.muted".background_color = "032cfc";
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Configuration written to {file}`$XDG_CONFIG_HOME/wob/wob.ini`.
|
||||||
|
See {manpage}`wob.ini(5)` for documentation.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = mkEnableOption "systemd service and socket for wob"
|
||||||
|
// mkOption { default = true; };
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
(lib.hm.assertions.assertPlatform "services.wob" pkgs lib.platforms.linux)
|
||||||
|
];
|
||||||
|
|
||||||
|
systemd.user = mkIf cfg.systemd {
|
||||||
|
services.wob = {
|
||||||
|
Unit = {
|
||||||
|
Description =
|
||||||
|
"A lightweight overlay volume/backlight/progress/anything bar for Wayland";
|
||||||
|
Documentation = "man:wob(1)";
|
||||||
|
PartOf = "graphical-session.target";
|
||||||
|
After = "graphical-session.target";
|
||||||
|
ConditionEnvironment = "WAYLAND_DISPLAY";
|
||||||
|
};
|
||||||
|
Service = {
|
||||||
|
StandardInput = "socket";
|
||||||
|
ExecStart = builtins.concatStringsSep " " ([ (getExe cfg.package) ]
|
||||||
|
++ optional (cfg.settings != { }) "--config ${configFile}");
|
||||||
|
};
|
||||||
|
Install.WantedBy = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
sockets.wob = {
|
||||||
|
Socket = {
|
||||||
|
ListenFIFO = "%t/wob.sock";
|
||||||
|
SocketMode = "0600";
|
||||||
|
RemoveOnStop = "yes";
|
||||||
|
FlushPending = "yes";
|
||||||
|
};
|
||||||
|
Install.WantedBy = [ "sockets.target" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.configFile."wob/wob.ini" =
|
||||||
|
mkIf (cfg.settings != { }) { source = configFile; };
|
||||||
|
};
|
||||||
|
}
|
|
@ -261,6 +261,7 @@ in import nmtSrc {
|
||||||
./modules/services/window-managers/spectrwm
|
./modules/services/window-managers/spectrwm
|
||||||
./modules/services/window-managers/sway
|
./modules/services/window-managers/sway
|
||||||
./modules/services/wlsunset
|
./modules/services/wlsunset
|
||||||
|
./modules/services/wob
|
||||||
./modules/services/xsettingsd
|
./modules/services/xsettingsd
|
||||||
./modules/systemd
|
./modules/systemd
|
||||||
./modules/targets-linux
|
./modules/targets-linux
|
||||||
|
|
1
tests/modules/services/wob/default.nix
Normal file
1
tests/modules/services/wob/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ wob-service = ./wob-service.nix; }
|
2
tests/modules/services/wob/wob-service-expected.ini
Normal file
2
tests/modules/services/wob/wob-service-expected.ini
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[]
|
||||||
|
background_color=ddddddff
|
13
tests/modules/services/wob/wob-service-expected.service
Normal file
13
tests/modules/services/wob/wob-service-expected.service
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[Install]
|
||||||
|
WantedBy=graphical-session.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=@wob@/bin/wob --config /nix/store/00000000000000000000000000000000-wob.ini
|
||||||
|
StandardInput=socket
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
After=graphical-session.target
|
||||||
|
ConditionEnvironment=WAYLAND_DISPLAY
|
||||||
|
Description=A lightweight overlay volume/backlight/progress/anything bar for Wayland
|
||||||
|
Documentation=man:wob(1)
|
||||||
|
PartOf=graphical-session.target
|
8
tests/modules/services/wob/wob-service-expected.socket
Normal file
8
tests/modules/services/wob/wob-service-expected.socket
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[Install]
|
||||||
|
WantedBy=sockets.target
|
||||||
|
|
||||||
|
[Socket]
|
||||||
|
FlushPending=yes
|
||||||
|
ListenFIFO=%t/wob.sock
|
||||||
|
RemoveOnStop=yes
|
||||||
|
SocketMode=0600
|
29
tests/modules/services/wob/wob-service.nix
Normal file
29
tests/modules/services/wob/wob-service.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.wob = {
|
||||||
|
enable = true;
|
||||||
|
package = config.lib.test.mkStubPackage {
|
||||||
|
name = "wob";
|
||||||
|
outPath = "@wob@";
|
||||||
|
};
|
||||||
|
systemd = true;
|
||||||
|
|
||||||
|
settings."".background_color = "ddddddff";
|
||||||
|
};
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
serviceFile=home-files/.config/systemd/user/wob.service
|
||||||
|
socketFile=home-files/.config/systemd/user/wob.socket
|
||||||
|
configFile=home-files/.config/wob/wob.ini
|
||||||
|
|
||||||
|
assertFileExists $serviceFile
|
||||||
|
assertFileExists $socketFile
|
||||||
|
assertFileExists $configFile
|
||||||
|
assertFileContent $(normalizeStorePaths $serviceFile) ${
|
||||||
|
./wob-service-expected.service
|
||||||
|
}
|
||||||
|
assertFileContent $socketFile ${./wob-service-expected.socket}
|
||||||
|
assertFileContent $configFile ${./wob-service-expected.ini}
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue