Skip to content

Commit

Permalink
Fixes #8: Updated installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
gornostal committed Aug 27, 2021
1 parent 0b95812 commit 9307456
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion _includes/index/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
<b class="distro-name">Ubuntu (Debian)</b> <span id="release-deb"><i>loading link...</i></span>
</p>

Install via PPA:<br />
<p id="ubuntu-ppa"></p>
<code>sudo apt install ./packagename.deb</code> or just double click.<br>

Alternatively, you can download the <code>.deb</code> file and run:<br />
<code>sudo apt install ./ulauncher_x.y.z_all.deb</code> or just double click.<br>
</li>
<li class="distro-icon distro-archlinux">
<p>
Expand Down
4 changes: 2 additions & 2 deletions assets/js/releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jQuery(function($) {
'git clone https://aur.archlinux.org/ulauncher-git.git && cd ulauncher-git && makepkg -is';
$('#aur-shell').html(aurShell);

var ubuntuPpa = selectStable ? '<code>ppa:agornostal/ulauncher</code>' :
'<code>ppa:agornostal/ulauncher-dev</code>';
var ubuntuPpa = selectStable ? '<code>sudo add-apt-repository ppa:agornostal/ulauncher && sudo apt update && sudo apt install ulauncher</code>' :
'<code>sudo add-apt-repository ppa:agornostal/ulauncher-dev && sudo apt update && sudo apt install ulauncher</code>';
$('#ubuntu-ppa').html(ubuntuPpa);

renderReleaseLinks(selectStable ? stable : dev);
Expand Down

0 comments on commit 9307456

Please sign in to comment.