Skip to content

Commit

Permalink
fix: use sans & nerdfont
Browse files Browse the repository at this point in the history
  • Loading branch information
M0NsTeRRR committed Sep 26, 2024
1 parent 2c8e5e3 commit 54db9cb
Show file tree
Hide file tree
Showing 19 changed files with 71 additions and 54 deletions.
2 changes: 1 addition & 1 deletion home/config/hypr/hyprlock.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source = ~/.config/hypr/macchiato.conf

$accent = $mauve
$accentAlpha = $mauveAlpha
$font = JetBrainsMono Nerd Font
$font = Sans

# GENERAL
general {
Expand Down
2 changes: 1 addition & 1 deletion home/config/swaync/macchiato.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
* {
all: unset;
font-size: 14px;
font-family: "JetBrainsMono Nerd Font";
font-family: "Sans";
transition: 200ms;
}

Expand Down
Binary file added home/config/wlogout/icons/hibernate-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified home/config/wlogout/icons/hibernate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/config/wlogout/icons/lock-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified home/config/wlogout/icons/lock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/config/wlogout/icons/logout-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified home/config/wlogout/icons/logout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/config/wlogout/icons/power.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed home/config/wlogout/icons/reboot.png
Binary file not shown.
Binary file added home/config/wlogout/icons/restart-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/config/wlogout/icons/restart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed home/config/wlogout/icons/shutdown.png
Binary file not shown.
Binary file added home/config/wlogout/icons/sleep-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/config/wlogout/icons/sleep.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed home/config/wlogout/icons/suspend.png
Binary file not shown.
2 changes: 1 addition & 1 deletion home/config/wlogout/layout
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"text" : "",
"keybind" : "h"
}
{
Expand Down
116 changes: 66 additions & 50 deletions home/config/wlogout/style.css
Original file line number Diff line number Diff line change
@@ -1,50 +1,66 @@
* {
background-image: none;
}

window {
background-color: rgba(36, 39, 58, 0.9);
}

button {
margin: 8px;
color: #cad3f5;
background-color: #363a4f;
border-style: solid;
border-width: 2px;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
}

button:active,
button:focus,
button:hover {
color: #8bd5ca;
background-color: #24273a;
outline-style: none;
}

#lock {
background-image: image(url("icons/lock.png"));
}

#logout {
background-image: image(url("icons/logout.png"));
}

#suspend {
background-image: image(url("icons/suspend.png"));
}

#hibernate {
background-image: image(url("icons/hibernate.png"));
}

#shutdown {
background-image: image(url("icons/shutdown.png"));
}

#reboot {
background-image: image(url("icons/reboot.png"));
}
window {
font-family: "Sans";
font-size: 14pt;
color: #cdd6f4; /* text */
background-color: rgba(30, 30, 46, 0.5);
}

button {
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
border: none;
background-color: rgba(30, 30, 46, 0);
margin: 5px;
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

button:hover {
background-color: rgba(49, 50, 68, 0.1);
}

button:focus {
background-color: #cba6f7;
color: #1e1e2e;
}

#lock {
background-image: image(url("icons/lock.png"));
}
#lock:focus {
background-image: image(url("icons/lock-hover.png"));
}

#logout {
background-image: image(url("icons/logout.png"));
}
#logout:focus {
background-image: image(url("icons/logout-hover.png"));
}

#suspend {
background-image: image(url("icons/sleep.png"));
}
#suspend:focus {
background-image: image(url("icons/sleep-hover.png"));
}

#shutdown {
background-image: image(url("icons/power.png"));
}
#shutdown:focus {
background-image: image(url("icons/power-hover.png"));
}

#reboot {
background-image: image(url("icons/restart.png"));
}
#reboot:focus {
background-image: image(url("icons/restart-hover.png"));
}
#hibernate {
background-image: image(url("icons/hibernate.png"));
}
#hibernate:focus {
background-image: image(url("icons/hibernate-hover.png"));
}
3 changes: 2 additions & 1 deletion home/user/programs/kitty.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ pkgs, ...}:
{
programs.kitty = {
enable = true;
font = "JetBrainsMono Nerd Font";
font.name = "JetBrainsMono Nerd Font";
};
}

0 comments on commit 54db9cb

Please sign in to comment.