Update
This commit is contained in:
parent
144c131c75
commit
f4826914ed
2 changed files with 19 additions and 10 deletions
|
@ -92,3 +92,6 @@ Repo for nix configuration files
|
|||
# Other
|
||||
* Try this - https://yewtu.be/watch?v=61wGzIv12Ds&local=true
|
||||
* gruvbox-factory - https://github.com/paulopacitti/gruvbox-factory
|
||||
https://github.com/Chick2D/neofetch-themes/
|
||||
https://github.com/0bCdian/Hyprland_dotfiles/blob/main/mako/config
|
||||
https://github.com/0bCdian/Hyprland_dotfiles/blob/gruvboxy/neofetch/config.conf
|
||||
|
|
|
@ -6,15 +6,21 @@
|
|||
enable = true;
|
||||
# https://github.com/rharish101/ReGreet/blob/main/regreet.sample.toml
|
||||
settings = {
|
||||
background.path = "/etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper3.jpg";
|
||||
background.fit = "Cover";
|
||||
GTK.application_prefer_dark_theme = true;
|
||||
GTK.cursor_theme_name = "Adwaita";
|
||||
GTK.font_name = "Cantarell 16";
|
||||
GTK.icon_theme_name = "Papirus Dark";
|
||||
GTK.theme_name = "Gruvbox-Dark-BL";
|
||||
commands.reboot = [ "systemctl" "reboot" ];
|
||||
commands.poweroff = [ "systemctl" "poweroff" ];
|
||||
background = {
|
||||
path = "/etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper3.jpg";
|
||||
fit = "Cover";
|
||||
};
|
||||
GTK = {
|
||||
application_prefer_dark_theme = true;
|
||||
cursor_theme_name = "Adwaita";
|
||||
font_name = "Cantarell 16";
|
||||
icon_theme_name = "Papirus-Dark";
|
||||
theme_name = "Gruvbox-Dark-BL";
|
||||
};
|
||||
commands = {
|
||||
reboot = [ "systemctl" "reboot" ];
|
||||
poweroff = [ "systemctl" "poweroff" ];
|
||||
};
|
||||
};
|
||||
extraCss = ''
|
||||
#background {
|
||||
|
|
Loading…
Reference in a new issue