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 overview widget for multi monitors #1049

Merged
merged 9 commits into from
Feb 15, 2025
Prev Previous commit
Next Next commit
Add another missing semicolon
Toshimichi0915 committed Jan 15, 2025
commit c06af2c47c586cd2e088cc143e96d644a598702b
2 changes: 1 addition & 1 deletion .config/ags/modules/overview/overview_hyprland.js
Original file line number Diff line number Diff line change
@@ -415,7 +415,7 @@ export default () => {
})
.hook(App, (box, name, visible) => { // Update on open
if (name == 'overview' && visible) {
overviewMonitor.value = Hyprland.active.monitor.id
overviewMonitor.value = Hyprland.active.monitor.id;
box.attribute.update(box);
}
})