New backup 2025-07-18 11:45:02
This commit is contained in:
parent
42a62affa5
commit
785861cbaf
2 changed files with 17 additions and 6 deletions
|
@ -117,13 +117,24 @@ circular-progress {
|
|||
min-width: $bar-module-width;
|
||||
&:hover {
|
||||
text-shadow: $bar-module-hover-shadow;
|
||||
// box-shadow: 0px 0px 3px 1px green;
|
||||
// transition: text-shadow 1s;
|
||||
transition: all 0.3s;
|
||||
// background-color: rgba($color1,0.5);
|
||||
// border: 1px solid $bar-module-fg-color;
|
||||
}
|
||||
}
|
||||
|
||||
.reveal_children>button {
|
||||
image {
|
||||
opacity: 0.5;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
&:hover image {
|
||||
opacity: 1;
|
||||
box-shadow: 0px 0px 5px green;
|
||||
// transition: all 0.3s;
|
||||
}
|
||||
}
|
||||
|
||||
.reveal_children>box,
|
||||
.reveal_children>widget,
|
||||
.reveal_children>button {
|
||||
|
@ -174,8 +185,8 @@ label {
|
|||
.workspaces button:hover,
|
||||
.rightgroup button:hover,
|
||||
.leftgroup button:hover {
|
||||
text-shadow: 1px 1px 1px rgba($color2,1);
|
||||
// text-shadow: $bar-module-hover-shadow;
|
||||
// text-shadow: 1px 1px 1px rgba($color2,1);
|
||||
text-shadow: $bar-module-hover-shadow;
|
||||
color: $bar-hover-fg-color;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
:revealvar reveal_bluetooth
|
||||
:revealvar-name "reveal_bluetooth"
|
||||
(button :onclick 'blueman-manager'
|
||||
:class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : ""}
|
||||
:class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : "inactive"}
|
||||
"")
|
||||
(bluetooth_children :array bluetooth_status)))
|
||||
|
||||
|
@ -16,5 +16,5 @@
|
|||
|
||||
(for device in array
|
||||
(button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'}
|
||||
:class {(device.connected == "yes") ? "active" : ""}
|
||||
:class {(device.connected == "yes") ? "active" : "inactive"}
|
||||
"${device.icon}"))))
|
||||
|
|
Loading…
Add table
Reference in a new issue