mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Make OSX use old messenger until we know it works
This commit is contained in:
parent
0fbac76de2
commit
1ea983cb9f
1 changed files with 5 additions and 1 deletions
|
@ -935,7 +935,7 @@ export class default_config {
|
||||||
*
|
*
|
||||||
* %TAG will be replaced with your version of Tridactyl for stable builds, or "master" for beta builds
|
* %TAG will be replaced with your version of Tridactyl for stable builds, or "master" for beta builds
|
||||||
*
|
*
|
||||||
* NB: Windows has its own platform-specific default - this is used only for Linux and OSX
|
* NB: Windows and OSX have their own platform-specific defaults - this is used only for Linux, for now. OSX will use this eventually.
|
||||||
*/
|
*/
|
||||||
nativeinstallcmd =
|
nativeinstallcmd =
|
||||||
"curl -fsSl https://raw.githubusercontent.com/tridactyl/native_messenger/master/installers/install.sh -o /tmp/trinativeinstall.sh && sh /tmp/trinativeinstall.sh %TAG"
|
"curl -fsSl https://raw.githubusercontent.com/tridactyl/native_messenger/master/installers/install.sh -o /tmp/trinativeinstall.sh && sh /tmp/trinativeinstall.sh %TAG"
|
||||||
|
@ -1146,6 +1146,10 @@ const platform_defaults = {
|
||||||
'hint -F e => { const pos = tri.dom.getAbsoluteCentre(e); tri.excmds.exclaim_quiet("xdotool mousemove --sync " + window.devicePixelRatio * pos.x + " " + window.devicePixelRatio * pos.y + "; xdotool keydown ctrl+shift; xdotool click 1; xdotool keyup ctrl+shift")}',
|
'hint -F e => { const pos = tri.dom.getAbsoluteCentre(e); tri.excmds.exclaim_quiet("xdotool mousemove --sync " + window.devicePixelRatio * pos.x + " " + window.devicePixelRatio * pos.y + "; xdotool keydown ctrl+shift; xdotool click 1; xdotool keyup ctrl+shift")}',
|
||||||
} as unknown,
|
} as unknown,
|
||||||
},
|
},
|
||||||
|
mac: {
|
||||||
|
nativeinstallcmd:
|
||||||
|
"curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/master/native/install.sh -o /tmp/trinativeinstall.sh && sh /tmp/trinativeinstall.sh %TAG",
|
||||||
|
},
|
||||||
} as Record<browser.runtime.PlatformOs, default_config>
|
} as Record<browser.runtime.PlatformOs, default_config>
|
||||||
|
|
||||||
/** @hidden
|
/** @hidden
|
||||||
|
|
Loading…
Add table
Reference in a new issue