Skip to content

Commit 2fff537

Browse files
authored
Merge pull request #225 from knuton/hide-mouse-cursor
Enable mouse cursor hiding when idle
2 parents c4c9593 + d09fd32 commit 2fff537

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

application.nix

+7
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,13 @@ rec {
141141

142142
defaultSession = sessionName;
143143
};
144+
# Hide mouse cursor when not in use
145+
services.unclutter-xfixes = {
146+
enable = true;
147+
timeout = 10;
148+
threshold = 1;
149+
extraOptions = [ "start-hidden" ];
150+
};
144151

145152
# Firewall configuration
146153
networking.firewall = {

controller/Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- kiosk: Add hotplugging support for HDMI screens
88
- os: Improve installation device selection
99
- os: Add end-to-end system tests
10+
- os: Hide mouse cursor when idle
1011
- controller: Enable spatial navigation using the arrow keys
1112
- controller: Add factory reset button to System Status page
1213
- controller: Add system switch calls to System Status page

0 commit comments

Comments
 (0)