Compare commits
No commits in common. "f877e0c55818b8db41e285dc5af4e00ff647e613" and "81f693ce21464bc21564eea326f0b06cfe843465" have entirely different histories.
f877e0c558
...
81f693ce21
9 changed files with 41 additions and 83 deletions
|
@ -1,5 +1,5 @@
|
|||
@import "colors.scss";
|
||||
|
||||
window {
|
||||
background-color: #000000;
|
||||
background-color: $background;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
* {
|
||||
all: unset;
|
||||
transition: 200ms ease-out;
|
||||
color: #c0caf5;
|
||||
color: #cdd6f4;
|
||||
font-family: JetBrainsMono NF Medium;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
@ -18,15 +18,11 @@
|
|||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
#match {
|
||||
padding: 3px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
#match:hover,
|
||||
#match:selected {
|
||||
background: #45475a;
|
||||
padding: 0.6rem;
|
||||
border-radius: 5px;
|
||||
padding: 0.4rem
|
||||
}
|
||||
|
||||
entry#entry {
|
||||
|
@ -35,8 +31,8 @@ entry#entry {
|
|||
}
|
||||
|
||||
box#main {
|
||||
background: #1a1b26;
|
||||
border: 3px solid #f7768e;
|
||||
border-radius: 10px;
|
||||
background: #1e1e2e;
|
||||
border: 3px solid #f5c2e7;
|
||||
border-radius: 12px;
|
||||
padding: 0.3rem;
|
||||
}
|
||||
|
|
|
@ -5,10 +5,10 @@ _: {
|
|||
windowSize = "normal";
|
||||
gui.theme = {
|
||||
lightTheme = false;
|
||||
activeBorderColor = ["#c0caf5" "bold"];
|
||||
activeBorderColor = ["#2ac3de" "bold"];
|
||||
inactiveBorderColor = ["#f7768e"];
|
||||
optionsTextColor = ["#f7768e"];
|
||||
selectedLineBgColor = ["#565f89"];
|
||||
optionsTextColor = [" #c0caf5"];
|
||||
selectedLineBgColor = ["#24283b"];
|
||||
selectedRangeByColor = ["#24283b"];
|
||||
cherryPickedCommitBgColor = ["#94e2d5"];
|
||||
cherryPickedCommitFgColor = ["#89b4fa"];
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
];
|
||||
character = {
|
||||
error_symbol = "[](bold red)";
|
||||
success_symbol = "[](bold white)";
|
||||
success_symbol = "[](bold teal)";
|
||||
};
|
||||
username = {
|
||||
show_always = false;
|
||||
|
@ -63,7 +63,7 @@
|
|||
truncation_length = 3;
|
||||
truncation_symbol = "…/";
|
||||
read_only = "🔒";
|
||||
style = "red";
|
||||
style = "teal";
|
||||
home_symbol = "";
|
||||
};
|
||||
directory.substitutions = {
|
||||
|
@ -77,16 +77,14 @@
|
|||
impure_msg = "[impure shell](bold red)";
|
||||
pure_msg = "[pure shell](bold green)";
|
||||
unknown_msg = "[unknown shell](bold yellow)";
|
||||
format = "[$state( \($name\))](bold white)";
|
||||
format = "via [ $state( \($name\))](bold teal)";
|
||||
};
|
||||
git_branch = {
|
||||
symbol = "";
|
||||
format = "[$symbol $branch ]($style)";
|
||||
style = "white";
|
||||
};
|
||||
git_status = {
|
||||
format = "[$all_status$ahead_behind ]($style)";
|
||||
style = "red";
|
||||
};
|
||||
golang = {
|
||||
symbol = " ";
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
gaps_in = 10;
|
||||
gaps_out = 20;
|
||||
border_size = 4;
|
||||
"col.active_border" = "rgb(f7768e) rgb(c0caf5)";
|
||||
"col.inactive_border" = "rgb(24283b)";
|
||||
"col.active_border" = "rgb(f7768e) rgb(2ac3de)";
|
||||
"col.inactive_border" = "rgb(313244)";
|
||||
|
||||
layout = "dwindle";
|
||||
};
|
||||
|
|
|
@ -2,36 +2,23 @@ _: {
|
|||
programs.hyprlock = {
|
||||
enable = true;
|
||||
backgrounds = let
|
||||
verticalWallpaper = "/home/notoh/Pictures/wallpapers/sparkle.png";
|
||||
horizontalWallpaper = "/home/notoh/Pictures/wallpapers/sparkle2.png";
|
||||
wallpaperPath = "/home/notoh/Pictures/wallpapers/cweam.png";
|
||||
in [
|
||||
{
|
||||
monitor = "HDMI-A-1";
|
||||
path = verticalWallpaper;
|
||||
blur_passes = 3;
|
||||
blur_size = 4;
|
||||
brightness = 0.5;
|
||||
}
|
||||
{
|
||||
monitor = "DP-1";
|
||||
path = verticalWallpaper;
|
||||
blur_passes = 3;
|
||||
blur_size = 4;
|
||||
brightness = 0.5;
|
||||
path = wallpaperPath;
|
||||
}
|
||||
{
|
||||
monitor = "DP-2";
|
||||
path = horizontalWallpaper;
|
||||
blur_passes = 3;
|
||||
blur_size = 4;
|
||||
brightness = 0.5;
|
||||
path = wallpaperPath;
|
||||
}
|
||||
{
|
||||
monitor = "DP-3";
|
||||
path = horizontalWallpaper;
|
||||
blur_passes = 3;
|
||||
blur_size = 4;
|
||||
brightness = 0.5;
|
||||
path = wallpaperPath;
|
||||
}
|
||||
{
|
||||
monitor = "HDMI-A-1";
|
||||
path = wallpaperPath;
|
||||
}
|
||||
];
|
||||
general = {
|
||||
|
@ -44,57 +31,40 @@ _: {
|
|||
{
|
||||
monitor = "DP-2";
|
||||
size = {
|
||||
width = 350;
|
||||
width = 300;
|
||||
height = 50;
|
||||
};
|
||||
outline_thickness = 2;
|
||||
outer_color = "rgb(f7768e)";
|
||||
inner_color = "rgb(1a1b26)";
|
||||
font_color = "rgb(c0caf5)";
|
||||
fail_color = "rgb(f7768e)";
|
||||
fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>";
|
||||
check_color = "rgb(ff9e64)";
|
||||
swap_font_color = false;
|
||||
|
||||
outer_color = "rgb(f5c2e7)";
|
||||
inner_color = "rgb(1e1e2e)";
|
||||
font_color = "rgb(cdd6f4)";
|
||||
placeholder_text = ''
|
||||
<i><span foreground="##c0caf5">Password...</span></i>
|
||||
<span foreground="##cdd6f4">Password...</span>
|
||||
'';
|
||||
fade_on_empty = false;
|
||||
dots_spacing = 0.5;
|
||||
dots_spacing = 0.3;
|
||||
dots_center = true;
|
||||
shadow_passes = 3;
|
||||
shadow_size = 1;
|
||||
shadow_color = "rgba(00000099)";
|
||||
shadow_boost = 1.0;
|
||||
}
|
||||
];
|
||||
labels = [
|
||||
{
|
||||
monitor = "DP-2";
|
||||
text = ''
|
||||
Hi, <i><span foreground="##f7768e">$USER</span></i>
|
||||
'';
|
||||
color = "rgb(c0caf5)";
|
||||
text = "Hi, $USER";
|
||||
color = "rgb(1e1e2e)";
|
||||
valign = "center";
|
||||
halign = "center";
|
||||
shadow_passes = 3;
|
||||
shadow_size = 1;
|
||||
shadow_color = "rgba(00000099)";
|
||||
shadow_boost = 1.0;
|
||||
}
|
||||
{
|
||||
monitor = "DP-2";
|
||||
text = "$TIME";
|
||||
color = "rgb(c0caf5)";
|
||||
color = "rgb(1e1e2e)";
|
||||
position = {
|
||||
x = 0;
|
||||
y = 120;
|
||||
};
|
||||
valign = "center";
|
||||
halign = "center";
|
||||
shadow_passes = 3;
|
||||
shadow_size = 1;
|
||||
shadow_color = "rgba(00000099)";
|
||||
shadow_boost = 0.6;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
beforeSleepCmd = "${pkgs.systemd}/bin/loginctl lock-session";
|
||||
listeners = [
|
||||
{
|
||||
timeout = 400;
|
||||
timeout = 500;
|
||||
onTimeout = "${lib.getExe config.programs.hyprlock.package}";
|
||||
}
|
||||
{
|
||||
timeout = 460;
|
||||
timeout = 560;
|
||||
onTimeout = "${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms off";
|
||||
onResume = "${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms on";
|
||||
}
|
||||
|
|
|
@ -3,15 +3,12 @@ _: {
|
|||
enable = true;
|
||||
ipc = true;
|
||||
splash = false;
|
||||
preloads = [
|
||||
"~/Pictures/wallpapers/sparkle.png"
|
||||
"~/Pictures/wallpapers/sparkle2.png"
|
||||
];
|
||||
preloads = ["~/Pictures/wallpapers/frieren.png"];
|
||||
wallpapers = [
|
||||
"HDMI-A-1,~/Pictures/wallpapers/sparkle.png"
|
||||
"DP-1,~/Pictures/wallpapers/sparkle.png"
|
||||
"DP-2,~/Pictures/wallpapers/sparkle2.png"
|
||||
"DP-3,~/Pictures/wallpapers/sparkle2.png"
|
||||
"HDMI-A-1,~/Pictures/wallpapers/frieren.png"
|
||||
"DP-1,~/Pictures/wallpapers/frieren.png"
|
||||
"DP-2,~/Pictures/wallpapers/frieren.png"
|
||||
"DP-3,~/Pictures/wallpapers/frieren.png"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -20,16 +20,13 @@
|
|||
headerStyle = "boxedWidgets";
|
||||
disableCollape = true;
|
||||
favicon = "https://em-content.zobj.net/source/twitter/376/cloud_2601-fe0f.png";
|
||||
background = "https://i.imgur.com/uU6Jbum.jpg";
|
||||
cardBlur = "md";
|
||||
theme = "dark";
|
||||
color = "gray";
|
||||
fiveColumns = true;
|
||||
statusStyle = "dot";
|
||||
hideVersion = true;
|
||||
background = {
|
||||
image = "https://i.imgur.com/YLX96sC.jpeg";
|
||||
brightness = 75;
|
||||
};
|
||||
providers = {
|
||||
openweathermap = "{{HOMEPAGE_VAR_OPENWEATHERMAP}}";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue