Skip to content
Snippets Groups Projects
Commit 606662b5 authored by Lukas Holecek's avatar Lukas Holecek Committed by GitHub
Browse files

Add more detailed installation info for Ubuntu

parent f0cae938
No related branches found
No related tags found
No related merge requests found
...@@ -59,12 +59,20 @@ On Windows you can install [Chocolatey package](https://chocolatey.org/packages/ ...@@ -59,12 +59,20 @@ On Windows you can install [Chocolatey package](https://chocolatey.org/packages/
## Ubuntu ## Ubuntu
Add the repository with the following commands to automatically receive the latest version: Add the repository with the following commands (this needs to be done only once).
$ ubuntu_version=$(lsb_release -s -r) ```bash
$ repo_url="http://download.opensuse.org/repositories/home:/lukho:/copyq/xUbuntu_$ubuntu_version" url="http://download.opensuse.org/repositories/home:/lukho:/copyq/xUbuntu_$(lsb_release -s -r)"
$ sudo add-apt-repository "deb $repo_url ./" sudo add-apt-repository "deb $url ./"
$ wget -q -O - "$repo_url/Release.key" | sudo apt-key add - wget -q -O - "$url/Release.key" | sudo apt-key add -
```
Install the app from Ubuntu Sotware Center or from command line.
```bash
apt update
apt install copyq
```
## Starting CopyQ ## Starting CopyQ
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment