aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorAdrian Kummerlaender2021-12-30 18:22:19 +0100
committerAdrian Kummerlaender2021-12-30 18:22:19 +0100
commitd2881a381efd7df8526c188e215a984e67d43cdb (patch)
treeeaa73c8ff5d72c719cbab12989cfd6ad5bb57b52 /gui
parentcb82ca5828dd7e4beebcfc40a0e1c8d1f2a55bf5 (diff)
downloadnixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar.gz
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar.bz2
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar.lz
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar.xz
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.tar.zst
nixos_home-d2881a381efd7df8526c188e215a984e67d43cdb.zip
Update channels, port rofi theme
Diffstat (limited to 'gui')
-rw-r--r--gui/rofi.nix51
1 files changed, 14 insertions, 37 deletions
diff --git a/gui/rofi.nix b/gui/rofi.nix
index 99826e4..9d4b3cc 100644
--- a/gui/rofi.nix
+++ b/gui/rofi.nix
@@ -10,45 +10,22 @@ in {
enable = true;
location = "top";
font = "Iosevka 12";
- separator = "none";
- scrollbar = false;
- borderWidth = 6;
- yoffset = -6;
- colors = {
- window = {
- background = "#222222";
- border = "#aadb0f";
- separator = "#000000";
+ theme = let
+ inherit (config.lib.formats.rasi) mkLiteral;
+ in {
+ " @import" = "default";
+ "*" = {
+ background = mkLiteral "#222222";
+ foreground = mkLiteral "#F2F2F2";
+ lightbg = mkLiteral "#161616";
+ lightfg = mkLiteral "#F2F2F2";
+ blue = mkLiteral "#aadb0f";
};
- rows = {
- normal = {
- background = "#222222";
- foreground = "#8e8e8e";
- backgroundAlt = "#161616";
- highlight = {
- background = "#111111";
- foreground = "#aadb0f";
- };
- };
- active = {
- background = "#222222";
- foreground = "#8e8e8e";
- backgroundAlt = "#161616";
- highlight = {
- background = "#111111";
- foreground = "#aadb0f";
- };
- };
- urgent = {
- background = "#222222";
- foreground = "#dc322f";
- backgroundAlt = "#161616";
- highlight = {
- background = "#dc322f";
- foreground = "#161616";
- };
- };
+ window = {
+ border = 6;
+ y-offset = -6;
+ border-color = mkLiteral "#aadb0f";
};
};