Former-commit-id: 905cc9a885
This commit is contained in:
Hadi
2024-10-06 18:49:52 +02:00
parent 13c8f27411
commit 18c30e5931
75 changed files with 326 additions and 1325 deletions

View File

@@ -1,5 +1,6 @@
{ config, ... }: {
{ config, ... }:
let foreground = "rgba(216, 222, 233, 0.70)";
in {
programs.hyprlock = {
enable = true;
settings = {
@@ -12,10 +13,10 @@
# BACKGROUND
background = {
monitor = "";
path = "~/wallpapers/${config.var.theme.wallpaper}";
path = toString config.stylix.image;
blur_passes = 0;
contrast = 0.8916;
brightness = 0.8172;
brightness = 0.7172;
vibrancy = 0.1696;
vibrancy_darkness = 0.0;
};
@@ -25,9 +26,9 @@
# Day-Month-Date
monitor = "";
text = ''cmd[update:1000] echo -e "$(date +"%A, %B %d")"'';
color = "rgba(216, 222, 233, .7)";
color = foreground;
font_size = 28;
font_family = "SFProDisplay Nerd Font Bold";
font_family = config.stylix.fonts.serif.name + " Bold";
position = "0, 490";
halign = "center";
valign = "center";
@@ -36,7 +37,7 @@
{
monitor = "";
text = ''cmd[update:1000] echo "<span>$(date +"%I:%M")</span>"'';
color = "rgba(216, 222, 233, .7)";
color = foreground;
font_size = 160;
font_family = "steelfish outline regular";
position = "0, 370";
@@ -47,34 +48,19 @@
{
monitor = "";
text = " $USER";
color = "rgba(216, 222, 233, 0.80)";
color = foreground;
outline_thickness = 2;
dots_size = 0.2; # Scale of input-field height, 0.2 - 0.8
dots_spacing = 0.2; # Scale of dots' absolute size, 0.0 - 1.0
dots_center = true;
font_size = 18;
font_family = "SFProDisplay Nerd Font Bold";
font_family = config.stylix.fonts.serif.name + " Bold";
position = "0, -180";
halign = "center";
valign = "center";
}
];
# Foreground
# image = [{
# monitor = "";
# path = "~/.config/hypr/foreground.png";
# size = 700;
# border_size = 0;
# rounding = 0;
# rotate = 0;
# reload_time = 0;
# reload_cmd = "";
# position = "0, -66";
# halign = "center";
# valign = "center";
# }];
# INPUT FIELD
input-field = [{
monitor = "";
@@ -85,11 +71,10 @@
dots_center = true;
outer_color = "rgba(255, 255, 255, 0)";
inner_color = "rgba(255, 255, 255, 0.1)";
font_color = "rgb(200, 200, 200)";
font_color = foreground;
fade_on_empty = false;
font_family = "SFProDisplay Nerd Font Bold";
placeholder_text =
''<i><span foreground="##ffffff99">🔒 Enter Pass</span></i>'';
font_family = config.stylix.fonts.serif.name + " Bold";
placeholder_text = "<i>🔒 Enter Pass</i>";
hide_input = false;
position = "0, -250";
halign = "center";