1
0

initial commit

This commit is contained in:
2023-08-28 18:30:23 -06:00
commit de1a55d789
36 changed files with 5318 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
"layer": "top",
"modules-left": [ "sway/workspaces", "mpd", "sway/mode" ],
"modules-center": [],
"modules-right": [
"tray",
"network",
"pulseaudio",
"temperature",
"cpu",
"clock",
],
"mpd": {
"tooltip": false,
"format": "{stateIcon} {artist} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S})",
"format-disconnected": "󰋋",
"format-stopped": "󰋋",
"state-icons": {
"playing": "",
"paused": ""
}
},
"pulseaudio": {
"tooltip": false,
"scroll-step": 5,
"format": "{icon} {volume}%",
"format-icons": { "default": [ "󰕿", "󰖀", "󰕾" ] }
},
"network": {
"tooltip-format": "{ipaddr}",
"format-wifi": " {essid}",
"format-ethernet": "󰈁 Connected",
"format-disconnected": "󰈂 Disconnected",
"format-linked": " No IP"
},
"cpu": {
"tooltip": false,
"format": "󰻠 {}%"
},
"clock": {
"tooltip-format": "{:%Y-%m-%d}"
}
}

View File

@@ -0,0 +1,157 @@
@import "/home/emma/.cache/wal/colors-waybar.css";
/*
********************************************
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
*░░█▀█░█░░░█░█░█▀▀░░░█░█░█░░░▀█▀░█▀▄░█▀█░░*
*░░█▀▀░█░░░█░█░▀▀█░░░█░█░█░░░░█░░█▀▄░█▀█░░*
*░░▀░░░▀▀▀░▀▀▀░▀▀▀░░░▀▀▀░▀▀▀░░▀░░▀░▀░▀░▀░░*
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
********************************************
*/
* {
border: none;
border-radius: 0;
font-family: Ubuntu, 'Symbols Nerd Font';
font-size: 14px;
min-height: 24px;
}
window#waybar {
background: transparent;
}
window#waybar.hidden {
opacity: 0.2;
}
#window {
margin-top: 8px;
padding-left: 16px;
padding-right: 16px;
border-radius: 26px;
transition: none;
color: transparent;
background: transparent;
}
#workspaces {
margin-top: 8px;
margin-left: 12px;
margin-bottom: 0;
border-radius: 26px;
background: @background;
transition: none;
}
#workspaces button {
transition: none;
color: @foreground;
background: transparent;
font-size: 16px;
}
#workspaces button.focused {
color: @color6;
}
#workspaces button:hover {
transition: none;
box-shadow: inherit;
text-shadow: inherit;
color: @color5;
}
#mpd {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
background: @background;
transition: none;
color: @foreground;
background: @color4;
}
#mpd.disconnected,
#mpd.stopped {
color: @color8;
background: @background;
}
#tray {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}
#network {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}
#pulseaudio {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}
#temperature {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}
#cpu {
margin-top: 8px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}
#clock {
margin-top: 8px;
margin-left: 8px;
margin-right: 12px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: @foreground;
background: @background;
}