mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Some small fixes to the native messenger installer
This commit is contained in:
parent
d94a44cfbf
commit
e8f216f441
3 changed files with 6 additions and 6 deletions
|
@ -16,10 +16,10 @@ trap "echoerr 'Failed to install!'" ERR
|
|||
|
||||
# To install, curl -fsSl 'url to this script' | bash
|
||||
|
||||
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config/tridactyl}"
|
||||
XDG_DATA_HOME="${XDG_LOCAL_HOME:-$HOME/.local/share/tridactyl}"
|
||||
manifest_loc="https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/tridactyl.json"
|
||||
native_loc="https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/native_main.py"
|
||||
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/tridactyl"
|
||||
XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/tridactyl"
|
||||
manifest_loc="https://raw.githubusercontent.com/tridactyl/tridactyl/master/native/tridactyl.json"
|
||||
native_loc="https://raw.githubusercontent.com/tridactyl/tridactyl/master/native/native_main.py"
|
||||
|
||||
# Decide where to put the manifest based on OS
|
||||
case "$OSTYPE" in
|
||||
|
|
|
@ -607,7 +607,7 @@ class default_config {
|
|||
/**
|
||||
* Set this to something weird if you want to have fun every time Tridactyl tries to update its native messenger.
|
||||
*/
|
||||
nativeinstallcmd = "curl -fsSl https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/install.sh | bash"
|
||||
nativeinstallcmd = "curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/master/native/install.sh | bash"
|
||||
|
||||
/**
|
||||
* Set this to something weird if you want to have fun every time Tridactyl tries to update its native messenger.
|
||||
|
|
|
@ -398,7 +398,7 @@ export async function native() {
|
|||
}
|
||||
|
||||
/**
|
||||
* Simply copies "curl -fsSl https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/install.sh | bash" to the clipboard and tells the user to run it.
|
||||
* Simply copies "curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/master/native/install.sh | bash" to the clipboard and tells the user to run it.
|
||||
*/
|
||||
//#background
|
||||
export async function installnative() {
|
||||
|
|
Loading…
Add table
Reference in a new issue