Initial Commit

This commit is contained in:
2025-08-09 00:03:40 +02:00
commit 1688bd8309
26 changed files with 2015 additions and 0 deletions

150
waybar/style.css.bak Normal file
View File

@@ -0,0 +1,150 @@
@import "macchiato.css";
* {
/* `otf-font-awesome` is required to be installed for icons */
font-family: HackNerdFont;
font-size: 14px;
}
window#waybar {
background-color: #1E1E2E;
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.2;
}
/*
window#waybar.empty {
background-color: transparent;
}
window#waybar.solo {
background-color: #FFFFFF;
}
*/
window#waybar.termite {
background-color: #3F3F3F;
}
window#waybar.chromium {
background-color: #000000;
border: none;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each button name */
border: none;
border-radius: 0;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button {
padding: 0px 10px;
border-radius: 5em / 5em;
background-color: @surface0;
color: @rosewater;
margin: 2px;
font-weight: bold;
}
#cpu,
#pulseaudio,
.media {
padding: 0 10px;
color: @mauve;
font-weight: bold;
margin: 2px;
}
#custom-gpu-usage {
padding: 0 10px;
color: @red;
font-weight: bold;
margin: 2px;
}
#memory {
color: @yellow;
}
#window,
#workspaces {
margin: 0 5px;
background-color: transparent;
font-weight:bold;
border-radius: 5em / 5em;
padding: 0 10px;
color: #444854;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces button {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#clock {
border-top-right-radius: 5em 5em;
border-bottom-right-radius: 5em 5em;
color: @sky;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
label:focus {
background-color: #000000;
}
#pulseaudio {
border-top-left-radius: 5em 5em;
border-bottom-left-radius: 5em 5em;
color: @red;
}
#pulseaudio.muted {
background-color: #90b1b1;
color: #2a5c45;
}
#temperature.critical {
background-color: #eb4d4b;
}
#temperature {
color: @green;
}
#keyboard-state {
padding: 0 0px;
min-width: 16px;
color: @mauve;
}
#keyboard-state > label {
padding: 0 5px;
}
#keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2);
}