Compare commits
3 Commits
b7bc231e62
...
49a5965918
| Author | SHA1 | Date | |
|---|---|---|---|
| 49a5965918 | |||
| 0c4079bff8 | |||
| fbc22e8708 |
@@ -25,9 +25,6 @@
|
|||||||
|
|
||||||
# Hypridle, idle daemon
|
# Hypridle, idle daemon
|
||||||
hypridle.enable = true;
|
hypridle.enable = true;
|
||||||
|
|
||||||
# Eye protection
|
|
||||||
safeeyes.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# ================================
|
# ================================
|
||||||
@@ -54,7 +51,29 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# regreet: Modern, customizable greeter for greetd
|
# regreet: Modern, customizable greeter for greetd
|
||||||
regreet.enable = true;
|
regreet = {
|
||||||
|
enable = true;
|
||||||
|
theme = {
|
||||||
|
name = "Colloid-Green-Dark-Gruvbox";
|
||||||
|
package = pkgs.colloid-gtk-theme.override {
|
||||||
|
colorVariants = ["dark"];
|
||||||
|
themeVariants = ["green"];
|
||||||
|
tweaks = [
|
||||||
|
"gruvbox"
|
||||||
|
"rimless"
|
||||||
|
"float"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
iconTheme = {
|
||||||
|
name = "Papirus-Dark";
|
||||||
|
package = pkgs.papirus-icon-theme.override {color = "black";};
|
||||||
|
};
|
||||||
|
cursorTheme = {
|
||||||
|
name = "capitaine-cursors";
|
||||||
|
package = pkgs.capitaine-cursors;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# UWSM: Universal Wayland Session Manager
|
# UWSM: Universal Wayland Session Manager
|
||||||
uwsm = {
|
uwsm = {
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ in {
|
|||||||
"hyprctl setcursor capitaine-cursors 32" # Set mouse cursor
|
"hyprctl setcursor capitaine-cursors 32" # Set mouse cursor
|
||||||
"wl-paste --type text --watch cliphist store" # Stores only text data
|
"wl-paste --type text --watch cliphist store" # Stores only text data
|
||||||
"wl-paste --type image --watch cliphist store" # Stores only image data
|
"wl-paste --type image --watch cliphist store" # Stores only image data
|
||||||
|
"stretchly" # Launch Break reminder
|
||||||
];
|
];
|
||||||
|
|
||||||
misc = {
|
misc = {
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ in {
|
|||||||
settings = {
|
settings = {
|
||||||
font = "Intel One Mono 10";
|
font = "Intel One Mono 10";
|
||||||
actions = true;
|
actions = true;
|
||||||
anchor = "bottom-right";
|
anchor = "bottom-center";
|
||||||
background-color = "${colors.gruvbox.bg0}";
|
background-color = "${colors.gruvbox.bg0}";
|
||||||
text-color = "${colors.gruvbox.fg0}";
|
text-color = "${colors.gruvbox.fg0}";
|
||||||
border-color = "${colors.gruvbox.yellow}";
|
border-color = "${colors.gruvbox.yellow}";
|
||||||
|
|||||||
@@ -89,6 +89,9 @@ in {
|
|||||||
cava # Audio visualizer
|
cava # Audio visualizer
|
||||||
wireplumber # Audio server
|
wireplumber # Audio server
|
||||||
pavucontrol # Audio control
|
pavucontrol # Audio control
|
||||||
|
|
||||||
|
# Health
|
||||||
|
stretchly # Break reminder
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|||||||
Reference in New Issue
Block a user