hurricane: 196 current 2025-08-11 19:55:09 25.05.20250809.c5f08b6 6.16.0 *
GTK theme, rofi fixes and fastfetch hurricane: 197 current 2025-08-11 20:21:36 25.05.20250809.c5f08b6 6.16.0 *
This commit is contained in:
BIN
images/nixos-logo.png
(Stored with Git LFS)
Normal file
BIN
images/nixos-logo.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -243,6 +243,7 @@ in {
|
|||||||
MOZ_USE_XINPUT2 = "1";
|
MOZ_USE_XINPUT2 = "1";
|
||||||
# Screenshot directory for Hyprshot
|
# Screenshot directory for Hyprshot
|
||||||
HYPRSHOT_DIR = "$HOME/Nextcloud/Home-sync/Pictures/Screenshots";
|
HYPRSHOT_DIR = "$HOME/Nextcloud/Home-sync/Pictures/Screenshots";
|
||||||
|
GTK_THEME = "Colloid-Blue-Dark-Gruvbox";
|
||||||
};
|
};
|
||||||
|
|
||||||
# ================================
|
# ================================
|
||||||
|
@@ -5,6 +5,14 @@
|
|||||||
display = {
|
display = {
|
||||||
separator = " ";
|
separator = " ";
|
||||||
};
|
};
|
||||||
|
logo = {
|
||||||
|
source = "\${../../images/nixos-logo.png}";
|
||||||
|
type = "kitty-direct";
|
||||||
|
width = 33;
|
||||||
|
padding = {
|
||||||
|
top = 2;
|
||||||
|
};
|
||||||
|
};
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
type = "title";
|
type = "title";
|
||||||
|
@@ -1,21 +1,23 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
|
||||||
dconf
|
|
||||||
gruvbox-dark-gtk
|
|
||||||
];
|
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = {
|
theme = {
|
||||||
name = "Gruvbox-Dark-B";
|
name = "Colloid-Blue-Dark-Gruvbox";
|
||||||
package = pkgs.gruvbox-dark-gtk;
|
package = pkgs.colloid-gtk-theme.override {
|
||||||
|
colorVariants = ["dark"];
|
||||||
|
themeVariants = ["default"]; # Blue
|
||||||
|
tweaks = [
|
||||||
|
"gruvbox"
|
||||||
|
"rimless"
|
||||||
|
"float"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name = "Adwaita";
|
name = "Papirus-Dark";
|
||||||
package = pkgs.adwaita-icon-theme;
|
package = pkgs.papirus-icon-theme.override {color = "black";};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# ================================
|
# ================================
|
||||||
# GTK THEMING CONFIGURATION
|
# GTK THEMING CONFIGURATION
|
||||||
# ================================
|
# ================================
|
||||||
@@ -24,8 +26,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
gtk-theme = "Gruvbox-Dark-B";
|
gtk-theme = "Colloid-Blue-Dark-Gruvbox";
|
||||||
|
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@@ -10,6 +10,12 @@ in {
|
|||||||
terminal = "ghostty";
|
terminal = "ghostty";
|
||||||
font = "Intel One Mono 14";
|
font = "Intel One Mono 14";
|
||||||
location = "center";
|
location = "center";
|
||||||
|
extraConfig = {
|
||||||
|
"sorting-method" = "fzf";
|
||||||
|
"icon-theme" = "Papirus-dark";
|
||||||
|
"display-drun" = " Apps ";
|
||||||
|
"display-window" = " Window ";
|
||||||
|
};
|
||||||
theme = let
|
theme = let
|
||||||
inherit (config.lib.formats.rasi) mkLiteral;
|
inherit (config.lib.formats.rasi) mkLiteral;
|
||||||
in {
|
in {
|
||||||
|
Reference in New Issue
Block a user