devilspie2: add module (#1477)
Co-authored-by: Sumner Evans <me@sumnerevans.com> Co-authored-by: Nicolas Berbiche <nicolas@normie.dev>
This commit is contained in:
parent
ac319fd314
commit
97d183e2e4
7 changed files with 98 additions and 0 deletions
11
tests/modules/services/devilspie2/config.lua
Normal file
11
tests/modules/services/devilspie2/config.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
if (get_window_class() == "Gnome-terminal") then
|
||||
make_always_on_top();
|
||||
end
|
||||
|
||||
if string.match(get_window_name(), "LibreOffice Writer") then
|
||||
maximize();
|
||||
end
|
||||
|
||||
if (get_window_class()=="Org.gnome.Nautilus") then
|
||||
set_window_geometry(1600,300,900,700);
|
||||
end
|
||||
39
tests/modules/services/devilspie2/configuration.nix
Normal file
39
tests/modules/services/devilspie2/configuration.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ config, pkgs, ... }: {
|
||||
config = {
|
||||
services.devilspie2 = {
|
||||
enable = true;
|
||||
|
||||
config = ''
|
||||
if (get_window_class() == "Gnome-terminal") then
|
||||
make_always_on_top();
|
||||
end
|
||||
|
||||
if string.match(get_window_name(), "LibreOffice Writer") then
|
||||
maximize();
|
||||
end
|
||||
|
||||
if (get_window_class()=="Org.gnome.Nautilus") then
|
||||
set_window_geometry(1600,300,900,700);
|
||||
end
|
||||
'';
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(self: super: { devilspie2 = pkgs.writeScriptBin "dummy-devilspie2" ""; })
|
||||
];
|
||||
|
||||
nmt.script = ''
|
||||
configlua=home-files/.config/devilspie2/config.lua
|
||||
|
||||
assertFileExists $configlua
|
||||
|
||||
assertFileContent $configlua ${./config.lua}
|
||||
|
||||
serviceFile=home-files/.config/systemd/user/devilspie2.service
|
||||
|
||||
assertFileExists $serviceFile
|
||||
|
||||
assertFileRegex $serviceFile 'ExecStart=.*/bin/devilspie2'
|
||||
'';
|
||||
};
|
||||
}
|
||||
1
tests/modules/services/devilspie2/default.nix
Normal file
1
tests/modules/services/devilspie2/default.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ devilspie2-configuration = ./configuration.nix; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue