Merge Arch config as main #1

Closed
baobeld wants to merge 228 commits from arch(btw) into master
12 changed files with 38 additions and 42 deletions
Showing only changes of commit e7049c81eb - Show all commits

View file

@ -36,7 +36,8 @@
"clock": { "clock": {
"timezone": "America/New_York", "timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%Y-%m-%d}" "format-alt": "{:%Y-%m-%d}",
"on-click": ""
}, },
"cpu": { "cpu": {
"format": "󰻠 {usage}%", "format": "󰻠 {usage}%",

View file

@ -2,43 +2,33 @@
* Modules groups * Modules groups
*/ */
.modules-left { .modules-left {
padding: 0 2px 0 2px; padding: 0 3px;
border: 1px solid rgba(125, 125, 125, 0.66);
border-radius: 5px; border-radius: 5px;
background: rgba(0, 0, 0, 0.66); background: rgba(0, 0, 0, 0.66);
margin-left: 15px; margin-left: 10px;
animation: fadeIn 2.5s;
} }
.modules-center { .modules-center {
padding: 0 2px 0 2px; padding: 0 3px;
border: 1px solid rgba(125, 125, 125, 0.66);
border-radius: 5px; border-radius: 5px;
background: rgba(0, 0, 0, 0.66); background: rgba(0, 0, 0, 0.66);
animation: fadeIn 2.5s;
} }
.modules-right { .modules-right {
padding: 0 2px 0 2px; padding: 0 3px;
border: 1px solid rgba(125, 125, 125, 0.66);
border-radius: 5px; border-radius: 5px;
background: rgba(0, 0, 0, 0.66); background: rgba(0, 0, 0, 0.66);
margin-right: 15px; margin-right: 10px;
animation: fadeIn 2.5s;
} }
/* @keyframes fadeIn {
* Module widgets 0% { opacity: 0; }
*/ 100% { opacity: 1; }
.modules-left > widget {
} }
.modules-left > widget:first-child {
}
.modules-left > widget:last-child {
}
.modules-right > widget {
}
.modules-right > widget:first-child {
}
.modules-right > widget:last-child {
}

View file

@ -1,9 +1,11 @@
label.module { label.module {
padding: 0 10px; padding: 0 10px;
box-shadow: inset 0 -3px; box-shadow: inset 0 -2px;
transition: color 0.5s ease-in-out;
transition: background-color 0.5s ease-in-out;
} }
box.module { box.module {
padding: 0 10px; padding: 0 10px;
box-shadow: inset 0 -2px;
} }

View file

@ -1,4 +1,4 @@
#clock { #clock {
color: white; color: #8fbcbb;
} }

View file

@ -1,4 +1,4 @@
#cpu { #cpu {
color: white; color: #bf616a;
} }

View file

@ -1,7 +1,8 @@
#idle_inhibitor { #idle_inhibitor {
color: #5e81ac;
} }
#idle_inhibitor.activated { #idle_inhibitor.activated {
background-color: #555; background-color: #d8dee9;
} }

View file

@ -1,4 +1,4 @@
#memory { #memory {
color: white; color: #b48ead;
} }

View file

@ -1,8 +1,8 @@
#network { #network {
color: #2980b9; color: #5e81ac;
} }
#network.disconnected { #network.disconnected {
color: #f53c3c; background-color: #f53c3c;
} }

View file

@ -1,4 +1,3 @@
.custom-spotify { .custom-spotify {
color: #1DB954; color: #1db954;
} }

View file

@ -1,8 +1,8 @@
#temperature { #temperature {
color: #f0932b; color: #d08770;
} }
#temperature.critical { #temperature.critical {
color: #eb4d4b; color: #bf616a;
} }

View file

@ -1,5 +1,5 @@
#wireplumber { #wireplumber {
color: white; color: #a3be8c;
} }
#wireplumber.muted { #wireplumber.muted {

View file

@ -1,6 +1,7 @@
#workspaces { #workspaces {
padding-right: 0px; padding-left: 0;
padding-right: 0;
} }
#workspaces button { #workspaces button {
@ -8,10 +9,12 @@
border: none; border: none;
border-radius: 0px; border-radius: 0px;
box-shadow: inset 0 -3px transparent; box-shadow: inset 0 -3px transparent;
transition: color 0.5s ease;
} }
#workspaces button.active { #workspaces button.active {
color: #5e81ac; color: #5e81ac;
box-shadow: inset 0 -3px #5e81ac;
} }
#workspaces button:hover { #workspaces button:hover {
@ -20,10 +23,10 @@
} }
#workspaces button.focused { #workspaces button.focused {
background-color: #64727d; background-color: #81a1c1;
} }
#workspaces button.urgent { #workspaces button.urgent {
background-color: #eb4d4b; background-color: #bf616a;
} }