Add .config/waybar/_modules/dualsense-notifier.sh
Add .config/waybar/_modules/storage.sh Add .config/waybar/_modules/wittr.sh Add .config/waybar/dracula/colors.css Add .config/waybar/dracula/config Add .config/waybar/dracula/style.css Add .config/waybar/geo/config Add .config/waybar/geo/weather.sh Add .config/waybar/geo/style.css Add .config/waybar/jinks/bak.css Add .config/waybar/jinks/colors.css Add .config/waybar/jinks/config Add .config/waybar/jinks/style.css Add .config/waybar/siren/config Add .config/waybar/siren/style.css Add .config/waybar/sway/config Add .config/waybar/sway/config.save Add .config/waybar/sway/style.css
This commit is contained in:
parent
9fc7bf8ecb
commit
c2f4366fd0
18 changed files with 2122 additions and 0 deletions
329
private_dot_config/waybar/siren/style.css
Normal file
329
private_dot_config/waybar/siren/style.css
Normal file
|
@ -0,0 +1,329 @@
|
|||
* {
|
||||
/* `otf-font-awesome` is required to be installed for icons */
|
||||
/* font-family: Input Mono Light, Input Mono, FontAwesome, SymbolsNerdFont, Roboto, Helvetica, Arial, sans-serif; */
|
||||
/* font-family: JetBrainsMono Nerd Font, FontAwesome, SymbolsNerdFont; */
|
||||
font-family: InputSans Nerd Font ;
|
||||
font-size: 12px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: transparent;
|
||||
color: #aeafb2;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
window#waybar.termite {
|
||||
background-color: #3F3F3F;
|
||||
}
|
||||
|
||||
window#waybar.chromium {
|
||||
background-color: #000000;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
||||
|
||||
#clock,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#disk,
|
||||
#temperature,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#wireplumber,
|
||||
#bluetooth,
|
||||
#tray,
|
||||
#idle_inhibitor,
|
||||
#mpris,
|
||||
#keyboard-state,
|
||||
#battery,
|
||||
#custom-swaync,
|
||||
#custom-storage,
|
||||
#custom-power
|
||||
{
|
||||
padding: 0 7px;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#disk,
|
||||
#temperature,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#wireplumber,
|
||||
#bluetooth,
|
||||
#mpris,
|
||||
#idle_inhibitor
|
||||
{
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background: rgba(49, 60, 84, 0.75);
|
||||
border-radius: 0px;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0 7px 0 0;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: #aeafb2;
|
||||
padding: 0px 4px 0px 4px;
|
||||
margin: 0;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#workspaces button:hover, #workspaces button.active:hover {
|
||||
color: #fff;
|
||||
background: #647aab;
|
||||
box-shadow: inherit;
|
||||
text-shadow: inherit;
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#workspaces button.visible {
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
background-image: -gtk-gradient (linear,
|
||||
0.5 0, 0.5 1,
|
||||
color-stop(0.2, #313c54),
|
||||
color-stop(1, #556892)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #fff000;
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
background-image: -gtk-gradient (linear,
|
||||
0.5 0, 0.5 1,
|
||||
color-stop(0.2, #313c54),
|
||||
color-stop(1, #556892)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #fff;
|
||||
border: 0;
|
||||
border-radius: 0px;
|
||||
background-image: -gtk-gradient (linear,
|
||||
0.5 0, 0.5 1,
|
||||
color-stop(0.2, #313c54),
|
||||
color-stop(1, #eb4d4b)
|
||||
);
|
||||
}
|
||||
|
||||
#window {
|
||||
padding: 0px 7px 0 7px;
|
||||
opacity: 1;
|
||||
color: #dcdcde;
|
||||
text-shadow: 1px 1px 2px #111;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
color: #aeafb2;
|
||||
}
|
||||
|
||||
#idle_inhibitor.activated {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#custom-power,
|
||||
#custom-swaync,
|
||||
#idle_inhibitor,
|
||||
#tray {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#cpu
|
||||
{
|
||||
background-color: #313c54;
|
||||
}
|
||||
|
||||
#memory {
|
||||
background-color: #455c8f;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
background-color: #17243b;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #cf4beb;
|
||||
}
|
||||
|
||||
#disk,
|
||||
#custom-storage
|
||||
{
|
||||
background-color: #38588f;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: #dcdcde;
|
||||
background-color: #37373f;
|
||||
}
|
||||
|
||||
#bluetooth.disabled,
|
||||
#pulseaudio.muted,
|
||||
#wireplumber.muted,
|
||||
#battery.critical,
|
||||
#network.disconnected {
|
||||
color: #f53c3c;
|
||||
}
|
||||
|
||||
#bluetooth.off {
|
||||
color: #909091;
|
||||
}
|
||||
|
||||
#bluetooth,
|
||||
#pulseaudio,
|
||||
#battery,
|
||||
#wireplumber
|
||||
{
|
||||
background-color: #112254;
|
||||
}
|
||||
|
||||
#battery
|
||||
{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#battery.good
|
||||
{
|
||||
color: #aeafb2;
|
||||
}
|
||||
|
||||
#battery.warning
|
||||
{
|
||||
color: #fff000;
|
||||
|
||||
}
|
||||
|
||||
/* arrows */
|
||||
|
||||
#custom-arrow0,
|
||||
#custom-arrow1,
|
||||
#custom-arrow2,
|
||||
#custom-arrow3,
|
||||
#custom-arrow4,
|
||||
#custom-arrow5,
|
||||
#custom-arrow6,
|
||||
#custom-arrow7,
|
||||
#custom-arrow8
|
||||
{
|
||||
margin: 0 0 -1px 0;
|
||||
padding: 1px 0 0 0;
|
||||
opacity: 0.75;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#custom-arrow0 {
|
||||
color: #111;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#custom-arrow1 {
|
||||
color: #313c54;
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
#custom-arrow2 {
|
||||
color: #455c8f;
|
||||
background-color: #313c54;
|
||||
}
|
||||
|
||||
#custom-arrow3 {
|
||||
color: #17243b;
|
||||
background-color: #455c8f;
|
||||
}
|
||||
|
||||
#custom-arrow4 {
|
||||
color: #38588f;
|
||||
background-color: #17243b;
|
||||
}
|
||||
|
||||
#custom-arrow5 {
|
||||
color: #37373f;
|
||||
background-color: #38588f;
|
||||
}
|
||||
|
||||
#custom-arrow6 {
|
||||
color: #112254;
|
||||
background-color: #37373f;
|
||||
}
|
||||
|
||||
#custom-arrow7 {
|
||||
color: #111;
|
||||
background-color: #112254;
|
||||
}
|
||||
|
||||
#custom-arrow8 {
|
||||
color: #313c54;
|
||||
background-color: transparent;
|
||||
margin: 0 0 -2px 0;
|
||||
padding: 0px 0 0 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* unused */
|
||||
/*
|
||||
#language {
|
||||
background: #00b093;
|
||||
color: #740864;
|
||||
padding: 0 5px;
|
||||
margin: 0 5px;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
#mpris {
|
||||
background:#989898;
|
||||
}
|
||||
|
||||
#keyboard-state {
|
||||
background: #455c8f;
|
||||
color: #aeafb2;
|
||||
padding: 0;
|
||||
margin: 0 0 0 5px;
|
||||
min-width: 16px;
|
||||
border-top: 1px solid rgba(25, 25, 25, 0.5);
|
||||
border-bottom: 1px solid rgba(25, 25, 25, 0.5);
|
||||
border-left: 1px solid rgba(25, 25, 25, 0.5);
|
||||
border: 0;
|
||||
border-radius: 20px 0 0 20px;
|
||||
}
|
||||
|
||||
|
||||
#keyboard-state > label {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
#keyboard-state > label.locked {
|
||||
color: #fff;
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue