add configs and some media

This commit is contained in:
nubo
2024-04-17 19:02:50 -07:00
parent a59757d630
commit 68a55fe348
43 changed files with 5004 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
{
"layer": "top",
"modules-left": ["custom/arch", "hyprland/workspaces"],
"modules-center": ["clock"],
"modules-right": ["backlight", "pulseaudio", "bluetooth", "network", "battery"],
"custom/arch": {
"format": "  ",
"tooltip": false,
"on-click": "sh $HOME/.config/rofi/bin/powermenu"
},
"hyprland/workspaces": {
"format": "{name}",
"format": "{icon}",
"tooltip": false,
"all-outputs": true,
"format-icons": {
"active": "",
"default": ""
}
},
"clock": {
"format": "<span color='#b4befe'> </span>{:%H:%M}",
},
"backlight": {
"device": "intel_backlight",
"format": "<span color='#b4befe'>{icon}</span> {percent}%",
"format-icons": ["", "", "", "", "", "", "", "", ""]
},
"pulseaudio": {
"format": "<span color='#b4befe'>{icon}</span> {volume}%",
"format-muted": "",
"tooltip": false,
"format-icons": {
"headphone": "",
"default": ["", "", "󰕾", "󰕾", "󰕾", "", "", ""]
},
"scroll-step": 1,
},
"bluetooth": {
"format": "<span color='#b4befe'></span> {status}",
"format-disabled": "", // an empty format will hide the module
"format-connected": "<span color='#b4befe'></span> {num_connections}",
"tooltip-format": "{device_enumerate}",
"tooltip-format-enumerate-connected": "{device_alias} {device_address}"
},
"network": {
"interface": "wlan0",
"format": "{ifname}",
"format-wifi": "<span color='#b4befe'> </span>{essid}",
"format-ethernet": "{ipaddr}/{cidr} ",
"format-disconnected": "<span color='#b4befe'>󰖪 </span>No Network",
"tooltip": false,
},
"battery": {
"format": "<span color='#b4befe'>{icon}</span> {capacity}%",
"format-icons": ["", "", "", "", "", "", "", "", "", ""],
"format-charging": "<span color='#b4befe'></span> {capacity}%",
"tooltip": false,
},
}

View File

@@ -0,0 +1,60 @@
* {
border: none;
font-family: 'Fira Code', 'Symbols Nerd Font Mono';
font-size: 16px;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
min-height: 45px;
}
window#waybar {
background: transparent;
}
#custom-arch, #workspaces {
border-radius: 10px;
background-color: #11111b;
color: #b4befe;
margin-top: 15px;
margin-right: 15px;
padding-top: 1px;
padding-left: 10px;
padding-right: 10px;
}
#custom-arch {
font-size: 20px;
margin-left: 15px;
color: #b4befe;
}
#workspaces button {
background: #11111b;
color: #b4befe;
}
#clock, #backlight, #pulseaudio, #bluetooth, #network, #battery{
border-radius: 10px;
background-color: #11111b;
color: #cdd6f4;
margin-top: 15px;
padding-left: 10px;
padding-right: 10px;
margin-right: 15px;
}
#backlight, #bluetooth {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
padding-right: 5px;
margin-right: 0
}
#pulseaudio, #network {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
padding-left: 5px;
}
#clock {
margin-right: 0;
}