Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions niri-screensaver/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Item {
"NOW_PLAYING_DURATION=\"" + _shEscape(s.nowPlayingDuration || 3) + "\"",
"LOGO_FILE=\"" + _shEscape(s.logoPath) + "\"",
"CURSOR_HIDE=\"" + bool(s.cursorHide) + "\"",
"CURSOR_WARP=\"" + bool(s.cursorWarp) + "\"",
"DISMISS_ON_KEY=\"" + bool(s.dismissOnKey) + "\"",
"RANDOM_LOGO=\"" + bool(s.randomLogo) + "\"",
"LOGO_DIR=\"" + _shEscape(s.logoDir) + "\"",
Expand Down
2 changes: 1 addition & 1 deletion niri-screensaver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ installed `share/logos/`) and auto-refreshes when files appear or
disappear; the fade lists come from `niri-screensaver-ctl effects`.

Settings not surfaced in the UI (`FRAME_RATE`, `CLOCK_DURATION`,
`CLOCK_FONT`, `CURSOR_HIDE`, `DISMISS_ON_KEY`) can be edited directly in
`CLOCK_FONT`, `CURSOR_HIDE`, `CURSOR_WARP`, `DISMISS_ON_KEY`) can be edited directly in
`~/.config/niri-screensaver/config` — they round-trip through the plugin on
next reload.

Expand Down
3 changes: 2 additions & 1 deletion niri-screensaver/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "niri-screensaver",
"name": "Niri Screensaver",
"version": "0.7.0",
"version": "0.8.0",
"minNoctaliaVersion": "4.7.0",
"author": "jfreed-dev",
"license": "GPL-3.0-only",
Expand Down Expand Up @@ -34,6 +34,7 @@
"nowPlayingDuration": 3,
"logoPath": "",
"cursorHide": true,
"cursorWarp": false,
"dismissOnKey": true,
"randomLogo": false,
"logoDir": "",
Expand Down
Loading