diff options
author | Adrian Kummerlaender | 2018-05-10 13:59:28 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-05-10 13:59:28 +0200 |
commit | 72c4fd4fe46586cf0bc52e868a1686964f3cc0e5 (patch) | |
tree | c7379d8ce49fed25da6ec26ac624ea22f8f4c453 /gui/apps | |
parent | fd8cdce010e00fa2f19f9c0845a068d5f4873718 (diff) | |
download | nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar.gz nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar.bz2 nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar.lz nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar.xz nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.tar.zst nixos_home-72c4fd4fe46586cf0bc52e868a1686964f3cc0e5.zip |
Configure sxiv colors
Diffstat (limited to 'gui/apps')
-rw-r--r-- | gui/apps/file.nix | 6 | ||||
-rw-r--r-- | gui/apps/sxiv.nix | 13 |
2 files changed, 17 insertions, 2 deletions
diff --git a/gui/apps/file.nix b/gui/apps/file.nix index d366621..80a84b3 100644 --- a/gui/apps/file.nix +++ b/gui/apps/file.nix @@ -2,7 +2,9 @@ { home = { - packages = with pkgs; [ + packages = let + custom-sxiv = import ./sxiv.nix pkgs; + in with pkgs; [ # browser pcmanfm # automounting @@ -11,7 +13,7 @@ veracrypt # viewers evince - sxiv + custom-sxiv mpv libreoffice ]; diff --git a/gui/apps/sxiv.nix b/gui/apps/sxiv.nix new file mode 100644 index 0000000..628fd41 --- /dev/null +++ b/gui/apps/sxiv.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: + +pkgs.callPackage ../pkgs/sxiv.nix { + theme = { + bar_font_name = "Iosevka"; + bar_font_size = "12"; + win_bg = "#000000"; + win_fs = "#999999"; + sel = "#aadb0f"; + bar_bg = "#161616"; + bar_fg = "#909737"; + }; +} |