1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

rofi: migrate to rasi configuration format (#1736)

* rofi: migrate to rasi configuration format

The Xresources configuration format is deprecated in Rofi. For example,
using Rofi from unstable (1.6.1 as of now) you get the following
warnings when starting the application:

```
(process:9272): Rofi-WARNING **: 01:38:48.596: The old Xresources based configuration format is deprecated.

(process:9272): Rofi-WARNING **: 01:38:48.596: Please upgrade: rofi -upgrade-config.
``````

So this commit migrates it for its new configuration format, called rasi
instead.

This new implementation uses attrsets manipulation instead of using
strings, making the code clearer and also fixing some bugs found during
the way. To make sure everything is right, I also created some tests.

If someone wants to validate if the generated config is correct, just
run in terminal:

```
$ rofi -dump-config
```

And rofi will dump the current configuration file, including all
unsetted options.

* docs: document programs.rofi.extraConfig changes

* rofi: add thiagokokada as maintainer

* rofi: add toRasi function
This commit is contained in:
Thiago Kenji Okada 2021-01-23 12:30:34 -03:00 committed by GitHub
parent 9a12cd7e81
commit 6f7074d21d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 178 additions and 50 deletions

6
.github/CODEOWNERS vendored
View file

@ -91,7 +91,8 @@
/modules/programs/mcfly.nix @marsam /modules/programs/mcfly.nix @marsam
/modules/programs/mpv.nix @tadeokondrak /modules/programs/mpv.nix @tadeokondrak @thiagokokada
/tests/modules/programs/mpv @thiagokokada
/modules/programs/mu.nix @KarlJoad /modules/programs/mu.nix @KarlJoad
@ -123,6 +124,9 @@
/modules/programs/powerline-go.nix @DamienCassou /modules/programs/powerline-go.nix @DamienCassou
/modules/programs/rofi.nix @thiagokokada
/tests/modules/programs/rofi @thiagokokada
/modules/programs/rofi-pass.nix @seylerius /modules/programs/rofi-pass.nix @seylerius
/tests/modules/programs/rofi-pass @seylerius /tests/modules/programs/rofi-pass @seylerius

View file

@ -50,6 +50,28 @@ As a result of this change, <<opt-programs.mpv.package>> is no longer the
resulting derivation. Use the newly introduced `programs.mpv.finalPackage` resulting derivation. Use the newly introduced `programs.mpv.finalPackage`
instead. instead.
* The <<opt-programs.rofi.extraConfig>> option is now an attrset rather
than a string. To migrate, move the each line into the attrset,
removing the `rofi.` prefix from the keys. For example,
+
[source,nix]
----
programs.rofi.extraConfig = ''
rofi.show-icons: true
rofi.modi: drun,emoji,ssh
'';
----
+
becomes
+
[source,nix]
----
programs.rofi.extraConfig = {
show-icons = true;
modi = "drun,emoji,ssh";
};
----
[[sec-release-21.03-state-version-changes]] [[sec-release-21.03-state-version-changes]]
=== State Version Changes === State Version Changes

View file

@ -71,21 +71,9 @@ let
}; };
}; };
valueToString = value:
if isBool value then (if value then "true" else "else") else toString value;
windowColorsToString = window: windowColorsToString = window:
concatStringsSep ", " (with window; [ background border separator ]); concatStringsSep ", " (with window; [ background border separator ]);
rowsColorsToString = rows: ''
${optionalString (rows.normal != null)
(setOption "color-normal" (rowColorsToString rows.normal))}
${optionalString (rows.active != null)
(setOption "color-active" (rowColorsToString rows.active))}
${optionalString (rows.urgent != null)
(setOption "color-urgent" (rowColorsToString rows.urgent))}
'';
rowColorsToString = row: rowColorsToString = row:
concatStringsSep ", " (with row; [ concatStringsSep ", " (with row; [
background background
@ -95,14 +83,45 @@ let
highlight.foreground highlight.foreground
]); ]);
setOption = name: value: mkColorScheme = colors:
optionalString (value != null) "rofi.${name}: ${valueToString value}"; if colors != null then
with colors; {
color-window =
if (window != null) then (windowColorsToString window) else null;
color-normal = if (rows != null && rows.normal != null) then
(rowColorsToString rows.normal)
else
null;
color-active = if (rows != null && rows.active != null) then
(rowColorsToString rows.active)
else
null;
color-urgent = if (rows != null && rows.active != null) then
(rowColorsToString rows.urgent)
else
null;
}
else
{ };
setColorScheme = colors: mkValueString = value:
optionalString (colors != null) '' if isBool value then
${optionalString (colors.window != null) setOption "color-window" if value then "true" else "false"
(windowColorsToString colors.window)} else if isInt value then
${optionalString (colors.rows != null) (rowsColorsToString colors.rows)} toString value
else
''"${toString value}"'';
mkKeyValue = name: value: "${name}: ${mkValueString value};";
toRasi = section: config:
let
# Remove null values so the resulting config does not have empty lines
configStr = generators.toKeyValue { inherit mkKeyValue; }
(attrsets.filterAttrs (m: v: v != null) config);
in ''
${section} {
${configStr}}
''; '';
locationsMap = { locationsMap = {
@ -119,12 +138,12 @@ let
themeName = if (cfg.theme == null) then themeName = if (cfg.theme == null) then
null null
else if (lib.isString cfg.theme) then else if (isString cfg.theme) then
cfg.theme cfg.theme
else else
lib.removeSuffix ".rasi" (baseNameOf cfg.theme); removeSuffix ".rasi" (baseNameOf cfg.theme);
themePath = if (lib.isString cfg.theme) then null else cfg.theme; themePath = if (isString cfg.theme) then null else cfg.theme;
in { in {
options.programs.rofi = { options.programs.rofi = {
@ -220,7 +239,7 @@ in {
location = mkOption { location = mkOption {
default = "center"; default = "center";
type = types.enum (builtins.attrNames locationsMap); type = types.enum (attrNames locationsMap);
description = "The location rofi appears on the screen."; description = "The location rofi appears on the screen.";
}; };
@ -284,15 +303,22 @@ in {
}; };
configPath = mkOption { configPath = mkOption {
default = "${config.xdg.configHome}/rofi/config"; default = "${config.xdg.configHome}/rofi/config.rasi";
defaultText = "$XDG_CONFIG_HOME/rofi/config"; defaultText = "$XDG_CONFIG_HOME/rofi/config.rasi";
type = types.str; type = types.str;
description = "Path where to put generated configuration file."; description = "Path where to put generated configuration file.";
}; };
extraConfig = mkOption { extraConfig = mkOption {
default = ""; default = { };
type = types.lines; example = literalExample ''
{
modi = "drun,emoji,ssh";
kb-primary-paste = "Control+V,Shift+Insert";
kb-secondary-paste = "Control+v,Insert";
}
'';
type = with types; attrsOf (oneOf [ int str bool ]);
description = "Additional configuration to add."; description = "Additional configuration to add.";
}; };
@ -308,31 +334,29 @@ in {
home.packages = [ cfg.package ]; home.packages = [ cfg.package ];
home.file."${cfg.configPath}".text = '' home.file."${cfg.configPath}".text = toRasi "configuration" ({
${setOption "width" cfg.width} width = cfg.width;
${setOption "lines" cfg.lines} lines = cfg.lines;
${setOption "font" cfg.font} font = cfg.font;
${setOption "bw" cfg.borderWidth} bw = cfg.borderWidth;
${setOption "eh" cfg.rowHeight} eh = cfg.rowHeight;
${setOption "padding" cfg.padding} padding = cfg.padding;
${setOption "separator-style" cfg.separator} separator-style = cfg.separator;
${setOption "hide-scrollbar" hide-scrollbar =
(if (cfg.scrollbar != null) then (!cfg.scrollbar) else cfg.scrollbar)} if (cfg.scrollbar != null) then (!cfg.scrollbar) else null;
${setOption "terminal" cfg.terminal} terminal = cfg.terminal;
${setOption "cycle" cfg.cycle} cycle = cfg.cycle;
${setOption "fullscreen" cfg.fullscreen} fullscreen = cfg.fullscreen;
${setOption "location" (builtins.getAttr cfg.location locationsMap)} location = (getAttr cfg.location locationsMap);
${setOption "xoffset" cfg.xoffset} xoffset = cfg.xoffset;
${setOption "yoffset" cfg.yoffset} yoffset = cfg.yoffset;
theme = themeName;
${setColorScheme cfg.colors} } // (mkColorScheme cfg.colors) // cfg.extraConfig);
${setOption "theme" themeName}
${cfg.extraConfig}
'';
xdg.dataFile = mkIf (themePath != null) { xdg.dataFile = mkIf (themePath != null) {
"rofi/themes/${themeName}.rasi".source = themePath; "rofi/themes/${themeName}.rasi".source = themePath;
}; };
}; };
meta.maintainers = with maintainers; [ thiagokokada ];
} }

View file

@ -1,3 +1,4 @@
{ {
rofi-valid-config = ./valid-config.nix;
rofi-assert-on-both-theme-and-colors = ./assert-on-both-theme-and-colors.nix; rofi-assert-on-both-theme-and-colors = ./assert-on-both-theme-and-colors.nix;
} }

View file

@ -0,0 +1,20 @@
configuration {
bw: 1;
color-normal: "argb:58455a64, #fafbfc, argb:58455a64, #00bcd4, #fafbfc";
color-window: "argb:583a4c54, argb:582a373e, #c3c6c8";
cycle: false;
eh: 1;
font: "Droid Sans Mono 14";
hide-scrollbar: false;
kb-primary-paste: "Control+V,Shift+Insert";
kb-secondary-paste: "Control+v,Insert";
lines: 10;
location: 0;
modi: "drun,emoji,ssh";
padding: 400;
separator-style: "solid";
terminal: "/some/path";
width: 100;
xoffset: 0;
yoffset: 0;
}

View file

@ -0,0 +1,57 @@
{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.rofi = {
enable = true;
width = 100;
lines = 10;
borderWidth = 1;
rowHeight = 1;
padding = 400;
font = "Droid Sans Mono 14";
scrollbar = true;
terminal = "/some/path";
separator = "solid";
cycle = false;
fullscren = true;
colors = {
window = {
background = "argb:583a4c54";
border = "argb:582a373e";
separator = "#c3c6c8";
};
rows = {
normal = {
background = "argb:58455a64";
foreground = "#fafbfc";
backgroundAlt = "argb:58455a64";
highlight = {
background = "#00bcd4";
foreground = "#fafbfc";
};
};
};
};
window = {
background = "background";
border = "border";
separator = "separator";
};
extraConfig = {
modi = "drun,emoji,ssh";
kb-primary-paste = "Control+V,Shift+Insert";
kb-secondary-paste = "Control+v,Insert";
};
};
nmt.script = ''
assertFileContent \
home-files/.config/rofi/config.rasi \
${./valid-config-expected.rasi}
'';
};
}