pain and suffering
This commit is contained in:
commit
510db0f1d4
42 changed files with 2150 additions and 0 deletions
187
config/waybar/style.css
Normal file
187
config/waybar/style.css
Normal file
|
|
@ -0,0 +1,187 @@
|
|||
/* =============================================================================
|
||||
*
|
||||
* Waybar configuration
|
||||
*
|
||||
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
|
||||
*
|
||||
* =========================================================================== */
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Keyframes
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
/*
|
||||
Polar Night
|
||||
nord0 #2e3440
|
||||
nord1 #3b4252
|
||||
nord2 #434c5e
|
||||
nord3 #4c566a
|
||||
Snow Storm
|
||||
nord4 #d8dee9
|
||||
nord5 #e5e9f0
|
||||
nord6 #eceff4
|
||||
Frost
|
||||
nord7 #8fbcbb
|
||||
nord8 #88c0d0
|
||||
nord9 #81a1c1
|
||||
nord10 #5e81ac
|
||||
Aurora
|
||||
nord11 #bf616a
|
||||
nord12 #d08770
|
||||
nord13 #ebcb8b
|
||||
nord14 #a3be8c
|
||||
nord15 #b48ead
|
||||
*/
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Base styles
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
/* Reset all styles */
|
||||
|
||||
* {
|
||||
color:#a3be8c;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
padding: 0 0;
|
||||
font-family:Symbols Nerd Font Mono;
|
||||
font-size: 15px;
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background:rgba (0, 0, 0, 0.5);
|
||||
border-radius: 20px 20px 20px 20px;
|
||||
color: #D3869B;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 2px 0px;
|
||||
border-bottom: 2px;
|
||||
color: #D3869B;
|
||||
border-color: #d8dee9;
|
||||
border-style: solid;
|
||||
margin-top:2px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
border-color: #D3869B;
|
||||
}
|
||||
|
||||
#clock, #battery, #cpu, #memory,#idle_inhibitor, #temperature,#custom-keyboard-layout, #backlight, #network, #pulseaudio, #tray, #window,#custom-launcher,#custom-power,#custom-updates ,#custom-network_traffic,#custom-weather{
|
||||
padding: 0 3px;
|
||||
border-bottom: 2px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Module styles
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
#clock {
|
||||
color:#a3be8c;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
color: #ebcb8b;
|
||||
}
|
||||
|
||||
#battery {
|
||||
color: #d8dee9;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: #81a1c1;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #4c566a;
|
||||
background-color: #eceff4;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background: #bf616a;
|
||||
color: #eceff4;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color:#a3be8c ;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: #d3869b;
|
||||
}
|
||||
|
||||
#network.disabled {
|
||||
color:#bf616a;
|
||||
}
|
||||
|
||||
#network{
|
||||
color:#a3be8c;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
color: #bf616a;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #b48ead;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: #3b4252;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
color: #8fbcbb;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #bf616a;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
color: #ebcb8b;
|
||||
}
|
||||
|
||||
#tray {
|
||||
}
|
||||
|
||||
#custom-launcher{
|
||||
font-size: 20px;
|
||||
background-image: url('/home/tulg/.config/waybar/launcher.png');
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
border-style: hidden;
|
||||
}
|
||||
|
||||
#custom-power{
|
||||
border-style: hidden;
|
||||
margin-top:2px;
|
||||
}
|
||||
|
||||
#window{
|
||||
border-style: hidden;
|
||||
margin-top:1px;
|
||||
color: #D3869B;
|
||||
}
|
||||
#custom-keyboard-layout{
|
||||
color:#d08770;
|
||||
}
|
||||
#custom-network_traffic{
|
||||
color:#d08770;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue