add regreet

This commit is contained in:
atagen 2023-06-20 15:34:48 +10:00
parent 48ad8a3fdf
commit 16e9c62f76
13 changed files with 406 additions and 303 deletions

View file

@ -72,6 +72,7 @@ monitor=,highrr,auto,1
windowrule=noanim,^(wlogout)$
windowrule=workspace special silent,^(keepassxc)$
windowrulev2 = workspace special silent, title:(KeePassXC)$
windowrule=dimaround,^(fuzzel)$
bindm=SUPER,mouse:272,movewindow

View file

@ -17,54 +17,57 @@ in {
home.stateVersion = "22.11";
home.packages = with pkgs; [
thunderbird
clementine
inkscape
xfce.thunar
feh
home.packages = with pkgs;
[
thunderbird
clementine
inkscape
xfce.thunar
feh
zathura
zathura
btop
bat
ripgrep
fd
lazygit
fzf
zoxide
zellij
glib # for gsettings
grim
slurp
swaybg
wlogout
wf-recorder
libnotify
xorg.xrdb
swayidle
swaynotificationcenter
gtklock
playerctl
btop
bat
ripgrep
fd
lazygit
fzf
zoxide
zellij
glib # for gsettings
grim
slurp
swaybg
wlogout
wf-recorder
libnotify
xorg.xrdb
swayidle
swaynotificationcenter
gtklock
playerctl
xplr
culr
swayosd
fuzzel
xplr
culr
swayosd
fuzzel
kdeconnect
# syncthing
keepassxc
git-credential-keepassxc
kdeconnect
# syncthing
keepassxc
git-credential-keepassxc
direnv
direnv
mpv
mpv
# libsForQt5.qtstyleplugin-kvantum
# libsForQt5.qtstyleplugin-kvantum
gtk-engine-murrine
] ++ pkgs.rice.fonts.pkgs ++ pkgs.rice.icons.pkgs;
gtk-engine-murrine
]
++ pkgs.rice.fonts.pkgs
++ pkgs.rice.icons.pkgs;
fonts.fontconfig.enable = true;
@ -105,7 +108,6 @@ in {
(builtins.toString borders.rounding)
(builtins.toString borders.gaps_in)
(builtins.toString borders.gaps_out)
]
(builtins.readFile dots/hyprland/hyprland.conf));
};
@ -294,7 +296,7 @@ in {
text = lib.strings.concatStrings [palette-hex.util.fg "FF"];
selection = lib.strings.concatStrings [palette-hex.bright.yellow "FF"];
selection-text = lib.strings.concatStrings [palette-hex.util.bg "FF"];
selection-match = lib.strings.concatStrings [palette-hex.normal.green"FF"];
selection-match = lib.strings.concatStrings [palette-hex.normal.green "FF"];
match = lib.strings.concatStrings [palette-hex.bright.green "FF"];
border = lib.strings.concatStrings [palette-hex.bright.yellow "FF"];
};
@ -344,9 +346,8 @@ in {
enable = true;
themes = with palette-hex; {
nix-rice = {
"attribute" = bright.cyan;
"keyword" = { fg = normal.red; };
"keyword" = {fg = normal.red;};
"keyword.directive" = normal.red;
"namespace" = bright.cyan;
"punctuation" = bright.yellow;
@ -359,17 +360,32 @@ in {
"variable.parameter" = bright.white;
"type" = normal.yellow;
"type.builtin" = normal.yellow;
"constructor" = { fg = bright.magenta; modifiers = ["bold"]; };
"function" = { fg = normal.green; modifiers = ["bold"]; };
"constructor" = {
fg = bright.magenta;
modifiers = ["bold"];
};
"function" = {
fg = normal.green;
modifiers = ["bold"];
};
"function.macro" = bright.cyan;
"function.builtin" = normal.yellow;
"tag" = normal.red;
"comment" = { fg = normal.magenta; modifiers = ["italic"]; };
"constant" = { fg = bright.magenta; };
"constant.builtin" = { fg = bright.magenta; modifiers = ["bold"]; };
"comment" = {
fg = normal.magenta;
modifiers = ["italic"];
};
"constant" = {fg = bright.magenta;};
"constant.builtin" = {
fg = bright.magenta;
modifiers = ["bold"];
};
"string" = normal.green;
"constant.numeric" = bright.magenta;
"constant.character.escape" = { fg = bright.white; modifiers = ["bold"]; };
"constant.character.escape" = {
fg = bright.white;
modifiers = ["bold"];
};
"label" = bright.cyan;
"module" = bright.cyan;
@ -382,47 +398,103 @@ in {
"info" = bright.cyan;
"hint" = bright.blue;
"ui.background" = { bg = util.bg; };
"ui.linenr" = { fg = normal.cyan; };
"ui.linenr.selected" = { fg = normal.yellow; modifiers = ["bold"]; };
"ui.cursorline" = { bg = normal.black; };
"ui.statusline" = { fg = util.fg; bg = bright.black; };
"ui.statusline.normal" = { fg = util.fg; bg = bright.black; };
"ui.statusline.insert" = { fg = util.fg; bg = normal.blue; };
"ui.statusline.select" = { fg = util.fg; bg = bright.yellow; };
"ui.statusline.inactive" = { fg = normal.white; bg = normal.black; };
"ui.popup" = { bg = normal.black; };
"ui.window" = { bg = normal.black; };
"ui.help" = { bg = normal.black; fg = util.fg; };
"ui.text" = { fg = util.fg; };
"ui.text.focus" = { fg = util.fg; };
"ui.selection" = { modifiers = ["reversed"]; bg = bright.yellow; };
"ui.selection.primary" = { modifiers = ["reversed"]; };
"ui.background" = {bg = util.bg;};
"ui.linenr" = {fg = normal.cyan;};
"ui.linenr.selected" = {
fg = normal.yellow;
modifiers = ["bold"];
};
"ui.cursorline" = {bg = normal.black;};
"ui.statusline" = {
fg = util.fg;
bg = bright.black;
};
"ui.statusline.normal" = {
fg = util.fg;
bg = bright.black;
};
"ui.statusline.insert" = {
fg = util.fg;
bg = normal.blue;
};
"ui.statusline.select" = {
fg = util.fg;
bg = bright.yellow;
};
"ui.statusline.inactive" = {
fg = normal.white;
bg = normal.black;
};
"ui.popup" = {bg = normal.black;};
"ui.window" = {bg = normal.black;};
"ui.help" = {
bg = normal.black;
fg = util.fg;
};
"ui.text" = {fg = util.fg;};
"ui.text.focus" = {fg = util.fg;};
"ui.selection" = {
modifiers = ["reversed"];
bg = bright.yellow;
};
"ui.selection.primary" = {modifiers = ["reversed"];};
# "ui.selection.primary" = { bg = bright.cyan; };
"ui.cursor.primary" = { bg = normal.white; fg = normal.black; };
"ui.cursor.match" = { bg = bright.cyan; };
"ui.menu" = { fg = util.fg; bg = bright.black; };
"ui.menu.selected" = { fg = bright.black; bg = bright.blue; modifiers = ["bold"]; };
"ui.cursor.primary" = {
bg = normal.white;
fg = normal.black;
};
"ui.cursor.match" = {bg = bright.cyan;};
"ui.menu" = {
fg = util.fg;
bg = bright.black;
};
"ui.menu.selected" = {
fg = bright.black;
bg = bright.blue;
modifiers = ["bold"];
};
"ui.virtual.whitespace" = bright.black;
"ui.virtual.ruler" = { bg = normal.black; };
"ui.virtual.inlay-hint" = { fg = normal.magenta; };
"ui.virtual.ruler" = {bg = normal.black;};
"ui.virtual.inlay-hint" = {fg = normal.magenta;};
"diagnostic.warning" = { underline = { color = bright.yellow; style = "curl"; }; };
"diagnostic.error" = { underline = { color = bright.red; style = "curl"; }; };
"diagnostic.info" = { underline = { color = bright.cyan; style = "curl"; }; };
"diagnostic.hint" = { underline = { color = bright.blue; style = "curl"; }; };
"diagnostic.warning" = {
underline = {
color = bright.yellow;
style = "curl";
};
};
"diagnostic.error" = {
underline = {
color = bright.red;
style = "curl";
};
};
"diagnostic.info" = {
underline = {
color = bright.cyan;
style = "curl";
};
};
"diagnostic.hint" = {
underline = {
color = bright.blue;
style = "curl";
};
};
"markup.heading" = bright.cyan;
"markup.bold" = { modifiers = ["bold"]; };
"markup.italic" = { modifiers = ["italic"]; };
"markup.strikethrough" = { modifiers = ["crossed_out"]; };
"markup.link.url" = { fg = bright.green; modifiers = ["underlined"]; };
"markup.bold" = {modifiers = ["bold"];};
"markup.italic" = {modifiers = ["italic"];};
"markup.strikethrough" = {modifiers = ["crossed_out"];};
"markup.link.url" = {
fg = bright.green;
modifiers = ["underlined"];
};
"markup.link.text" = bright.red;
"markup.raw" = bright.red;
# old theme
# old theme
# "ui.background" = { bg = util.bg; };
# "ui.menu" = { fg = bright.cyan; bg = normal.black; };
# "ui.menu.selected" = { modifiers = [ "reversed" ]; };
@ -462,7 +534,7 @@ in {
# "hint" = normal.magenta;
# "debug" = normal.magenta;
# "warning" = normal.yellow;
# "error" = normal.red;
# "error" = normal.red;
};
};
settings = {