-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,66 @@ | ||
'' | ||
theme: with theme.colors; '' | ||
* { | ||
/* `otf-font-awesome` is required to be installed for icons */ | ||
font-family: Material Design Icons, Iosevka Nerd Font; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
.module { | ||
border-radius: 12px; | ||
margin: 5px 1px 5px 1px; | ||
background-color: #414559; | ||
padding: 3px 10px; | ||
} | ||
window#waybar { | ||
background-color: #303446; | ||
background-color: #${base}; | ||
border-radius: 0px; | ||
color: #c6d0f5; | ||
font-size: 20px; | ||
color: #${text}; | ||
font-size: 16px; | ||
/* transition-property: background-color; */ | ||
transition-duration: 0.5s; | ||
} | ||
window#waybar.hidden { | ||
opacity: 0.2; | ||
} | ||
#workspaces { | ||
font-size: 15px; | ||
background-color: #414559; | ||
} | ||
#pulseaudio { | ||
color: #a6d189; | ||
color: #${green}; | ||
} | ||
#network { | ||
color: #8caaee; | ||
} | ||
#custom-search, | ||
#clock { | ||
background-color: #414559; | ||
} | ||
#workspaces button { | ||
background-color: transparent; | ||
color: #8caaee; | ||
/* Use box-shadow instead of border so the text isn't offset */ | ||
box-shadow: inset 0 -3px transparent; | ||
} | ||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */ | ||
#workspaces button:hover { | ||
color: #85c1dc; | ||
} | ||
#custom-power { | ||
color: #e78284; | ||
color: #${blue}; | ||
} | ||
#custom-lock { | ||
color: #8caaee; | ||
#backlight { | ||
color: #${yellow}; | ||
} | ||
#workspaces button.active { | ||
color: #e5c890; | ||
#battery { | ||
color: #${green}; | ||
} | ||
#workspaces button.urgent { | ||
background-color: #e78284; | ||
#battery.warning { | ||
color: #${maroon}; | ||
} | ||
#clock, | ||
#network, | ||
#cpu, | ||
#battery, | ||
#backlight, | ||
#memory, | ||
#workspaces, | ||
#custom-search, | ||
#custom-power, | ||
#custom-todo, | ||
#custom-lock, | ||
#custom-weather, | ||
#custom-btc, | ||
#custom-eth, | ||
#volume, | ||
#pulseaudio { | ||
border-radius: 15px; | ||
margin: 0px 7px 0px 7px; | ||
background-color: #414559; | ||
padding: 10px 0px 10px 0px; | ||
#battery.critical:not(.charging) { | ||
color: #${red}; | ||
} | ||
#custom-power { | ||
margin-bottom: 7px; | ||
padding-right: 6px; | ||
} | ||
#custom-search { | ||
background-image: url("${./sakura.png}"); | ||
background-size: 60%; | ||
margin-left: 6px; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
margin-top: 7px; | ||
} | ||
#clock { | ||
font-weight: 700; | ||
font-size: 20px; | ||
padding: 5px 0px 5px 0px; | ||
font-family: "Iosevka Term"; | ||
} | ||
#backlight { | ||
padding-right: 2px; | ||
color: #e5c890; | ||
} | ||
#battery { | ||
color: #a6d189; | ||
margin-right: 6px; | ||
} | ||
#battery.warning { | ||
color: #ef9f76; | ||
} | ||
#battery.critical:not(.charging) { | ||
color: #e78284; | ||
} | ||
tooltip { | ||
font-family: 'Lato', sans-serif; | ||
font-family: sans-serif; | ||
border-radius: 15px; | ||
padding: 20px; | ||
margin: 30px; | ||
} | ||
tooltip label { | ||
font-family: 'Lato', sans-serif; | ||
font-family: sans-serif; | ||
padding: 20px; | ||
} | ||
'' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters