diff --git a/README.md b/README.md index cc02131..cfabec2 100644 --- a/README.md +++ b/README.md @@ -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;`. diff --git a/config/waybar/modules.json b/config/waybar/modules.json index dae1951..657d6a5 100644 --- a/config/waybar/modules.json +++ b/config/waybar/modules.json @@ -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": { diff --git a/config/waybar/style.css b/config/waybar/style.css index 80a9d4d..617280a 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -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; }