Files
scripts/waybar/config
Adam French b0a45417ea Add Obsidian to waybar, comment out nvidia-specific env vars
Add Obsidian as a waybar app launcher button alongside existing
launchers. Comment out nvidia-specific environment variables in
hypr/base.conf (LIBVA_DRIVER_NAME, GBM_BACKEND, etc.) so the
config works on all systems by default. Also includes prior
uncommitted changes: .gitignore updates, hyprpaper config,
package list updates, and various hypr config refinements.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-12 22:53:53 +01:00

146 lines
3.1 KiB
Plaintext

{
"layer": "bottom",
"position": "bottom",
"height": 30,
"spacing": 0,
"modules-left": ["hyprland/workspaces", "hyprland/submap", "custom/steam", "custom/waterfox", "custom/discord", "custom/spotify", "custom/obsidian"],
"modules-right": [
"custom/greetings",
"custom/history",
"custom/claudebar",
"pulseaudio",
"cpu",
"memory",
"disk",
"network",
"battery",
"clock",
"tray"
],
"hyprland/workspaces": {
"disable-scroll": true,
"on-click": "activate",
"format": "{icon}",
"format-icons": {
"1": "ツ",
"2": "ಠ‿ಠ",
"3": "◕‿◕",
"4": "ʘ‿ʘ",
"5": "˘◡˘",
"6": "◠‿◠",
"7": "ᵔᴥᵔ",
"8": "æ"
}
},
"hyprland/submap": {
"format": " {} "
},
"custom/greetings": {
"exec": "echo $USER!",
"interval": "once",
"format": "{}",
"tooltip": false
},
"custom/history": {
"exec": "~/scripts/sh/waybar-history",
"format": "$ {}",
"tooltip": false
},
"custom/claudebar": {
"exec": "claudebar",
"return-type": "json",
"interval": 60,
"signal": 13,
"tooltip": true,
"on-click": "xdg-open https://claude.ai/settings/usage"
},
"pulseaudio": {
"format": "VOL: {volume}%",
"format-muted": "VOL: mute",
"on-click": "pavucontrol",
"tooltip": false
},
"cpu": {
"format": "CPU: {usage}%",
"interval": 1,
"tooltip": false
},
"memory": {
"format": "MEM: {used:0.1f}G/{total:0.1f}G",
"interval": 5,
"tooltip": false
},
"disk": {
"format": "DISK: {used}/{total}",
"interval": 30,
"path": "/",
"tooltip": false
},
"network": {
"format-wifi": "WIFI: {essid}",
"format-ethernet": "ETH: {ifname}",
"format-disconnected": "WIFI: --",
"interval": 10,
"tooltip": false
},
"battery": {
"format": "BAT: {capacity}%",
"format-charging": "BAT: {capacity}% CHR",
"format-plugged": "BAT: {capacity}% PLG",
"interval": 30,
"tooltip": false
},
"clock": {
"format": "{:%Y-%m-%d %H:%M}",
"interval": 60,
"tooltip": false
},
"tray": {
"spacing": 10
},
"custom/steam": {
"format": "Steam",
"on-click": "steam",
"tooltip-format": "Steam"
},
"custom/waterfox": {
"format": "Waterfox",
"on-click": "waterfox",
"tooltip-format": "Waterfox"
},
"custom/discord": {
"format": "Discord",
"on-click": "snap run discord",
"tooltip-format": "Discord"
},
"custom/spotify": {
"format": "Spotify",
"on-click": "snap run spotify",
"tooltip-format": "Spotify"
},
"custom/obsidian": {
"format": "Obsidian",
"on-click": "obsidian",
"tooltip-format": "Obsidian"
}
}