Add fetch and install scripts
- Add fetch script which fetches the current config that is used by the system into the git repo - Add install script which copies the config in the repo into the config folder for the user - Add waybar as config
This commit is contained in:
@@ -0,0 +1,222 @@
|
||||
@import url('./colors.css');
|
||||
|
||||
* {
|
||||
font-size: 15px;
|
||||
font-family: "DejaVu Sans";
|
||||
}
|
||||
window#waybar{
|
||||
all:unset;
|
||||
}
|
||||
.modules-left {
|
||||
padding: 7px;
|
||||
margin: 5px 0px 5px 10px;
|
||||
border-radius:10px;
|
||||
background: alpha(@background, .7);
|
||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||
}
|
||||
.modules-center {
|
||||
padding:7px;
|
||||
margin:5px 0px 5px 0px;
|
||||
border-radius:10px;
|
||||
background: alpha(@background,.7);
|
||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||
}
|
||||
.modules-right {
|
||||
padding:7px;
|
||||
margin: 5px 10px 5px 0px;
|
||||
border-radius:10px;
|
||||
background: alpha(@background,.7);
|
||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background-color: alpha(@background, 0.7);
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
tooltip * {
|
||||
color: @foregroundAlt;
|
||||
}
|
||||
|
||||
#clock:hover, #custom-power:hover, #custom-pacman:hover, #custom-notification:hover,#bluetooth:hover,#network:hover,#battery:hover, #cpu:hover,#memory:hover,#temperature:hover{
|
||||
transition: all .3s ease;
|
||||
color: @foregroundAlt;
|
||||
}
|
||||
|
||||
#weeks {
|
||||
color: @foreground;
|
||||
}
|
||||
#today {
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#custom-notification {
|
||||
padding: 0px 5px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
}
|
||||
|
||||
#clock{
|
||||
padding: 0px 0px 0px 10px;
|
||||
color:@foreground;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
|
||||
#custom-pacman{
|
||||
padding: 0px 10px 0px 0px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
}
|
||||
|
||||
#custom-hyperx{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding: 0px 5px;
|
||||
}
|
||||
#workspaces button {
|
||||
all:unset;
|
||||
padding: 0px 5px 0px 5px;
|
||||
border-radius: 6px;
|
||||
color: @foreground;
|
||||
background-color: transparent;
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#workspaces button:hover {
|
||||
color: @backgroundAlt;
|
||||
background-color: @foregroundAlt;
|
||||
border: none;
|
||||
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
#workspaces button.active {
|
||||
color: @backgroundAlt;
|
||||
background-color: @foreground;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#workspaces button.urgent {
|
||||
color: @background;
|
||||
background-color: @red;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#workspaces button.empty {
|
||||
color: alpha(@foreground, 0.2);
|
||||
border: none;
|
||||
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .2);
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#workspaces button.empty:hover {
|
||||
color: @backgroundAlt;
|
||||
background-color: @foregroundAlt;
|
||||
color: rgba(0,0,0,0);
|
||||
border: none;
|
||||
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
#workspaces button.empty.active {
|
||||
color: @backgroundAlt;
|
||||
background-color: @foreground;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#bluetooth{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
|
||||
}
|
||||
#network{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
|
||||
}
|
||||
#battery{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
|
||||
|
||||
}
|
||||
#battery.charging {
|
||||
color: @green;
|
||||
}
|
||||
|
||||
#battery.warning:not(.charging) {
|
||||
color: @yellow;
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: @red;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
#group-expand{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
#custom-expand{
|
||||
padding: 0px 0px 0px 10px;
|
||||
color: alpha(@foreground,.5);
|
||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, .7);
|
||||
transition: all .3s ease;
|
||||
}
|
||||
#custom-expand:hover{
|
||||
color: @foreground;
|
||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
#custom-colorpicker{
|
||||
padding: 0px 0px 0px 10px;
|
||||
color:transparent;
|
||||
}
|
||||
#cpu, #memory, #temperature{
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
color:@foreground;
|
||||
|
||||
}
|
||||
#custom-endpoint{
|
||||
color:@foreground;
|
||||
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, 1);
|
||||
|
||||
}
|
||||
#tray{
|
||||
padding: 0px 10px 0px 0px;
|
||||
transition: all .3s ease;
|
||||
|
||||
}
|
||||
#tray menu * {
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
|
||||
#tray menu separator {
|
||||
padding: 0px 0px 0px 10px;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
|
||||
#pulseaudio{
|
||||
padding: 0px 0px 0px 10px;
|
||||
color:@foreground;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
Reference in New Issue
Block a user