sway-easyfocus: add module (#6976)
This commit is contained in:
parent
5f1f472565
commit
8a318641ac
6 changed files with 85 additions and 0 deletions
9
tests/modules/programs/sway-easyfocus/config.yaml
Normal file
9
tests/modules/programs/sway-easyfocus/config.yaml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
chars: fjghdkslaemuvitywoqpcbnxz
|
||||
focused_background_color: '285577'
|
||||
focused_background_opacity: 1.0
|
||||
focused_text_color: ffffff
|
||||
font_family: monospace
|
||||
font_size: medium
|
||||
font_weight: bold
|
||||
window_background_color: d1f21
|
||||
window_background_opacity: 0.2
|
||||
1
tests/modules/programs/sway-easyfocus/default.nix
Normal file
1
tests/modules/programs/sway-easyfocus/default.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ sway-easyfocus-example-config = ./example-config.nix; }
|
||||
22
tests/modules/programs/sway-easyfocus/example-config.nix
Normal file
22
tests/modules/programs/sway-easyfocus/example-config.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
programs.sway-easyfocus = {
|
||||
enable = true;
|
||||
settings = {
|
||||
chars = "fjghdkslaemuvitywoqpcbnxz";
|
||||
window_background_color = "d1f21";
|
||||
window_background_opacity = 0.2;
|
||||
focused_background_color = "285577";
|
||||
focused_background_opacity = 1.0;
|
||||
focused_text_color = "ffffff";
|
||||
font_family = "monospace";
|
||||
font_weight = "bold";
|
||||
font_size = "medium";
|
||||
};
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.config/sway-easyfocus/config.yaml
|
||||
assertFileContent home-files/.config/sway-easyfocus/config.yaml \
|
||||
${./config.yaml}
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue