Skip to content

Commit

Permalink
added a hotkey on ctrl+0 for settings. fixes #91
Browse files Browse the repository at this point in the history
  • Loading branch information
Mastermindzh committed Jan 23, 2022
1 parent 5a65f60 commit 53cecbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To install and work with the code on this project follow these steps:
- Custom hotkeys ([source](https://defkey.com/tidal-desktop-shortcuts))
- API for status and playback
- Custom [integrations](#integrations)
- [Settings feature](./docs/settings.png) to disable certain functionality. (`ctrl+=`)
- [Settings feature](./docs/settings.png) to disable certain functionality. (`ctrl+=` or `ctrl+0`)
- AlbumArt in integrations ([best-effort](https://github.com/Mastermindzh/tidal-hifi/pull/88#pullrequestreview-840814847))

## Integrations
Expand Down
3 changes: 3 additions & 0 deletions src/preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ function addHotKeys() {
hotkeys.add("control+=", function () {
ipcRenderer.send(globalEvents.showSettings);
});
hotkeys.add("control+0", function () {
ipcRenderer.send(globalEvents.showSettings);
});
}

/**
Expand Down

0 comments on commit 53cecbc

Please sign in to comment.