mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-06-28 16:01:48 +02:00
Theme hyprlock and setup the hypridle home service
This commit is contained in:
parent
f509aa41f4
commit
b3fe46772c
@ -4,7 +4,9 @@
|
|||||||
|
|
||||||
ZaneyOS is a simple way of reproducing my configuration on any NixOS system. This includes the wallpaper, scripts, applications, config files, and more.
|
ZaneyOS is a simple way of reproducing my configuration on any NixOS system. This includes the wallpaper, scripts, applications, config files, and more.
|
||||||
|
|
||||||
<img align="center" width="80%" src="https://gitlab.com/Zaney/zaneyos/-/raw/main/config/demo.png" />
|
<img align="center" width="80%" src="https://gitlab.com/Zaney/zaneyos/-/raw/main/config/demo.png" />
|
||||||
|
|
||||||
|
**Inspiration for the Waybar config [here](https://github.com/justinlime/dotfiles).**
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -183,6 +183,29 @@ in
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
hypridle = {
|
||||||
|
settings = {
|
||||||
|
general = {
|
||||||
|
after_sleep_cmd = "hyprctl dispatch dpms on";
|
||||||
|
ignore_dbus_inhibit = false;
|
||||||
|
lock_cmd = "hyprlock";
|
||||||
|
};
|
||||||
|
listener = [
|
||||||
|
{
|
||||||
|
timeout = 900;
|
||||||
|
on-timeout = "hyprlock";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
timeout = 1200;
|
||||||
|
on-timeout = "hyprctl dispatch dpms off";
|
||||||
|
on-resume = "hyprctl dispatch dpms on";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
gh.enable = true;
|
gh.enable = true;
|
||||||
neovim = {
|
neovim = {
|
||||||
@ -431,6 +454,8 @@ in
|
|||||||
{
|
{
|
||||||
path = "/home/${username}/.config/face.jpg";
|
path = "/home/${username}/.config/face.jpg";
|
||||||
size = 150;
|
size = 150;
|
||||||
|
border_size = 4;
|
||||||
|
border_color = "rgb(${palette.base08})";
|
||||||
rounding = -1; # Negative means circle
|
rounding = -1; # Negative means circle
|
||||||
position = "0, 200";
|
position = "0, 200";
|
||||||
halign = "center";
|
halign = "center";
|
||||||
@ -444,9 +469,9 @@ in
|
|||||||
monitor = "";
|
monitor = "";
|
||||||
dots_center = true;
|
dots_center = true;
|
||||||
fade_on_empty = false;
|
fade_on_empty = false;
|
||||||
font_color = "rgb(202, 211, 245)";
|
font_color = "rgb(${palette.base05})";
|
||||||
inner_color = "rgb(91, 96, 120)";
|
inner_color = "rgb(${palette.base01})";
|
||||||
outer_color = "rgb(24, 25, 38)";
|
outer_color = "rgb(${palette.base00})";
|
||||||
outline_thickness = 5;
|
outline_thickness = 5;
|
||||||
placeholder_text = "Password...";
|
placeholder_text = "Password...";
|
||||||
shadow_passes = 2;
|
shadow_passes = 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user