File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ There are three categories of options:
213
213
* ` withGnome ` , ` bool ` – whether to enable Gnome support
214
214
* ` withX11 ` , ` bool ` – whether to enable X11 support
215
215
* ` withKDE ` , ` bool ` – whether to enable KDE wayland support
216
+ * ` withHypr ` , ` bool ` – whether to enable non-wlroots based Hyprland support
216
217
217
218
All of them are false by default, which means no application-specific remaps work as xremap does not know which application is being used.
218
219
Original file line number Diff line number Diff line change 18
18
withSway = mkEnableOption "support for Sway (consider switching to wlroots)" ;
19
19
withGnome = mkEnableOption "support for Gnome" ;
20
20
withX11 = mkEnableOption "support for X11" ;
21
- withHypr = mkEnableOption "support for Hyprland (consider switching to wlroots) " ;
22
- withWlroots = mkEnableOption "support for wlroots-based compositors (Sway, Hyprland, etc.)" ;
21
+ withHypr = mkEnableOption "support for post- wlroots Hyprland " ;
22
+ withWlroots = mkEnableOption "support for wlroots-based compositors (Sway, old Hyprland, etc.)" ;
23
23
withKDE = mkEnableOption "support KDE-Plasma Wayland" ;
24
24
enable = mkOption {
25
25
type = types . bool ;
66
66
else if cfg . withX11 then
67
67
selfPkgs' . xremap-x11
68
68
else if cfg . withHypr then
69
- lib . warn "Consider using withWlroots as recommended by upstream" selfPkgs' . xremap-hypr
69
+ selfPkgs' . xremap-hypr
70
70
else if cfg . withKDE then
71
71
selfPkgs' . xremap-kde
72
72
else
Original file line number Diff line number Diff line change 54
54
xremap-sway = mkUpstreamDeprecatedNote "sway" ;
55
55
xremap-gnome = packageWithFeature "gnome" ;
56
56
xremap-x11 = packageWithFeature "x11" ;
57
- xremap-hypr = mkUpstreamDeprecatedNote "hypr" ;
57
+ xremap-hypr = packageWithFeature "hypr" ;
58
58
xremap-kde = packageWithFeature "kde" ;
59
59
}
You can’t perform that action at this time.
0 commit comments