File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ From 87d63562356d27b9c824fe27592c19adc7653148 Mon Sep 17 00:00:00 2001
2+ From: Alexander Roso <github@qwertyuiop.de>
3+ Date: Tue, 10 Feb 2026 20:39:03 +0100
4+ Subject: [PATCH] Fix wayland detection always returning True
5+
6+ ---
7+ src/rofi_rbw/abstractionhelper.py | 2 +-
8+ 1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+ diff --git a/src/rofi_rbw/abstractionhelper.py b/src/rofi_rbw/abstractionhelper.py
11+ index bead570..9836ddd 100644
12+ --- a/src/rofi_rbw/abstractionhelper.py
13+ +++ b/src/rofi_rbw/abstractionhelper.py
14+ @@ -7,4 +7,4 @@ def is_installed(executable: str) -> bool:
15+
16+
17+ def is_wayland() -> bool:
18+ - return os.environ.get("WAYLAND_DISPLAY", False) is not None
19+ + return os.environ.get("WAYLAND_DISPLAY") is not None
Original file line number Diff line number Diff line change 11# Template file for 'rofi-rbw'
22pkgname=rofi-rbw
33version=1.6.0
4- revision=2
4+ revision=3
55build_style=python3-pep517
66hostmakedepends="hatchling"
77depends="python3 python3-ConfigArgParse rbw"
You can’t perform that action at this time.
0 commit comments