Initial
This commit is contained in:
commit
c8734e660a
392 changed files with 21043 additions and 0 deletions
20
.config/waybar/solarized-theme/colors-waybar.css
Normal file
20
.config/waybar/solarized-theme/colors-waybar.css
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
@define-color foreground {foreground};
|
||||
@define-color background {background};
|
||||
@define-color cursor {cursor};
|
||||
|
||||
@define-color color0 {color0};
|
||||
@define-color color1 {color1};
|
||||
@define-color color2 {color2};
|
||||
@define-color color3 {color3};
|
||||
@define-color color4 {color4};
|
||||
@define-color color5 {color5};
|
||||
@define-color color6 {color6};
|
||||
@define-color color7 {color7};
|
||||
@define-color color8 {color8};
|
||||
@define-color color9 {color9};
|
||||
@define-color color10 {color10};
|
||||
@define-color color11 {color11};
|
||||
@define-color color12 {color12};
|
||||
@define-color color13 {color13};
|
||||
@define-color color14 {color14};
|
||||
@define-color color15 {color15};
|
||||
110
.config/waybar/solarized-theme/config
Normal file
110
.config/waybar/solarized-theme/config
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
{
|
||||
"layer": "bottom", // Waybar at top layer
|
||||
// "position": "bottom", // Waybar at the bottom of your screen
|
||||
// "height": 30, // Waybar height
|
||||
// "width": 1280, // Waybar width
|
||||
// Choose the order of the modules
|
||||
"modules-left": ["sway/workspaces", "sway/mode"],
|
||||
// "modules-center": ["sway/window"],
|
||||
"modules-center": ["clock"],
|
||||
"modules-right": ["cpu", "custom/temp", "memory", "custom/root", "custom/home", "custom/main", "custom/backup", "custom/scratch", "pulseaudio", "network", "tray"],
|
||||
// Modules configuration
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": false,
|
||||
"all-outputs": false
|
||||
// "format": "{name}: {icon}",
|
||||
// "format-icons": {
|
||||
// "1": "",
|
||||
// "2": "",
|
||||
// "3": "",
|
||||
// "4": "",
|
||||
// "5": "",
|
||||
// "urgent": "",
|
||||
// "focused": "",
|
||||
// "default": ""
|
||||
// }
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>",
|
||||
"max-length": 20
|
||||
},
|
||||
"tray": {
|
||||
// "icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"clock": {
|
||||
"format": "{:%m-%d %l:%M}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}% "
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%"
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
// "good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{capacity}% {icon}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
"battery#bat2": {
|
||||
"bat": "BAT2"
|
||||
},
|
||||
"network": {
|
||||
// "interface": "wlp2s0", // (Optional) To force the use of this interface
|
||||
"format-wifi": "{essid} ({signalStrength}%) ",
|
||||
"format-ethernet": " {ifname}: {ipaddr}/{cidr} ",
|
||||
"format-disconnected": "⚠ Disconnected "
|
||||
},
|
||||
"pulseaudio": {
|
||||
//"scroll-step": 5,
|
||||
"format": " {icon} {volume}%",
|
||||
"format-bluetooth": "{volume}% {icon}",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphones": "",
|
||||
"handsfree": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", ""]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
"custom/temp": {
|
||||
"format": " {} ",
|
||||
"interval": 2,
|
||||
"exec": "$HOME/.config/scripts/temp.sh 2> /dev/null"
|
||||
},
|
||||
"custom/root": {
|
||||
"format": " / {} ",
|
||||
"interval": 200,
|
||||
"exec": "$HOME/.config/scripts/rootspace.sh 2> /dev/null"
|
||||
},
|
||||
"custom/home": {
|
||||
"format": " {} ",
|
||||
"interval": 200,
|
||||
"exec": "$HOME/.config/scripts/homespace.sh 2> /dev/null"
|
||||
},
|
||||
"custom/main": {
|
||||
"format": " {} ",
|
||||
"interval": 200,
|
||||
"exec": "$HOME/.config/scripts/mainspace.sh 2> /dev/null"
|
||||
},
|
||||
"custom/backup": {
|
||||
"format": " {} ",
|
||||
"interval": 200,
|
||||
"exec": "$HOME/.config/scripts/backupspace.sh 2> /dev/null"
|
||||
},
|
||||
"custom/scratch": {
|
||||
"format": " {} ",
|
||||
"interval": 200,
|
||||
"exec": "$HOME/.config/scripts/scratchspace.sh 2> /dev/null"
|
||||
}
|
||||
}
|
||||
143
.config/waybar/solarized-theme/style.css
Normal file
143
.config/waybar/solarized-theme/style.css
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
@import "/home/rfacundes/.config/waybar/style.css";
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
font-family: Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(43, 48, 59, 0.3);
|
||||
border-bottom: 3px solid transparent;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
background: rgba(43, 48, 59, 0.8);
|
||||
color: @foreground;
|
||||
border-bottom: 3px solid transparent;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background: rgba(100, 114, 125, 0.2);
|
||||
border-bottom: 3px solid @color15;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color15;
|
||||
}
|
||||
|
||||
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode, #custom-temp, #custom-root, #custom-home, #custom-backup, #custom-scratch, #custom-main {
|
||||
padding: 0 6px;
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
#clock {
|
||||
background-color: transparent;
|
||||
border-bottom: 3px solid @color1;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: #ffffff;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: white;
|
||||
background-color: #26A65B;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #ffffff;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.warning:not(.charging) {
|
||||
background: #f53c3c;
|
||||
color: white;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color5;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#memory {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color7;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#network {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color16;
|
||||
color: @foreground
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background: transparent;
|
||||
color: crimson;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color15;
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background: #90b1b1;
|
||||
color: #2a5c45;
|
||||
}
|
||||
|
||||
#custom-spotify {
|
||||
background: #66cc99;
|
||||
color: #2a5c45;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: transparent;
|
||||
border-bottom: 3px solid @color15;
|
||||
}
|
||||
|
||||
#custom-root {
|
||||
background: transparent;
|
||||
border-bottom: 4px solid @color9;
|
||||
}
|
||||
|
||||
#custom-temp {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color5;
|
||||
}
|
||||
|
||||
#custom-home {
|
||||
background: transparent;
|
||||
border-bottom: 4px solid @color9;
|
||||
}
|
||||
|
||||
#custom-main {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color10;
|
||||
}
|
||||
|
||||
#custom-backup {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color10;
|
||||
}
|
||||
|
||||
#custom-scratch {
|
||||
background: transparent;
|
||||
border-bottom: 3px solid @color11;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue