Skip to content

Commit

Permalink
fix: make the install procedure on linux use XDG_CONFIG_HOME (tomas…
Browse files Browse the repository at this point in the history
  • Loading branch information
evantj authored and tam1m committed Oct 2, 2023
1 parent 161a5b7 commit b8a5ec1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ Most notable features:
On Linux and macOS these terminal commands can be used to install or update uosc (if wget and unzip are installed):

```sh
mkdir -pv ~/.config/mpv/script-opts/
rm -rf ~/.config/mpv/scripts/uosc_shared
config_dir="${XDG_CONFIG_HOME:-~/.config}"
mkdir -pv "$config_dir"/mpv/script-opts/
rm -rf "$config_dir"/mpv/scripts/uosc_shared
wget -P /tmp/ https://github.com/tomasklaen/uosc/releases/latest/download/uosc.zip
unzip -od ~/.config/mpv/ /tmp/uosc.zip
unzip -od "$config_dir"/mpv/ /tmp/uosc.zip
rm -fv /tmp/uosc.zip
```

Expand Down

0 comments on commit b8a5ec1

Please sign in to comment.