New backup 2025-07-02 09:00:04

This commit is contained in:
Penelope Gwen 2025-07-02 09:00:04 -07:00
commit e925801522
33 changed files with 224 additions and 125 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 857 KiB

After

Width:  |  Height:  |  Size: 526 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -8,3 +8,7 @@ exec_always 'sleep 1;eww open --screen "Unknown" bar'
exec_always 'sleep 1;eww open --screen "Unknown" home' exec_always 'sleep 1;eww open --screen "Unknown" home'
#exec_always "killall sway-wallpaper;$HOME/.config/sway/scripts/sway-wallpaper" #exec_always "killall sway-wallpaper;$HOME/.config/sway/scripts/sway-wallpaper"
workspace {
1:$profile_icon output eDP-1
}

View file

@ -22,12 +22,6 @@ $bar-module-border-radius: 8px;
font-size: 1em; font-size: 1em;
padding: 10px 0px; padding: 10px 0px;
margin: 0px 15px; margin: 0px 15px;
>box>button {
&:hover{
background-color: $bar-hover-bg-color;
color: $bar-hover-fg-color;
}
}
//bar groups //bar groups
.leftgroup, .leftgroup,
@ -38,11 +32,34 @@ $bar-module-border-radius: 8px;
} }
//group modules //group modules
.leftgroup>*, .leftgroup>box:not(.workspaces):not(.revealer-on-hover),
.leftgroup>button,
.centergroup>*, .centergroup>*,
.rightgroup>* { .rightgroup>*:not(.revealer-on-hover) {
margin: 5px; margin: 5px;
min-width: $bar-module-width; min-width: $bar-module-width;
background-color: $bar-module-bg-color;
padding: 0px 10px;
}
.revealer-on-hover {
margin: 5px;
min-width: $bar-module-width;
background-color: $bar-module-bg-color;
>widget>box>box label {
padding: 0px 10px;
}
.reveal_children label {
padding: 0px 5px;
}
}
.workspaces>button {
margin: 5px 0px;
background-color: $bar-module-bg-color;
min-width: $bar-module-width;
> label {
padding: 0px 10px;
}
} }
//value bars //value bars
@ -67,7 +84,6 @@ circular-progress {
} }
.revealer-on-hover { .revealer-on-hover {
// background-color: $bar-module-bg-color;
color: $bar-module-fg-color; color: $bar-module-fg-color;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }
@ -75,37 +91,35 @@ circular-progress {
.revealer-on-hover>widget>box>revealer>box>box>*, .revealer-on-hover>widget>box>revealer>box>box>*,
.reveal_children>*, .reveal_children>*,
.reveal_children>widget>image { .reveal_children>widget>image {
background-color: $bar-module-bg-color; // background-color: $bar-module-bg-color;
padding: 3px 4px; padding: 3px 4px;
min-width: $bar-module-width; min-width: $bar-module-width;
&:hover { &:hover {
background-color: rgba($color1,0.5); background-color: rgba($color1,0.5);
} }
} }
.revealer-on-hover>widget>box>box>*{
border-radius:$bar-module-border-radius;
}
.reveal_children>box, .reveal_children>box,
.reveal_children>widget, .reveal_children>widget,
.reveal_children>button { .reveal_children>button {
border-left: 1px solid $bar-bg-color; border-left: 1px solid $bar-bg-color;
// border-radius:$bar-module-border-radius;
} }
.rightgroup>label, .rightgroup>label,
.rightgroup>button, .rightgroup>button {
//.rightgroup>.revealer-on-hover>widget>box>revealer>button, //.rightgroup .reveal_children>button,
.rightgroup .reveal_children>button, //.rightgroup>.revealer-on-hover>widget>box>box>button {
.rightgroup>.revealer-on-hover>widget>box>box>button {
background-color: $bar-module-bg-color;
color: $bar-module-inactive-fg-color; color: $bar-module-inactive-fg-color;
padding: 3px 4px; padding: 3px 4px;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }
/*.leftgroup>.revealer-on-hover>widget>box>box>button {
padding: 3px 4px;
border-radius: $bar-module-border-radius;
}*/
.music, .music,
.profile,
.rightgroup>label, .rightgroup>label,
.active_window{ .active_window{
background-color: $bar-module-bg-color;
color: $bar-module-fg-color; color: $bar-module-fg-color;
padding: 3px 4px; padding: 3px 4px;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
@ -113,23 +127,27 @@ circular-progress {
label { label {
margin-top: 2px; margin-top: 2px;
} }
.workspaces { .workspaces,
// background-color: $bar-module-bg-color; .profile {
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }
.workspaces button { .workspaces button,
background-color: $bar-module-bg-color; .leftgroup button {
// background-color: $bar-module-bg-color;
border-left: 1px solid $bar-bg-color; border-left: 1px solid $bar-bg-color;
color: $bar-module-fg-color; color: $bar-module-fg-color;
padding: 3px 4px; padding: 3px 4px;
min-width: $bar-module-width; min-width: $bar-module-width;
} }
.workspaces button:hover { .workspaces button:hover,
.rightgroup button:hover,
.leftgroup button:hover {
background-color: $bar-hover-bg-color; background-color: $bar-hover-bg-color;
color: $bar-hover-fg-color; color: $bar-hover-fg-color;
transition-property: background-color; transition-property: background-color;
transition-duration: .25s; transition-duration: .25s;
} }
.workspaces .focused{ .workspaces .focused{
color: $bar-module-fg-color; color: $bar-module-fg-color;
text-shadow: $bar-module-active-shadow; text-shadow: $bar-module-active-shadow;
@ -139,18 +157,27 @@ button.active {
color: $bar-module-fg-color; color: $bar-module-fg-color;
} }
.workspaces button:first-child, .workspaces button:first-child,
.reveal_children>box:first-child, //.reveal_children>box:first-child,
.reveal_children>scale:first-child, //.reveal_children>scale:first-child,
.reveal_children>progressbar:first-child, //.reveal_children>progressbar:first-child,
.reveal_children>button:first-child, //.reveal_children>button:first-child,
.reveal_children>widget:first-child { .reveal_children>widget:first-child {
margin-left: 3px; margin-left: 3px;
border-radius:$bar-module-border-radius 0px 0px $bar-module-border-radius; border-radius:$bar-module-border-radius 0px 0px $bar-module-border-radius;
border-left: 0px solid $bar-bg-color; border-left: 0px solid $bar-bg-color;
} }
<<<<<<< HEAD
.revealer-on-hover>widget>box>revealer>box>box>box{ .revealer-on-hover>widget>box>revealer>box>box>box{
=======
//.revealer-on-hover>widget>box>revealer>box>box>button {
.rightgroup>.revealer-on-hover>widget>box>box>button,
.leftgroup>.revealer-on-hover>widget>box>box>button {
>>>>>>> f5a1d6f7653fde497fb7c26cc48614f6a264b80b
border-radius: 8px; border-radius: 8px;
&:hover {
border-radius:$bar-module-border-radius 0px 0px $bar-module-border-radius;
}
} }
.workspaces button:last-child, .workspaces button:last-child,
@ -162,10 +189,10 @@ button.active {
border-radius:0px $bar-module-border-radius $bar-module-border-radius 0px; border-radius:0px $bar-module-border-radius $bar-module-border-radius 0px;
} }
.workspaces button:only-child, .workspaces button:only-child,
.reveal_children>box:only-child, //.reveal_children>box:only-child,
.reveal_children>scale:only-child, //.reveal_children>scale:only-child,
.reveal_children>progressbar:only-child, //.reveal_children>progressbar:only-child,
.reveal_children>button:only-child, //.reveal_children>button:only-child,
.reveal_children>widget:only-child { .reveal_children>widget:only-child {
border-radius:$bar-module-border-radius; border-radius:$bar-module-border-radius;
} }
@ -199,54 +226,73 @@ tooltip{
border: 2px solid rgba($color0,0.5); border: 2px solid rgba($color0,0.5);
border-radius: 8px; border-radius: 8px;
} }
$home-widget-bg-color: rgba($color0,0.7);
$home-widget-border-radius: 8px;
$home-button-border-radius: 6px;
$home-button-circle-border-radius: 30px;
$home-button-bg-color: rgba($color5, 0.15);
$home-button-fg-opacity: 1;
$home-button-fg-color: rgba($color5,$home-button-fg-opacity);
$home-widget-subtitle-color: rgba($color7,0.6);
$home-button-hover-bg-color: rgba($color1, 0.5);
$home-widget-border-color: rgba($color5,1);
.home { .home {
> box { > box {
border-radius: 8px; border-radius: $home-widget-border-radius;
box-shadow: inset 0 0 0px 3px rgba($color1,0.75); box-shadow: inset 0 0 0px 3px $home-widget-border-color;
} }
.rat { .rat {
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
.weather { .weather {
background-color: rgba($color0,0.5); background-color: $home-widget-bg-color;
padding: 10px 0px; color: $home-button-fg-color;
padding: 10px;
// padding: 10px 0px;
.weather-subtitle{ .weather-subtitle{
font-size: 0.8em; font-size: 0.8em;
color: rgba($color7,1); color: $home-widget-subtitle-color;
} }
} }
.notes { .notes {
background-color: rgba($color0,0.5); background-color: $home-widget-bg-color;
color: $home-button-fg-color;
padding: 10px; padding: 10px;
button { button {
background-color: rgba($color9,0.5); background-color: $home-button-bg-color;
border-radius: 6px; border-radius: $home-button-border-radius;
padding: 4px 8px; padding: 4px 8px;
margin: 4px; margin: 4px;
box { box {
.timestamp { .timestamp {
font-size: 0.8em; font-size: 0.8em;
margin-top: 6px; margin-top: 6px;
color: rgba($color7,1) color: $home-widget-subtitle-color;
} }
} }
image {
opacity: $home-button-fg-opacity;
}
} }
button:hover { button:hover {
background-color: rgba($color9,0.65); background-color: $home-button-hover-bg-color;
} }
} }
.shortcuts { .shortcuts {
background-color: rgba($color0,0.5); background-color: $home-widget-bg-color;
color: $home-button-fg-color;
padding: 15px; padding: 15px;
button { button {
background-color: rgba($color9,0.5); background-color: $home-button-bg-color;
border-radius: 30px; border-radius: $home-button-circle-border-radius;
margin: 5px; margin: 5px;
font-size: 1.2em; font-size: 1.2em;
} }
button:hover { button:hover {
background-color: rgba($color9,0.65) background-color: $home-button-hover-bg-color;
} }
} }
} }

View file

@ -33,5 +33,5 @@
<path <path
d="m 6,20.727273 q -2.4872727,0 -4.2436364,-1.712728 Q 0,17.290909 0,14.814545 0,12.687273 1.2763636,11.018182 2.5636364,9.3490908 4.6363636,8.890909 5.3236364,6.381818 7.3636364,4.8327271 9.4145455,3.2727272 12,3.2727272 q 3.196364,0 5.410909,2.2254544 2.225455,2.2145455 2.225455,5.4109094 1.887272,0.218182 3.12,1.636364 Q 24,13.941818 24,15.818182 q 0,2.050909 -1.429091,3.48 -1.429091,1.429091 -3.48,1.429091 z" d="m 6,20.727273 q -2.4872727,0 -4.2436364,-1.712728 Q 0,17.290909 0,14.814545 0,12.687273 1.2763636,11.018182 2.5636364,9.3490908 4.6363636,8.890909 5.3236364,6.381818 7.3636364,4.8327271 9.4145455,3.2727272 12,3.2727272 q 3.196364,0 5.410909,2.2254544 2.225455,2.2145455 2.225455,5.4109094 1.887272,0.218182 3.12,1.636364 Q 24,13.941818 24,15.818182 q 0,2.050909 -1.429091,3.48 -1.429091,1.429091 -3.48,1.429091 z"
id="path1" id="path1"
style="stroke-width:1.09091;fill:#ffffff;fill-opacity:1" /> style="stroke-width:1.09091;fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="M 1.2,14.4 V 2.4 A 2.4,2.4 0 0 1 3.6,0 h 7.2 l 2.4,2.4 h 7.2 a 2.4,2.4 0 0 1 2.4,2.4 v 9.6 a 2.4,2.4 0 0 1 -2.4,2.4 h -7.2 v 2.4 h 1.2 a 1.2,1.2 0 0 1 1.2,1.2 H 24 v 2.4 H 15.6 A 1.2,1.2 0 0 1 14.4,24 H 9.6 A 1.2,1.2 0 0 1 8.4,22.8 H 0 v -2.4 h 8.4 a 1.2,1.2 0 0 1 1.2,-1.2 h 1.2 V 16.8 H 3.6 A 2.4,2.4 0 0 1 1.2,14.4 Z" d="M 1.2,14.4 V 2.4 A 2.4,2.4 0 0 1 3.6,0 h 7.2 l 2.4,2.4 h 7.2 a 2.4,2.4 0 0 1 2.4,2.4 v 9.6 a 2.4,2.4 0 0 1 -2.4,2.4 h -7.2 v 2.4 h 1.2 a 1.2,1.2 0 0 1 1.2,1.2 H 24 v 2.4 H 15.6 A 1.2,1.2 0 0 1 14.4,24 H 9.6 A 1.2,1.2 0 0 1 8.4,22.8 H 0 v -2.4 h 8.4 a 1.2,1.2 0 0 1 1.2,-1.2 h 1.2 V 16.8 H 3.6 A 2.4,2.4 0 0 1 1.2,14.4 Z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.2" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -32,5 +32,5 @@
<path <path
d="M 17.454545,8.7272727 H 7.6363636 V 6.5454545 H 17.454545 V 8.7272727 M 6.5454545,6.5454545 H 4.3636364 V 8.7272727 H 6.5454545 V 6.5454545 m 0,-3.2727272 H 4.3636364 V 5.4545455 H 6.5454545 V 3.2727273 m 3.2727273,0 H 7.6363636 V 5.4545455 H 9.8181818 V 3.2727273 M 13.090909,17.454545 v 2.181819 h 1.090909 c 0.6,0 1.090909,0.490909 1.090909,1.090909 h 7.636364 v 2.181818 h -7.636364 c 0,0.6 -0.490909,1.090909 -1.090909,1.090909 H 9.8181818 c -0.6,0 -1.0909091,-0.490909 -1.0909091,-1.090909 H 1.0909091 v -2.181818 h 7.6363636 c 0,-0.6 0.4909091,-1.090909 1.0909091,-1.090909 H 10.909091 V 17.454545 H 3.2727273 c -1.2109091,0 -2.1818182,-0.970909 -2.1818182,-2.181818 V 2.1818182 C 1.0909091,0.97090909 2.0727273,0 3.2727273,0 H 20.727273 c 1.210909,0 2.181818,0.97090909 2.181818,2.1818182 V 15.272727 c 0,1.210909 -0.970909,2.181818 -2.181818,2.181818 h -7.636364 m 7.636364,-2.181818 V 2.1818182 H 3.2727273 V 15.272727 H 20.727273 M 10.909091,5.4545455 h 8.727273 V 3.2727273 H 10.909091 V 5.4545455 M 4.3636364,12 H 10.909091 V 9.8181818 H 4.3636364 V 12 m 8.7272726,2.181818 h 6.545455 V 12 h -6.545455 z" d="M 17.454545,8.7272727 H 7.6363636 V 6.5454545 H 17.454545 V 8.7272727 M 6.5454545,6.5454545 H 4.3636364 V 8.7272727 H 6.5454545 V 6.5454545 m 0,-3.2727272 H 4.3636364 V 5.4545455 H 6.5454545 V 3.2727273 m 3.2727273,0 H 7.6363636 V 5.4545455 H 9.8181818 V 3.2727273 M 13.090909,17.454545 v 2.181819 h 1.090909 c 0.6,0 1.090909,0.490909 1.090909,1.090909 h 7.636364 v 2.181818 h -7.636364 c 0,0.6 -0.490909,1.090909 -1.090909,1.090909 H 9.8181818 c -0.6,0 -1.0909091,-0.490909 -1.0909091,-1.090909 H 1.0909091 v -2.181818 h 7.6363636 c 0,-0.6 0.4909091,-1.090909 1.0909091,-1.090909 H 10.909091 V 17.454545 H 3.2727273 c -1.2109091,0 -2.1818182,-0.970909 -2.1818182,-2.181818 V 2.1818182 C 1.0909091,0.97090909 2.0727273,0 3.2727273,0 H 20.727273 c 1.210909,0 2.181818,0.97090909 2.181818,2.1818182 V 15.272727 c 0,1.210909 -0.970909,2.181818 -2.181818,2.181818 h -7.636364 m 7.636364,-2.181818 V 2.1818182 H 3.2727273 V 15.272727 H 20.727273 M 10.909091,5.4545455 h 8.727273 V 3.2727273 H 10.909091 V 5.4545455 M 4.3636364,12 H 10.909091 V 9.8181818 H 4.3636364 V 12 m 8.7272726,2.181818 h 6.545455 V 12 h -6.545455 z"
id="path1" id="path1"
style="stroke-width:1.09091;fill:#ffffff;fill-opacity:1" /> style="stroke-width:1.09091;fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -14,7 +14,7 @@
<sodipodi:namedview <sodipodi:namedview
id="namedview1" id="namedview1"
pagecolor="#505050" pagecolor="#505050"
bordercolor="#ffffff" bordercolor="#d7afaf"
borderopacity="1" borderopacity="1"
inkscape:showpageshadow="0" inkscape:showpageshadow="0"
inkscape:pageopacity="0" inkscape:pageopacity="0"
@ -33,5 +33,5 @@
<path <path
d="m 19.008,17.878 h -2.244 v -7.38 h 2.244 v 7.38 M 19.2,7.846 c 0,0.732 -0.6,1.332 -1.32,1.332 A 1.332,1.332 0 0 1 16.548,7.846 c 0,-0.744 0.6,-1.344 1.332,-1.344 0.72,0 1.32,0.6 1.32,1.344 m 4.584,10.032 h -2.256 v -7.38 h 2.256 v 7.38 M 24,7.846 c 0,0.732 -0.6,1.332 -1.344,1.332 A 1.332,1.332 0 0 1 21.324,7.846 c 0,-0.744 0.6,-1.344 1.332,-1.344 0.744,0 1.344,0.6 1.344,1.344 M 13.08,7.21 h 2.4 l -2.544,8.94 c 0,0 -0.336,1.848 -1.8,1.848 -1.452,0 -1.788,-1.848 -1.788,-1.848 L 7.74,10.318 6.132,16.15 c 0,0 -0.348,1.848 -1.8,1.848 -1.452,0 -1.788,-1.848 -1.788,-1.848 L 0,7.21 H 2.4 L 4.464,15.154 6.132,8.71 C 6.516,7.09 7.74,7.114 7.74,7.114 c 0,0 1.224,-0.024 1.608,1.596 l 1.656,6.444 z" d="m 19.008,17.878 h -2.244 v -7.38 h 2.244 v 7.38 M 19.2,7.846 c 0,0.732 -0.6,1.332 -1.32,1.332 A 1.332,1.332 0 0 1 16.548,7.846 c 0,-0.744 0.6,-1.344 1.332,-1.344 0.72,0 1.32,0.6 1.32,1.344 m 4.584,10.032 h -2.256 v -7.38 h 2.256 v 7.38 M 24,7.846 c 0,0.732 -0.6,1.332 -1.344,1.332 A 1.332,1.332 0 0 1 21.324,7.846 c 0,-0.744 0.6,-1.344 1.332,-1.344 0.744,0 1.344,0.6 1.344,1.344 M 13.08,7.21 h 2.4 l -2.544,8.94 c 0,0 -0.336,1.848 -1.8,1.848 -1.452,0 -1.788,-1.848 -1.788,-1.848 L 7.74,10.318 6.132,16.15 c 0,0 -0.348,1.848 -1.8,1.848 -1.452,0 -1.788,-1.848 -1.788,-1.848 L 0,7.21 H 2.4 L 4.464,15.154 6.132,8.71 C 6.516,7.09 7.74,7.114 7.74,7.114 c 0,0 1.224,-0.024 1.608,1.596 l 1.656,6.444 z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.2" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="M 15.6,20.4 A 1.2,1.2 0 0 0 14.4,19.2 H 13.2 V 16.8 H 18 a 2.4,2.4 0 0 0 2.4,-2.4 V 2.4 A 2.4,2.4 0 0 0 18,0 H 6 A 2.4,2.4 0 0 0 3.6,2.4 v 12 A 2.4,2.4 0 0 0 6,16.8 h 4.8 v 2.4 H 9.6 A 1.2,1.2 0 0 0 8.4,20.4 H 0 v 2.4 H 8.4 A 1.2,1.2 0 0 0 9.6,24 h 4.8 a 1.2,1.2 0 0 0 1.2,-1.2 H 24 v -2.4 h -8.4 m -6,-7.2 V 3.6 l 6,4.8 z" d="M 15.6,20.4 A 1.2,1.2 0 0 0 14.4,19.2 H 13.2 V 16.8 H 18 a 2.4,2.4 0 0 0 2.4,-2.4 V 2.4 A 2.4,2.4 0 0 0 18,0 H 6 A 2.4,2.4 0 0 0 3.6,2.4 v 12 A 2.4,2.4 0 0 0 6,16.8 h 4.8 v 2.4 H 9.6 A 1.2,1.2 0 0 0 8.4,20.4 H 0 v 2.4 H 8.4 A 1.2,1.2 0 0 0 9.6,24 h 4.8 a 1.2,1.2 0 0 0 1.2,-1.2 H 24 v -2.4 h -8.4 m -6,-7.2 V 3.6 l 6,4.8 z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.2" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="M 22.285714,2.4 21.371429,3.3142857 C 20,2.0571429 18.285714,1.3714286 16.571429,1.3714286 c -1.714286,0 -3.428572,0.6857143 -4.8,1.9428571 L 10.857143,2.4 c 1.6,-1.6 3.657143,-2.4 5.714286,-2.4 2.057142,0 4.114285,0.8 5.714285,2.4 m -5.714285,0.2285714 c 1.371428,0 2.742857,0.5714286 3.771428,1.6 L 19.428571,5.1428571 C 18.628571,4.3428571 17.6,4 16.571429,4 15.542857,4 14.514286,4.3428571 13.714286,5.1428571 L 12.8,4.2285714 c 1.028571,-1.0285714 2.4,-1.6 3.771429,-1.6 m 1.142857,7.6571426 H 20 c 0.605714,0 1.188571,0.24 1.611429,0.674286 0.434285,0.422857 0.674285,1.005714 0.674285,1.611429 v 2.285714 c 0,0.605714 -0.24,1.188571 -0.674285,1.611428 C 21.188571,16.902857 20.605714,17.142857 20,17.142857 h -6.857143 v 2.285714 h 1.142857 c 0.628572,0 1.142857,0.514286 1.142857,1.142858 h 8 v 2.285714 h -8 C 15.428571,23.485714 14.914286,24 14.285714,24 H 9.7142859 C 9.0857145,24 8.5714288,23.485714 8.5714288,22.857143 H 0.57142879 V 20.571429 H 8.5714288 c 0,-0.628572 0.5142857,-1.142858 1.1428571,-1.142858 H 10.857143 V 17.142857 H 4.0000002 c -0.6057143,0 -1.1885714,-0.24 -1.6114286,-0.674286 C 1.9542859,16.045714 1.7142859,15.462857 1.7142859,14.857143 v -2.285714 c 0,-0.605715 0.24,-1.188572 0.6742857,-1.611429 0.4228572,-0.434286 1.0057143,-0.674286 1.6114286,-0.674286 H 15.428571 V 5.7142857 h 2.285715 V 10.285714 M 4.0000002,14.857143 H 6.2857145 V 12.571429 H 4.0000002 v 2.285714 m 4,0 H 10.285714 V 12.571429 H 8.0000002 v 2.285714 m 3.9999998,0 h 2.285714 V 12.571429 H 12 Z" d="M 22.285714,2.4 21.371429,3.3142857 C 20,2.0571429 18.285714,1.3714286 16.571429,1.3714286 c -1.714286,0 -3.428572,0.6857143 -4.8,1.9428571 L 10.857143,2.4 c 1.6,-1.6 3.657143,-2.4 5.714286,-2.4 2.057142,0 4.114285,0.8 5.714285,2.4 m -5.714285,0.2285714 c 1.371428,0 2.742857,0.5714286 3.771428,1.6 L 19.428571,5.1428571 C 18.628571,4.3428571 17.6,4 16.571429,4 15.542857,4 14.514286,4.3428571 13.714286,5.1428571 L 12.8,4.2285714 c 1.028571,-1.0285714 2.4,-1.6 3.771429,-1.6 m 1.142857,7.6571426 H 20 c 0.605714,0 1.188571,0.24 1.611429,0.674286 0.434285,0.422857 0.674285,1.005714 0.674285,1.611429 v 2.285714 c 0,0.605714 -0.24,1.188571 -0.674285,1.611428 C 21.188571,16.902857 20.605714,17.142857 20,17.142857 h -6.857143 v 2.285714 h 1.142857 c 0.628572,0 1.142857,0.514286 1.142857,1.142858 h 8 v 2.285714 h -8 C 15.428571,23.485714 14.914286,24 14.285714,24 H 9.7142859 C 9.0857145,24 8.5714288,23.485714 8.5714288,22.857143 H 0.57142879 V 20.571429 H 8.5714288 c 0,-0.628572 0.5142857,-1.142858 1.1428571,-1.142858 H 10.857143 V 17.142857 H 4.0000002 c -0.6057143,0 -1.1885714,-0.24 -1.6114286,-0.674286 C 1.9542859,16.045714 1.7142859,15.462857 1.7142859,14.857143 v -2.285714 c 0,-0.605715 0.24,-1.188572 0.6742857,-1.611429 0.4228572,-0.434286 1.0057143,-0.674286 1.6114286,-0.674286 H 15.428571 V 5.7142857 h 2.285715 V 10.285714 M 4.0000002,14.857143 H 6.2857145 V 12.571429 H 4.0000002 v 2.285714 m 4,0 H 10.285714 V 12.571429 H 8.0000002 v 2.285714 m 3.9999998,0 h 2.285714 V 12.571429 H 12 Z"
id="path1" id="path1"
style="stroke-width:1.14286;fill:#ffffff;fill-opacity:1" /> style="stroke-width:1.14286;fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="M 3.6,3.6 C 2.28,3.6 1.2,4.68 1.2,6 v 4.8 c 0,1.332 1.08,2.4 2.4,2.4 h 7.2 v 2.4 H 9.6 c -0.66,0 -1.2,0.54 -1.2,1.2 H 0 v 2.4 h 8.4 c 0,0.66 0.54,1.2 1.2,1.2 h 4.8 c 0.66,0 1.2,-0.54 1.2,-1.2 H 24 v -2.4 h -8.4 c 0,-0.66 -0.54,-1.2 -1.2,-1.2 h -1.2 v -2.4 h 7.2 c 1.332,0 2.4,-1.068 2.4,-2.4 V 6 C 22.8,4.68 21.732,3.6 20.4,3.6 H 3.6 M 4.8,7.2 H 7.2 V 9.6 H 4.8 V 7.2 m 4.2,0 h 2.4 V 9.6 H 9 V 7.2 m 4.2,0 h 2.4 v 2.4 h -2.4 z" d="M 3.6,3.6 C 2.28,3.6 1.2,4.68 1.2,6 v 4.8 c 0,1.332 1.08,2.4 2.4,2.4 h 7.2 v 2.4 H 9.6 c -0.66,0 -1.2,0.54 -1.2,1.2 H 0 v 2.4 h 8.4 c 0,0.66 0.54,1.2 1.2,1.2 h 4.8 c 0.66,0 1.2,-0.54 1.2,-1.2 H 24 v -2.4 h -8.4 c 0,-0.66 -0.54,-1.2 -1.2,-1.2 h -1.2 v -2.4 h 7.2 c 1.332,0 2.4,-1.068 2.4,-2.4 V 6 C 22.8,4.68 21.732,3.6 20.4,3.6 H 3.6 M 4.8,7.2 H 7.2 V 9.6 H 4.8 V 7.2 m 4.2,0 h 2.4 V 9.6 H 9 V 7.2 m 4.2,0 h 2.4 v 2.4 h -2.4 z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.2" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="m 13.2,19.2 h 1.2 a 1.2,1.2 0 0 1 1.2,1.2 H 24 v 2.4 H 15.6 A 1.2,1.2 0 0 1 14.4,24 H 9.6 A 1.2,1.2 0 0 1 8.4,22.8 H 0 v -2.4 h 8.4 a 1.2,1.2 0 0 1 1.2,-1.2 h 1.2 V 16.8 H 2.4 A 1.2,1.2 0 0 1 1.2,15.6 V 10.8 A 1.2,1.2 0 0 1 2.4,9.6 h 19.2 a 1.2,1.2 0 0 1 1.2,1.2 v 4.8 a 1.2,1.2 0 0 1 -1.2,1.2 h -8.4 v 2.4 M 2.4,0 h 19.2 a 1.2,1.2 0 0 1 1.2,1.2 V 6 A 1.2,1.2 0 0 1 21.6,7.2 H 2.4 A 1.2,1.2 0 0 1 1.2,6 V 1.2 A 1.2,1.2 0 0 1 2.4,0 m 6,4.8 H 9.6 V 2.4 H 8.4 v 2.4 m 0,9.6 H 9.6 V 12 H 8.4 v 2.4 M 3.6,2.4 V 4.8 H 6 V 2.4 H 3.6 m 0,9.6 v 2.4 H 6 V 12 Z" d="m 13.2,19.2 h 1.2 a 1.2,1.2 0 0 1 1.2,1.2 H 24 v 2.4 H 15.6 A 1.2,1.2 0 0 1 14.4,24 H 9.6 A 1.2,1.2 0 0 1 8.4,22.8 H 0 v -2.4 h 8.4 a 1.2,1.2 0 0 1 1.2,-1.2 h 1.2 V 16.8 H 2.4 A 1.2,1.2 0 0 1 1.2,15.6 V 10.8 A 1.2,1.2 0 0 1 2.4,9.6 h 19.2 a 1.2,1.2 0 0 1 1.2,1.2 v 4.8 a 1.2,1.2 0 0 1 -1.2,1.2 h -8.4 v 2.4 M 2.4,0 h 19.2 a 1.2,1.2 0 0 1 1.2,1.2 V 6 A 1.2,1.2 0 0 1 21.6,7.2 H 2.4 A 1.2,1.2 0 0 1 1.2,6 V 1.2 A 1.2,1.2 0 0 1 2.4,0 m 6,4.8 H 9.6 V 2.4 H 8.4 v 2.4 m 0,9.6 H 9.6 V 12 H 8.4 v 2.4 M 3.6,2.4 V 4.8 H 6 V 2.4 H 3.6 m 0,9.6 v 2.4 H 6 V 12 Z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.2" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -32,5 +32,5 @@
<path <path
d="m 9.6,10.8 h 3.6 v -6 h 2.4 v 6 h 3.6 L 24,20.4 H 4.8 l 4.8,-9.6 m 7.2,10.8 C 16.8,22.932 15.732,24 14.4,24 13.068,24 12,22.932 12,21.6 h 4.8 M 7.452,9.732 8.112,8.4 H 10.8 V 0 H 8.4 V 6 H 4.8 L 0,15.6 h 4.512 z" d="m 9.6,10.8 h 3.6 v -6 h 2.4 v 6 h 3.6 L 24,20.4 H 4.8 l 4.8,-9.6 m 7.2,10.8 C 16.8,22.932 15.732,24 14.4,24 13.068,24 12,22.932 12,21.6 h 4.8 M 7.452,9.732 8.112,8.4 H 10.8 V 0 H 8.4 V 6 H 4.8 L 0,15.6 h 4.512 z"
id="path1" id="path1"
style="stroke-width:1.2;fill:#ffffff;fill-opacity:1" /> style="stroke-width:1.2;fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -32,5 +32,5 @@
<path <path
d="m 23.093484,13.512748 h -2.03966 v 9.065156 h -7.932011 v -3.773371 l 3.161473,-3.161474 0.804533,0.135978 c 1.314447,0 2.379603,-1.065156 2.379603,-2.379604 0,-1.314447 -1.065156,-2.379603 -2.379603,-2.379603 a 2.3796034,2.3796034 0 0 0 -2.379604,2.379603 l 0.113315,0.804533 -1.699717,1.72238 V 9.7167138 c 0.747875,-0.407932 1.246459,-1.1898017 1.246459,-2.0963173 A 2.3796034,2.3796034 0 0 0 11.988669,5.2407931 2.3796034,2.3796034 0 0 0 9.6090652,7.6203965 c 0,0.9065156 0.4985838,1.6883853 1.2464588,2.0963173 V 15.926346 L 9.1558074,14.203966 9.2691218,13.399433 A 2.3796034,2.3796034 0 0 0 6.8895184,11.01983 2.3796034,2.3796034 0 0 0 4.509915,13.399433 2.3796034,2.3796034 0 0 0 6.8895184,15.779037 l 0.8045326,-0.135978 3.161473,3.161474 v 3.773371 H 2.9235127 V 13.512748 H 0.94050992 C 0.46458924,13.512748 0,13.512748 0,13.274788 0.01133144,13.025496 0.48725212,12.549575 0.97450425,12.062323 L 10.855524,2.181303 c 0.373938,-0.3739377 0.759207,-0.7592068 1.133145,-0.7592068 0.373937,0 0.759206,0.3852691 1.133144,0.7592068 l 4.532578,4.5325779 V 5.5807364 h 2.266289 v 3.3994335 l 3.150142,3.1501421 c 0.453257,0.453257 0.917847,0.917847 0.929178,1.155807 0,0.226629 -0.453258,0.226629 -0.906516,0.226629 M 6.8895184,12.379603 a 1.01983,1.01983 0 0 1 1.01983,1.01983 1.01983,1.01983 0 0 1 -1.01983,1.01983 1.01983,1.01983 0 0 1 -1.01983,-1.01983 1.01983,1.01983 0 0 1 1.01983,-1.01983 m 10.1983006,0 c 0.566572,0 1.01983,0.453258 1.01983,1.01983 0,0.566573 -0.453258,1.01983 -1.01983,1.01983 a 1.01983,1.01983 0 0 1 -1.01983,-1.01983 1.01983,1.01983 0 0 1 1.01983,-1.01983 m -5.09915,-5.7790365 c 0.566572,0 1.01983,0.4532578 1.01983,1.01983 0,0.5665722 -0.453258,1.01983 -1.01983,1.01983 -0.566573,0 -1.01983,-0.4532578 -1.01983,-1.01983 0,-0.5665722 0.453257,-1.01983 1.01983,-1.01983 z" d="m 23.093484,13.512748 h -2.03966 v 9.065156 h -7.932011 v -3.773371 l 3.161473,-3.161474 0.804533,0.135978 c 1.314447,0 2.379603,-1.065156 2.379603,-2.379604 0,-1.314447 -1.065156,-2.379603 -2.379603,-2.379603 a 2.3796034,2.3796034 0 0 0 -2.379604,2.379603 l 0.113315,0.804533 -1.699717,1.72238 V 9.7167138 c 0.747875,-0.407932 1.246459,-1.1898017 1.246459,-2.0963173 A 2.3796034,2.3796034 0 0 0 11.988669,5.2407931 2.3796034,2.3796034 0 0 0 9.6090652,7.6203965 c 0,0.9065156 0.4985838,1.6883853 1.2464588,2.0963173 V 15.926346 L 9.1558074,14.203966 9.2691218,13.399433 A 2.3796034,2.3796034 0 0 0 6.8895184,11.01983 2.3796034,2.3796034 0 0 0 4.509915,13.399433 2.3796034,2.3796034 0 0 0 6.8895184,15.779037 l 0.8045326,-0.135978 3.161473,3.161474 v 3.773371 H 2.9235127 V 13.512748 H 0.94050992 C 0.46458924,13.512748 0,13.512748 0,13.274788 0.01133144,13.025496 0.48725212,12.549575 0.97450425,12.062323 L 10.855524,2.181303 c 0.373938,-0.3739377 0.759207,-0.7592068 1.133145,-0.7592068 0.373937,0 0.759206,0.3852691 1.133144,0.7592068 l 4.532578,4.5325779 V 5.5807364 h 2.266289 v 3.3994335 l 3.150142,3.1501421 c 0.453257,0.453257 0.917847,0.917847 0.929178,1.155807 0,0.226629 -0.453258,0.226629 -0.906516,0.226629 M 6.8895184,12.379603 a 1.01983,1.01983 0 0 1 1.01983,1.01983 1.01983,1.01983 0 0 1 -1.01983,1.01983 1.01983,1.01983 0 0 1 -1.01983,-1.01983 1.01983,1.01983 0 0 1 1.01983,-1.01983 m 10.1983006,0 c 0.566572,0 1.01983,0.453258 1.01983,1.01983 0,0.566573 -0.453258,1.01983 -1.01983,1.01983 a 1.01983,1.01983 0 0 1 -1.01983,-1.01983 1.01983,1.01983 0 0 1 1.01983,-1.01983 m -5.09915,-5.7790365 c 0.566572,0 1.01983,0.4532578 1.01983,1.01983 0,0.5665722 -0.453258,1.01983 -1.01983,1.01983 -0.566573,0 -1.01983,-0.4532578 -1.01983,-1.01983 0,-0.5665722 0.453257,-1.01983 1.01983,-1.01983 z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1;stroke-width:1.13314" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:1.13314" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -19,7 +19,7 @@
id="defs35615" /> id="defs35615" />
<sodipodi:namedview <sodipodi:namedview
id="namedview35613" id="namedview35613"
pagecolor="#ffffff" pagecolor="#d7afaf"
bordercolor="#000000" bordercolor="#000000"
borderopacity="0.25" borderopacity="0.25"
inkscape:showpageshadow="2" inkscape:showpageshadow="2"
@ -39,5 +39,5 @@
<path <path
d="m 0.36001843,6e-5 c -0.09522,0 -0.401946,0.556058 -0.355205,0.649929 0.0468,0.09387 0.66421,0.09282 0.71047,0 C 0.76154343,0.557199 0.45532943,0 0.36001843,0 Z m 0.232803,0.568478 c -0.03024,0.06084 -0.434796,0.0615 -0.465427,0 -0.03066,-0.06153 0.170223,-0.425886 0.232714,-0.425886 0.06243,0 0.263104,0.364985 0.232773,0.425886 z m -0.232803,-0.292594 c -0.03162,0 -0.133382,0.184503 -0.117902,0.215673 0.01554,0.0312 0.220443,0.03081 0.235804,0 0.01533,-0.03081 -0.08622,-0.215703 -0.117902,-0.215703 z" d="m 0.36001843,6e-5 c -0.09522,0 -0.401946,0.556058 -0.355205,0.649929 0.0468,0.09387 0.66421,0.09282 0.71047,0 C 0.76154343,0.557199 0.45532943,0 0.36001843,0 Z m 0.232803,0.568478 c -0.03024,0.06084 -0.434796,0.0615 -0.465427,0 -0.03066,-0.06153 0.170223,-0.425886 0.232714,-0.425886 0.06243,0 0.263104,0.364985 0.232773,0.425886 z m -0.232803,-0.292594 c -0.03162,0 -0.133382,0.184503 -0.117902,0.215673 0.01554,0.0312 0.220443,0.03081 0.235804,0 0.01533,-0.03081 -0.08622,-0.215703 -0.117902,-0.215703 z"
id="path35609" id="path35609"
style="stroke-width:0.0300004;fill:#ffffff" /> style="stroke-width:0.0300004;fill:#d7afaf" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -18,7 +18,7 @@
id="defs18603" /> id="defs18603" />
<sodipodi:namedview <sodipodi:namedview
id="namedview18601" id="namedview18601"
pagecolor="#ffffff" pagecolor="#d7afaf"
bordercolor="#000000" bordercolor="#000000"
borderopacity="0.25" borderopacity="0.25"
inkscape:showpageshadow="2" inkscape:showpageshadow="2"
@ -40,7 +40,7 @@
<path <path
d="m 23.180227,7.8797696 c 0,-5.2063103 -3.408714,-6.7328504 -3.408714,-6.7328504 -3.344497,-1.53725005 -12.2274889,-1.52118005 -15.5398853,0 0,0 -3.40871427,1.5265401 -3.40871427,6.7328504 0,6.1972304 -0.35318215,13.8942104 5.65086437,15.4850204 2.1672418,0.57313 4.0294602,0.69632 5.5277872,0.61062 2.718419,-0.14998 4.243505,-0.96949 4.243505,-0.96949 l -0.091,-1.97647 c 0,0 -1.942486,0.61062 -4.125778,0.54099 C 9.8664104,21.49544 7.5868011,21.33476 7.233619,18.67804 7.20152,18.44237 7.18542,18.19598 7.18542,17.93352 c 4.580628,1.11946 8.487001,0.48742 9.562597,0.35887 3.002024,-0.35887 5.618756,-2.21214 5.950528,-3.90473 0.524419,-2.66743 0.48161,-6.5078904 0.48161,-6.5078904 z M 19.177485,14.59649 H 16.68568 V 8.4835796 c 0,-2.6603501 -3.422223,-2.7620501 -3.422223,0.36934 V 12.19843 H 10.787692 V 8.8529196 c 0,-3.1313901 -3.422224,-3.0296901 -3.422224,-0.36934 V 14.59649 H 4.8683135 c 0,-6.5357804 -0.2780538,-7.9168105 0.9838882,-9.3674206 1.3849292,-1.54696 4.2670853,-1.64867 5.5504163,0.3265201 l 0.620286,1.0438 0.620277,-1.0438 c 1.288681,-1.9858901 4.176176,-1.8627801 5.550416,-0.3265201 1.267293,1.4613201 0.983888,2.8369902 0.983888,9.3674206 z" d="m 23.180227,7.8797696 c 0,-5.2063103 -3.408714,-6.7328504 -3.408714,-6.7328504 -3.344497,-1.53725005 -12.2274889,-1.52118005 -15.5398853,0 0,0 -3.40871427,1.5265401 -3.40871427,6.7328504 0,6.1972304 -0.35318215,13.8942104 5.65086437,15.4850204 2.1672418,0.57313 4.0294602,0.69632 5.5277872,0.61062 2.718419,-0.14998 4.243505,-0.96949 4.243505,-0.96949 l -0.091,-1.97647 c 0,0 -1.942486,0.61062 -4.125778,0.54099 C 9.8664104,21.49544 7.5868011,21.33476 7.233619,18.67804 7.20152,18.44237 7.18542,18.19598 7.18542,17.93352 c 4.580628,1.11946 8.487001,0.48742 9.562597,0.35887 3.002024,-0.35887 5.618756,-2.21214 5.950528,-3.90473 0.524419,-2.66743 0.48161,-6.5078904 0.48161,-6.5078904 z M 19.177485,14.59649 H 16.68568 V 8.4835796 c 0,-2.6603501 -3.422223,-2.7620501 -3.422223,0.36934 V 12.19843 H 10.787692 V 8.8529196 c 0,-3.1313901 -3.422224,-3.0296901 -3.422224,-0.36934 V 14.59649 H 4.8683135 c 0,-6.5357804 -0.2780538,-7.9168105 0.9838882,-9.3674206 1.3849292,-1.54696 4.2670853,-1.64867 5.5504163,0.3265201 l 0.620286,1.0438 0.620277,-1.0438 c 1.288681,-1.9858901 4.176176,-1.8627801 5.550416,-0.3265201 1.267293,1.4613201 0.983888,2.8369902 0.983888,9.3674206 z"
id="path18595" id="path18595"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0467831" /> style="fill:#d7afaf;fill-opacity:1;stroke-width:0.0467831" />
<metadata <metadata
id="metadata48828"> id="metadata48828">
<rdf:RDF> <rdf:RDF>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -36,6 +36,6 @@
inkscape:current-layer="svg39874" /> inkscape:current-layer="svg39874" />
<path <path
id="circle39870" id="circle39870"
style="fill:#ffffff;stroke-width:0.03" style="fill:#d7afaf;stroke-width:0.03"
d="M 15.36,0 A 15.36,15.36 0 0 0 0,15.36 15.36,15.36 0 0 0 15.36,30.72 15.36,15.36 0 0 0 30.72,15.36 15.36,15.36 0 0 0 15.36,0 Z m 0.015,11.127 c 1.926,-0.003 3.546,1.311 4.053,3.081 0.441,-0.936 1.38,-1.602 2.478,-1.602 1.518,0.006 2.748,1.236 2.754,2.754 -0.006,1.518 -1.236,2.748 -2.754,2.754 -1.095,0 -2.037,-0.663 -2.478,-1.602 -0.507,1.77 -2.127,3.081 -4.053,3.081 -1.938,0 -3.564,-1.326 -4.062,-3.111 -0.435,0.954 -1.389,1.632 -2.499,1.632 C 7.296,18.105 6.066,16.878 6.06,15.36 c 0.009,-1.518 1.236,-2.748 2.754,-2.754 1.11,0 2.064,0.678 2.499,1.632 0.498,-1.785 2.124,-3.111 4.062,-3.111 z m 0,1.614 c -1.455,0 -2.619,1.164 -2.616,2.619 v 0.024 c 0.006,1.44 1.176,2.601 2.616,2.595 1.455,0 2.619,-1.164 2.619,-2.619 0,-1.455 -1.164,-2.619 -2.619,-2.619 z m -6.561,1.482 c -0.639,0 -1.137,0.498 -1.137,1.137 v 0.024 c 0.006,0.621 0.516,1.119 1.137,1.113 0.639,0 1.137,-0.498 1.137,-1.137 0,-0.636 -0.501,-1.137 -1.137,-1.137 z m 13.092,0 c -0.636,0 -1.137,0.498 -1.137,1.137 v 0.024 c 0.006,0.621 0.516,1.119 1.137,1.113 0.636,0 1.137,-0.498 1.137,-1.137 0,-0.636 -0.498,-1.137 -1.137,-1.137 z" /> d="M 15.36,0 A 15.36,15.36 0 0 0 0,15.36 15.36,15.36 0 0 0 15.36,30.72 15.36,15.36 0 0 0 30.72,15.36 15.36,15.36 0 0 0 15.36,0 Z m 0.015,11.127 c 1.926,-0.003 3.546,1.311 4.053,3.081 0.441,-0.936 1.38,-1.602 2.478,-1.602 1.518,0.006 2.748,1.236 2.754,2.754 -0.006,1.518 -1.236,2.748 -2.754,2.754 -1.095,0 -2.037,-0.663 -2.478,-1.602 -0.507,1.77 -2.127,3.081 -4.053,3.081 -1.938,0 -3.564,-1.326 -4.062,-3.111 -0.435,0.954 -1.389,1.632 -2.499,1.632 C 7.296,18.105 6.066,16.878 6.06,15.36 c 0.009,-1.518 1.236,-2.748 2.754,-2.754 1.11,0 2.064,0.678 2.499,1.632 0.498,-1.785 2.124,-3.111 4.062,-3.111 z m 0,1.614 c -1.455,0 -2.619,1.164 -2.616,2.619 v 0.024 c 0.006,1.44 1.176,2.601 2.616,2.595 1.455,0 2.619,-1.164 2.619,-2.619 0,-1.455 -1.164,-2.619 -2.619,-2.619 z m -6.561,1.482 c -0.639,0 -1.137,0.498 -1.137,1.137 v 0.024 c 0.006,0.621 0.516,1.119 1.137,1.113 0.639,0 1.137,-0.498 1.137,-1.137 0,-0.636 -0.501,-1.137 -1.137,-1.137 z m 13.092,0 c -0.636,0 -1.137,0.498 -1.137,1.137 v 0.024 c 0.006,0.621 0.516,1.119 1.137,1.113 0.636,0 1.137,-0.498 1.137,-1.137 0,-0.636 -0.498,-1.137 -1.137,-1.137 z" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -32,5 +32,5 @@
<path <path
d="m 9.6,0.6 h 4.8 A 2.4,2.4 0 0 1 16.8,3 v 2.4 h 4.8 A 2.4,2.4 0 0 1 24,7.8 V 21 a 2.4,2.4 0 0 1 -2.4,2.4 H 2.4 C 1.068,23.4 0,22.32 0,21 V 7.8 C 0,6.468 1.068,5.4 2.4,5.4 H 7.2 V 3 C 7.2,1.668 8.268,0.6 9.6,0.6 m 4.8,4.8 V 3 H 9.6 v 2.4 z" d="m 9.6,0.6 h 4.8 A 2.4,2.4 0 0 1 16.8,3 v 2.4 h 4.8 A 2.4,2.4 0 0 1 24,7.8 V 21 a 2.4,2.4 0 0 1 -2.4,2.4 H 2.4 C 1.068,23.4 0,22.32 0,21 V 7.8 C 0,6.468 1.068,5.4 2.4,5.4 H 7.2 V 3 C 7.2,1.668 8.268,0.6 9.6,0.6 m 4.8,4.8 V 3 H 9.6 v 2.4 z"
id="path1" id="path1"
style="stroke-width:1.2;fill:#ffffff;fill-opacity:1" /> style="stroke-width:1.2;fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -33,5 +33,5 @@
<path <path
d="M 22,17 V 7 H 6 V 17 H 22 M 22,5 a 2,2 0 0 1 2,2 v 10 c 0,1.11 -0.9,2 -2,2 h -6 v 2 h 2 v 2 h -8 v -2 h 2 V 19 H 6 C 4.89,19 4,18.11 4,17 V 7 A 2,2 0 0 1 6,5 H 22 M 2,3 V 15 H 0 V 3 A 2,2 0 0 1 2,1 h 18 v 2 z" d="M 22,17 V 7 H 6 V 17 H 22 M 22,5 a 2,2 0 0 1 2,2 v 10 c 0,1.11 -0.9,2 -2,2 h -6 v 2 h 2 v 2 h -8 v -2 h 2 V 19 H 6 C 4.89,19 4,18.11 4,17 V 7 A 2,2 0 0 1 6,5 H 22 M 2,3 V 15 H 0 V 3 A 2,2 0 0 1 2,1 h 18 v 2 z"
id="path1" id="path1"
style="fill:#ffffff;fill-opacity:1" /> style="fill:#d7afaf;fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -2,6 +2,7 @@
(defwidget powermenu [] (defwidget powermenu []
(revealer-on-hover (revealer-on-hover
:revealvar reveal_powermenu :revealvar reveal_powermenu
:class "powermenu"
:revealvar-name "reveal_powermenu" :revealvar-name "reveal_powermenu"
(button :onclick 'scripts/bar/powermenu poweroff system-shutdown-symbolic "systemctl poweroff"' (button :onclick 'scripts/bar/powermenu poweroff system-shutdown-symbolic "systemctl poweroff"'
"") "")

View file

@ -9,7 +9,7 @@
:height 125 :height 125
:space-evenly true :space-evenly true
"${json.condition} ${json.icon}" "${json.condition} ${json.icon}"
"${json.current_temp}°F  / ${json.humidity}% " "${json.current_temp}°F  / ${json.humidity}% "
" ${json.max_temp}°F  ${json.min_temp}°F" " ${json.max_temp}°F  ${json.min_temp}°F"
(label (label
:class "weather-subtitle" :class "weather-subtitle"

View file

@ -28,13 +28,39 @@ box#body {
background-color: rgba(50, 50, 50, 0.5); background-color: rgba(50, 50, 50, 0.5);
border-radius: 10px; border-radius: 10px;
padding: 50px; padding: 50px;
outline: none;
border: none;
box-shadow: none;
} }
entry,combobox * { entry,combobox * {
background: rgba(50, 50, 50, 1); background-color: rgba(50, 50, 50, 0.3);
color: rgba(250, 250, 250, 1); color: rgba(250, 250, 250, 1);
outline: none;
border: none;
box-shadow: none;
} }
entry.text { entry.text {
color: rgba(250, 250, 250, 1); color: rgba(250, 250, 250, 1);
} }
/*button {
padding: 0px;
border: 0px solid #000000;
border-radius: 30px;
}*/
button {
background-image: none;
margin-left: 10px;
padding: 10px;
background-color: rgba(50, 50, 50, 0.3);
color: #000000;
border-radius: 10px;
box-shadow: none;
outline: none;
border: none;
}
button > label {
color: #000000;
}

View file

@ -2,7 +2,7 @@
"preset": "lesbian", "preset": "lesbian",
"mode": "rgb", "mode": "rgb",
"light_dark": "dark", "light_dark": "dark",
"lightness": 0.5, "lightness": 0.73,
"color_align": { "color_align": {
"mode": "horizontal", "mode": "horizontal",
"custom_colors": [], "custom_colors": [],

View file

@ -7,13 +7,13 @@ workspace 0: {
} }
# Border styling # Border styling
default_border pixel 5 default_border pixel 2
default_floating_border pixel 3 default_floating_border pixel 2
# Borders # Borders
client.focused $color1 $color1 $color0 $color9 client.focused $color599 $color599 $color0 $color13
client.focused_inactive $color8 $color8 $color8 $color8 client.focused_inactive $color000 $color000 $color000 $color000
client.unfocused $color8 $color8 $color8 $color8 client.unfocused $color000 $color000 $color000 $color000
set { set {
$layer_blur blur enable, blur_ignore_transparent enable, corner_radius 10 $layer_blur blur enable, blur_ignore_transparent enable, corner_radius 10
@ -32,6 +32,7 @@ layer_effects {
blur_brightness 0.85 blur_brightness 0.85
blur enable blur enable
shadows enable shadows enable
shadow_color $color0 shadow_color $color5bb
shadow_blur_radius 20 shadow_inactive_color $color555
corner_radius 10 shadow_blur_radius 10
corner_radius 8

View file

@ -3,7 +3,7 @@
operation="${1}" operation="${1}"
WOBSOCK="$XDG_RUNTIME_DIR/wob.sock" WOBSOCK="$XDG_RUNTIME_DIR/wob.sock"
source "${HOME}/.config/de-vars/colors/active/colors.sh" source "${HOME}/.config/de-vars/colors/active/colors.sh"
opacity="BF" opacity="DD"
case "$operation" in case "$operation" in
up) up)
@ -16,6 +16,6 @@ case "$operation" in
;;& ;;&
up|down) up|down)
light_lvl="$(brightnessctl set ${brighness_change} | sed -En 's/.*\(([0-9]+)%\).*/\1/p')" light_lvl="$(brightnessctl set ${brighness_change} | sed -En 's/.*\(([0-9]+)%\).*/\1/p')"
echo "${light_lvl}" "${de_color_0}${opacity}" "${de_color_1}${opacity}" "${de_color_3}${opacity}" > "$WOBSOCK" echo "${light_lvl}" "${de_color_0}${opacity}" "${de_color_14}${opacity}" "${de_color_12}${opacity}" > "$WOBSOCK"
;; ;;
esac esac

View file

@ -3,7 +3,7 @@
operation="${1}" operation="${1}"
WOBSOCK="$XDG_RUNTIME_DIR/wob.sock" WOBSOCK="$XDG_RUNTIME_DIR/wob.sock"
source "${HOME}/.config/de-vars/colors/active/colors.sh" source "${HOME}/.config/de-vars/colors/active/colors.sh"
opacity="BF" opacity="DD"
case "$operation" in case "$operation" in
up) up)
@ -21,7 +21,7 @@ case "$operation" in
else else
vol_lvl="$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed 's/[^0-9]//g')" vol_lvl="$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed 's/[^0-9]//g')"
fi fi
echo "${vol_lvl}" "${de_color_0}${opacity}" "${de_color_1}${opacity}" "${de_color_2}${opacity}" > "$WOBSOCK" echo "${vol_lvl}" "${de_color_0}${opacity}" "${de_color_14}${opacity}" "${de_color_10}${opacity}" > "$WOBSOCK"
paplay "$HOME/.config/sway/assets/sounds/volume.ogg" paplay "$HOME/.config/sway/assets/sounds/volume.ogg"
;; ;;
esac esac

View file

@ -13,9 +13,9 @@
"timeout-low": 4, "timeout-low": 4,
"timeout-critical": 0, "timeout-critical": 0,
"fit-to-screen": false, "fit-to-screen": false,
"control-center-width": 380, "control-center-width": 450,
"control-center-height": 860, "control-center-height": 860,
"notification-window-width": 400, "notification-window-width": 450,
"keyboard-shortcuts": true, "keyboard-shortcuts": true,
"image-visibility": "when-available", "image-visibility": "when-available",
"transition-time": 200, "transition-time": 200,

View file

@ -1,4 +1,3 @@
/*@import '../../.cache/wal/colors-waybar.css';*/
@import '../de-vars/colors/active/waybar.css'; @import '../de-vars/colors/active/waybar.css';
@import 'themes/nova-dark/notifications.css'; @import 'themes/nova-dark/notifications.css';
@import 'themes/nova-dark/central_control.css'; @import 'themes/nova-dark/central_control.css';

View file

@ -1,8 +1,8 @@
@define-color text @foreground; @define-color text @foreground;
@define-color background-alt @color1; @define-color background-alt @color5;
@define-color selected @color1; @define-color selected @color5;
@define-color hover @color1; @define-color hover @color5;
@define-color urgent @color1; @define-color urgent @color5;
* { * {
color: @text; color: @text;
@ -22,20 +22,22 @@
/* CONTROL CENTER ------------------------------------------------------------------------ */ /* CONTROL CENTER ------------------------------------------------------------------------ */
.control-center { .control-center {
background: alpha(@background, .75); background: alpha(@background, .3);
border-radius: 12px; border-radius: 4px;
border: 1px solid @selected; border: 2px solid @selected;
/* box-shadow: 0 2px 8px 0 @background;*/ /* box-shadow: 0 2px 8px 0 @background;*/
margin: 18px; margin: 10px;
padding: 12px; padding: 12px;
} }
/* Notifications */ /* Notifications */
.control-center .notification-row .notification-background, .control-center .notification-row .notification-background,
.control-center .notification-row .notification-background .notification.critical { .control-center .notification-row .notification-background .notification.critical {
background-color: alpha(@background, .75); /* border: 1px solid @selected;*/
border-radius: 10px; box-shadow: 0px 0px 3px @selected;
margin: 4px 0px; background-color: alpha(@background, .85);
border-radius: 8px;
margin: 5px 5px;
padding: 4px; padding: 4px;
} }
@ -228,7 +230,7 @@ progressbar {
/* NOTE: Background need *opacity 1* otherwise will turn into the album art blurred */ /* NOTE: Background need *opacity 1* otherwise will turn into the album art blurred */
.widget-mpris-player { .widget-mpris-player {
background: @selected; background: @selected00;
padding: 6px 10px; padding: 6px 10px;
margin: 10px; margin: 10px;
border-radius: 14px; border-radius: 14px;
@ -241,6 +243,7 @@ progressbar {
.widget-mpris-title { .widget-mpris-title {
font-weight: 700; font-weight: 700;
font-size: 1rem; font-size: 1rem;
text-shadow: 0px 0px 5px @color0;
} }
.widget-mpris-subtitle { .widget-mpris-subtitle {

View file

@ -1,8 +1,8 @@
@define-color text @foreground; @define-color text @foreground;
@define-color background-alt @color1; @define-color background-alt @color5;
@define-color selected @color1; @define-color selected @color5;
@define-color hover @color1; @define-color hover @color5;
@define-color urgent @color1; @define-color urgent @color5;
* { * {
@ -29,10 +29,10 @@
.floating-notifications.background .notification-row .notification-background { .floating-notifications.background .notification-row .notification-background {
background: alpha(@background, .75); background: alpha(@background, .75);
/* box-shadow: 0 2px 8px 0 @background;*/ box-shadow: inset 0px 0px 5px @selected;
border: 1px solid @selected; border: 2px solid @selected;
border-radius: 12px; border-radius: 4px;
margin: 16px; margin: 12px;
padding: 0; padding: 0;
} }

View file

@ -3,18 +3,29 @@
letter-spacing: 1px; letter-spacing: 1px;
} }
@define-color window-border-color rgba(--wofi-rgb-color5,1);
@define-color foreground-color rgba(--wofi-rgb-color13,0.5);
@define-color foreground-shadow-color rgba(--wofi-rgb-color0,1);
@define-color active-foreground-color rgba(--wofi-rgb-color13,1);
@define-color window-background-color rgba(--wofi-rgb-color0,0.6);
@define-color button-background-color rgba(--wofi-rgb-color5,0.15);
@define-color button-background-active-color rgba(--wofi-rgb-color5,0.5);
@define-color transparent-color rgba(--wofi-rgb-color0,0);
window { window {
border: 5px solid --wofi-color1; border: 2px solid @window-border-color;
background-color: rgba(--wofi-rgb-color0,0); background-color: @transparent-color;
border-radius:10px; border-radius:10px;
/* opacity:0.25;*/ /* opacity:0.25;*/
} }
#input { #input {
margin: 15px 15px 0px 15px; margin: 15px 15px 0px 15px;
border: 3px solid --wofi-color1; border: 0px solid @transparent-color;
background-color: --wofi-color9; background-color: @transparent-color;
color: @active-foreground-color;
border-radius:10px; border-radius:10px;
outline: none;
} }
#inner-box { #inner-box {
@ -25,32 +36,40 @@ window {
} }
#outer-box { #outer-box {
margin: 5px; margin: 2px;
border: 0px solid rgba(--wofi-rgb-color0,0); border: 0px solid @transparent-color;
background-color: rgba(--wofi-rgb-color0,0.25); background-color: @window-background-color;
border-radius:6px; border-radius:6px;
} }
#scroll { #scroll {
background-color: transparent; background-color: @transparent-color;
} }
#text { #text {
margin: 5px; margin: 5px;
color: --wofi-color9; color: @foreground-color;
text-shadow: 0px 0px 2px @foreground-shadow-color,0px 0px 6px @foreground-shadow-color;
}
#text:selected {
color: @active-foreground-color;
} }
#entry{ #entry{
border: 3px solid --wofi-color1; border: 0px solid @transparent-color;
border-radius: 10px; border-radius: 10px;
background-color: rgba(--wofi-rgb-color8,0.2); background-color: @button-background-color;
margin:10px 10px margin:10px 10px;
min-height: 40px;
} }
#entry:selected { #entry:selected {
background-color: --wofi-color9; background-color: @button-background-active-color;
outline: none;
} }
#text:selected { #img {
color:--wofi-color0; opacity: 0.5;
}
#img:selected {
opacity: 1;
} }

View file

@ -2,7 +2,7 @@
"preset": "lesbian", "preset": "lesbian",
"mode": "rgb", "mode": "rgb",
"light_dark": "dark", "light_dark": "dark",
"lightness": 0.5, "lightness": 0.73,
"color_align": { "color_align": {
"mode": "horizontal", "mode": "horizontal",
"custom_colors": [], "custom_colors": [],

View file

@ -90,8 +90,8 @@ alias quickdeb='dpkg-buildpackage -b -tc'
alias gituntracked='git ls-files . --exclude-standard --others' alias gituntracked='git ls-files . --exclude-standard --others'
#apt update summary #apt update summary
alias pm-update="sudo apt update;apt list --upgradable" alias thong-list="sudo apt update;apt list --upgradable"
alias pm-upgrade="sudo apt update;sudo apt upgrade" alias thong="sudo apt update;sudo apt upgrade"
#User Env Vars #User Env Vars
export DEBEMAIL="support@pogmom.me" export DEBEMAIL="support@pogmom.me"