feat(home): Configure dark mode for zathura
This commit is contained in:
parent
4be769b23f
commit
21bb4d0dc9
3 changed files with 49 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
./programs/xmonad
|
||||
./programs/jitsi-meet
|
||||
./programs/simplex-chat
|
||||
./programs/zathura
|
||||
./services/polybar
|
||||
./services/dunst
|
||||
./services/udiskie
|
||||
|
|
@ -70,7 +71,6 @@
|
|||
};
|
||||
};
|
||||
mpv.enable = true;
|
||||
zathura.enable = true;
|
||||
|
||||
zsh = let
|
||||
auth-socket-env = ''
|
||||
|
|
|
|||
8
home/alex/programs/zathura/default.nix
Normal file
8
home/alex/programs/zathura/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config.programs.zathura = {
|
||||
enable = true;
|
||||
extraConfig = builtins.readFile ./gruvbox-dark.zathurarc;
|
||||
};
|
||||
}
|
||||
40
home/alex/programs/zathura/gruvbox-dark.zathurarc
Normal file
40
home/alex/programs/zathura/gruvbox-dark.zathurarc
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
set notification-error-bg "#282828" # bg
|
||||
set notification-error-fg "#fb4934" # bright:red
|
||||
set notification-warning-bg "#282828" # bg
|
||||
set notification-warning-fg "#fabd2f" # bright:yellow
|
||||
set notification-bg "#282828" # bg
|
||||
set notification-fg "#b8bb26" # bright:green
|
||||
|
||||
set completion-bg "#504945" # bg2
|
||||
set completion-fg "#ebdbb2" # fg
|
||||
set completion-group-bg "#3c3836" # bg1
|
||||
set completion-group-fg "#928374" # gray
|
||||
set completion-highlight-bg "#83a598" # bright:blue
|
||||
set completion-highlight-fg "#504945" # bg2
|
||||
|
||||
# Define the color in index mode
|
||||
set index-bg "#504945" # bg2
|
||||
set index-fg "#ebdbb2" # fg
|
||||
set index-active-bg "#83a598" # bright:blue
|
||||
set index-active-fg "#504945" # bg2
|
||||
|
||||
set inputbar-bg "#282828" # bg
|
||||
set inputbar-fg "#ebdbb2" # fg
|
||||
|
||||
set statusbar-bg "#504945" # bg2
|
||||
set statusbar-fg "#ebdbb2" # fg
|
||||
|
||||
set highlight-color "#fabd2f" # bright:yellow
|
||||
set highlight-active-color "#fe8019" # bright:orange
|
||||
|
||||
set default-bg "#282828" # bg
|
||||
set default-fg "#ebdbb2" # fg
|
||||
set render-loading true
|
||||
set render-loading-bg "#282828" # bg
|
||||
set render-loading-fg "#ebdbb2" # fg
|
||||
|
||||
# Recolor book content's color
|
||||
set recolor-lightcolor "#282828" # bg
|
||||
set recolor-darkcolor "#ebdbb2" # fg
|
||||
set recolor "true"
|
||||
# set recolor-keephue true # keep original color
|
||||
Loading…
Add table
Add a link
Reference in a new issue