move folders around
This commit is contained in:
6
configs/waybar_l/MubinMuhammad/Read.md
Normal file
6
configs/waybar_l/MubinMuhammad/Read.md
Normal file
@@ -0,0 +1,6 @@
|
||||
4.19.24
|
||||
I was unable to fix the battery background filling issue, posted a PR on the author repo, not update as of now
|
||||
|
||||
[Mubin's Dots]{https://github.com/MubinMuhammad/MinimalSwayFX}
|
||||
|
||||
|
||||
129
configs/waybar_l/MubinMuhammad/config
Normal file
129
configs/waybar_l/MubinMuhammad/config
Normal file
@@ -0,0 +1,129 @@
|
||||
{
|
||||
// "layer": "top",
|
||||
"mode": "dock",
|
||||
"ipc": "true",
|
||||
"bar_id": "bar_0",
|
||||
"position": "bottom",
|
||||
"spacing": 0,
|
||||
"margin-bottom": 6,
|
||||
"margin-left": 200,
|
||||
"margin-right": 200,
|
||||
|
||||
"modules-left": [
|
||||
"sway/workspaces"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"clock"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"network",
|
||||
"battery",
|
||||
"pulseaudio",
|
||||
"custom/swww"
|
||||
],
|
||||
|
||||
"sway/taskbar": {
|
||||
"format": "{icon}",
|
||||
"on-click": "activate",
|
||||
"on-click-right": "fullscreen",
|
||||
"icon-size": 25,
|
||||
"tooltip-format": "{title}"
|
||||
},
|
||||
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"1": "", // "",
|
||||
"2": " ", // "",
|
||||
"3": "", // "",
|
||||
"4": "", // "",
|
||||
"5": "", // "",
|
||||
"6": "l", // " "
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": [],
|
||||
"2": [],
|
||||
"3": [],
|
||||
"4": [],
|
||||
"5": [],
|
||||
"6": [],
|
||||
}
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%I:%M %p - %a, %d %b %Y}"
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format-wifi" : "{icon}",
|
||||
"format-icons": ["","","","",""],
|
||||
"format-ethernet": "",
|
||||
"format-disconnected" : "",
|
||||
"interval": 5,
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"scroll-step": 5,
|
||||
"max-volume": 150,
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "",
|
||||
"nospacing": 1,
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": " ",
|
||||
"default": ["","" ," "]
|
||||
},
|
||||
"on-click": "pamixer -t",
|
||||
},
|
||||
|
||||
"custom/swww": {
|
||||
"format": " ",
|
||||
"on-click": "bash ~/.config/wallpapers/wallpaperSet.sh"
|
||||
},
|
||||
|
||||
"battery": {
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": {
|
||||
"charging": [
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
""
|
||||
],
|
||||
"default": [
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"format-full": "Charged ",
|
||||
"interval": 5,
|
||||
"states": {
|
||||
"warning": 20,
|
||||
"critical": 10
|
||||
},
|
||||
"tooltip": false
|
||||
},
|
||||
}
|
||||
85
configs/waybar_l/MubinMuhammad/style.css
Normal file
85
configs/waybar_l/MubinMuhammad/style.css
Normal file
@@ -0,0 +1,85 @@
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
min-height: 0;
|
||||
font-family: IosevkaTermSlab Nerd Font;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(29, 32, 33, 0.5);
|
||||
border-radius: 6px;
|
||||
border: 2px solid rgba(29, 32, 33, 0.5);
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
all: initial; /* Remove GTK theme values (waybar #1351) */
|
||||
min-width: 0; /* Fix weird spacing in materia (waybar #450) */
|
||||
box-shadow: inset 0 -3px transparent; /* Use box-shadow instead of border so the text isn't offset */
|
||||
padding: 6px 12px;
|
||||
color: #7c6f64;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #e78a4e;
|
||||
}
|
||||
|
||||
#battery,
|
||||
#backlight,
|
||||
#network,
|
||||
#clock,
|
||||
#tray,
|
||||
#pulseaudio {
|
||||
margin: 8px;
|
||||
padding-right: 8px;
|
||||
background-color: transparent;
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#custom-swww {
|
||||
padding-right: 8px;
|
||||
background-color: transparent;
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: transparent;
|
||||
}
|
||||
#battery.warning,
|
||||
#battery.critical,
|
||||
#battery.urgent {
|
||||
color: #d4be98;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
#battery.charging {
|
||||
background-color: #a9b665;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #e78a4e;
|
||||
color: #ede0d4;
|
||||
}
|
||||
}
|
||||
|
||||
tooltip {
|
||||
padding: 15px;
|
||||
background-color: #1d2021;
|
||||
border-radius: 6px;
|
||||
color: #d4be98;
|
||||
border: 2px solid #282828;
|
||||
}
|
||||
Reference in New Issue
Block a user