This commit is contained in:
Gabriel Davila 2022-06-07 23:36:57 -03:00 committed by GitHub
parent 1dec01f52b
commit 25015cccbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View file

@ -84,21 +84,22 @@ export class Store {
], ],
"webRemote": [ "webRemote": [
"CommandOrControl", "CommandOrControl",
process.platform == "darwin" ? "Option" : (process.platform == "linux" ? "Shift" : "Alt"),
"W" "W"
], ],
"audioSettings": [ "audioSettings": [
"CommandOrControl", "CommandOrControl",
process.platform == "darwin" ? "Option" : "Alt", process.platform == "darwin" ? "Option" : (process.platform == "linux" ? "Shift": "Alt"),
"A" "A"
], ],
"pluginMenu": [ "pluginMenu": [
"CommandOrControl", "CommandOrControl",
process.platform == "darwin" ? "Option" : "Alt", process.platform == "darwin" ? "Option" : (process.platform == "linux" ? "Shift": "Alt"),
"P" "P"
], ],
"castToDevices": [ "castToDevices": [
"CommandOrControl", "CommandOrControl",
process.platform == "darwin" ? "Option" : "Alt", process.platform == "darwin" ? "Option" : (process.platform == "linux" ? "Shift": "Alt"),
"C" "C"
], ],
"settings": [ "settings": [

View file

@ -233,10 +233,10 @@
app.cfg.general.keybindings.albums = [app.platform == "darwin" ? "Command" : "Control", "A"]; app.cfg.general.keybindings.albums = [app.platform == "darwin" ? "Command" : "Control", "A"];
app.cfg.general.keybindings.artists = [app.platform == "darwin" ? "Command" : "Control", "D"]; app.cfg.general.keybindings.artists = [app.platform == "darwin" ? "Command" : "Control", "D"];
app.cfg.general.keybindings.togglePrivateSession = [app.platform == "darwin" ? "Command" : "Control", "P"]; app.cfg.general.keybindings.togglePrivateSession = [app.platform == "darwin" ? "Command" : "Control", "P"];
app.cfg.general.keybindings.webRemote = [app.platform == "darwin" ? "Command" : "Control", "W"]; app.cfg.general.keybindings.webRemote = [app.platform == "darwin" ? "Command" : "Control",app.platform == "darwin" ? "Option" : (app.platform == "linux" ? "Shift" : "Alt"), "W"];
app.cfg.general.keybindings.audioSettings = [app.platform == "darwin" ? "Option" : "Alt", "A"]; app.cfg.general.keybindings.audioSettings = [app.platform == "darwin" ? "Command" : "Control",app.platform == "darwin" ? "Option" : (app.platform == "linux" ? "Shift" : "Alt"), "A"];
app.cfg.general.keybindings.pluginMenu = [app.platform == "darwin" ? "Option" : "Alt", "P"]; app.cfg.general.keybindings.pluginMenu = [app.platform == "darwin" ? "Command" : "Control",app.platform == "darwin" ? "Option" : (app.platform == "linux" ? "Shift" : "Alt"), "P"];
app.cfg.general.keybindings.castToDevices = [app.platform == "darwin" ? "Option" : "Alt", "C"]; app.cfg.general.keybindings.castToDevices = [app.platform == "darwin" ? "Command" : "Control",app.platform == "darwin" ? "Option" : (app.platform == "linux" ? "Shift" : "Alt"), "C"];
app.cfg.general.keybindings.settings = [app.platform == "darwin" ? "Command" : "Control", ","]; app.cfg.general.keybindings.settings = [app.platform == "darwin" ? "Command" : "Control", ","];
app.cfg.general.keybindings.openDeveloperTools = [app.platform == "darwin" ? "Command" : "Control", app.platform == "darwin" ? "Option" : "Shift", "I"]; app.cfg.general.keybindings.openDeveloperTools = [app.platform == "darwin" ? "Command" : "Control", app.platform == "darwin" ? "Option" : "Shift", "I"];
notyf.success(app.getLz('settings.notyf.general.keybindings.update.success')); notyf.success(app.getLz('settings.notyf.general.keybindings.update.success'));