Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Waybar temperature (incorrect value of 32°F) #24

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix Waybar not whowing workspaces
bill-chamal committed Jul 20, 2024
commit 9d8ee2561d1de033fe52ddd92143d57ed90cce3d
23 changes: 7 additions & 16 deletions waybar/config.jsonc
Original file line number Diff line number Diff line change
@@ -6,28 +6,19 @@
"passthrough": false,
"gtk-layer-shell": true,
"height": 50,
"modules-left": ["clock","custom/weather","wlr/workspaces"],
"modules-left": ["clock","custom/weather","hyprland/workspaces"],
"modules-center": ["hyprland/window"],
"modules-right": ["network", "bluetooth", "temperature","custom/power_profile","battery","backlight","pulseaudio","pulseaudio#microphone","tray"],
"hyprland/window": {
"format": "{}"
},

"wlr/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"on-click": "activate",
"persistent_workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": [],
"6": [],
"7": [],
"8": [],
"9": [],
"10": []
"hyprland/workspaces": {
"format": "{name}",

"persistent-workspaces": {
"*": 3, // 5 workspaces by default on every monitor
"HDMI-A-1": 3 // but only three on HDMI-A-1
}
},