This commit is contained in:
2025-03-13 20:15:03 +02:00
parent dd7fbfd7e4
commit 66f7bc1c2d
3 changed files with 22 additions and 6 deletions

View File

@@ -46,3 +46,11 @@ mkdir -p /home/ocbwoy3/Desktop
mkdir -p /home/ocbwoy3/Documents
mkdir -p /home/ocbwoy3/Projects
```
To avoid the same mistake of not not having internet, add Cloudflare's DNS servers to `/etc/resolv.conf`. (as root)
```
nameserver 1.1.1.1
```
Or you know, use your ISP's unsafe and possibly privacy-invasive pre-defined DNS nameservers with `networking.resolvconf.enable = true;`.

View File

@@ -68,7 +68,8 @@
"clock": {
"format": "{:%H:%M}",
"tooltip-format": "{:%A %d %B %Y}",
"format-alt": "{:%Y-%m-%d}"
"format-alt": "{:%H:%M:%S}",
"interval": 1
},
"pulseaudio": {
@@ -86,13 +87,14 @@
"pulseaudio#lol": {
"format": "{volume}%",
"format-muted": "0%",
"format-source": " {volume}%",
"format-source-muted": " 0%",
"format-source": "{volume}%",
"format-source-muted": "0%",
"format-icons": {
"default": ["", "", ""]
},
"tooltip-format": "{desc}\n{icon} {volume}%",
"on-click": "GTK_THEME=catppuccin-mocha-blue-standard+default pavucontrol"
"on-click": "GTK_THEME=catppuccin-mocha-blue-standard+default pavucontrol",
"class": "pulseaudio-lol"
},
"network": {

View File

@@ -1,5 +1,3 @@
/* Global */
* {
font-family: 'Symbols Nerd Font', 'Geist';
border: none;
@@ -23,6 +21,10 @@ window#waybar {
border: 2px solid #89b4fa;
}
#clock {
font-family: "Geist Mono";
}
#traygroup, #custom-music, #window, #workspaces, #custom-regretevator_state {
background-color: #1e1e2e;
padding-left: 5px;
@@ -92,6 +94,10 @@ window#waybar {
margin: 0px 0px 0px 0px;
}
#pulseaudio.lol {
padding: 0px 5px 0px 2px;
}
#tray > .passive {
-gtk-icon-effect: dim;
}