copy laptop home configs
This commit is contained in:
Executable
+49
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 26,
|
||||
"spacing": 3,
|
||||
|
||||
"modules-left": ["hyprland/workspaces"],
|
||||
"modules-center": ["clock"],
|
||||
"modules-right": ["wireplumber", "group/bat", "group/net"],
|
||||
|
||||
"group/bat": {
|
||||
"orientation": "horizontal",
|
||||
"modules": ["battery"]
|
||||
},
|
||||
"group/net": {
|
||||
"orientation": "horizontal",
|
||||
"modules": ["network"]
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "{name}",
|
||||
"sort-by-number": true,
|
||||
"persistent-workspaces": {}
|
||||
},
|
||||
"clock": {
|
||||
"format": "{:%d.%m.%Y | %H:%M:%S}",
|
||||
"interval": 1
|
||||
},
|
||||
"wireplumber": {
|
||||
"format": "\udb81\udd7e {volume}%",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 5
|
||||
},
|
||||
"battery": {
|
||||
"bat": "BAT0",
|
||||
"interval": 60,
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": ["\uf244", "\uf243", "\uf242", "\uf241", "\uf240"],
|
||||
},
|
||||
"network": {
|
||||
"format": "",
|
||||
"format-ethernet": "\udb83\udc9d ",
|
||||
"format-wifi": "{icon} ",
|
||||
"format-disconnected": "\udb83\udc9c ",
|
||||
"format-icons": ["\udb82\udd2f", "\udb82\udd1f", "\udb82\udd22", "\udb82\udd25", "\udb82\udd28"],
|
||||
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": "{ifname}",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
}
|
||||
}
|
||||
Executable
+40
@@ -0,0 +1,40 @@
|
||||
@define-color foreground #eff0f1;
|
||||
@define-color foreground-inactive #7f8c8d;
|
||||
@define-color background #232629;
|
||||
@define-color background-alt #31363b;
|
||||
|
||||
* {
|
||||
font-family: UbuntuMono Nerd Font;
|
||||
font-size: 16px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#waybar {
|
||||
color: @foreground;
|
||||
background-color: @background;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @foreground-inactive;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @foreground;
|
||||
background-color: @background-alt;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
#wireplumber,
|
||||
#bat,
|
||||
#net {
|
||||
background-color: @background-alt;
|
||||
border-radius: 3px;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
#battery,
|
||||
#network {}
|
||||
Reference in New Issue
Block a user