-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
657a695
commit cfd79b1
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<a name="installation"> | ||
<h2>Installation</h2> | ||
</a> | ||
<mat-tab-group> | ||
<mat-tab label="Arch"> | ||
<pre><code> | ||
yay -S safeeyes | ||
</code></pre> | ||
<pre><code> | ||
packer -S safeeyes | ||
</code></pre> | ||
</mat-tab> | ||
<mat-tab label="Debian"> | ||
<pre><code> | ||
sudo apt-get install gir1.2-appindicator3-0.1 gir1.2-notify-0.7 python3-psutil python3-xlib xprintidle python3-pip | ||
sudo pip3 install safeeyes | ||
sudo update-icon-caches /usr/share/icons/hicolor | ||
</code></pre> | ||
</mat-tab> | ||
<mat-tab label="Fedora"> | ||
If you want to use Smart Pause plugin, install the latest <code>xprintidle</code> from: <a href="https://copr.fedorainfracloud.org/coprs/alonid/xprintidle/">alonid/xprintidle</a> | ||
<pre><code> | ||
sudo dnf install libappindicator-gtk3 python3-psutil | ||
sudo pip3 install safeeyes | ||
sudo gtk-update-icon-cache /usr/share/icons/hicolor | ||
</code></pre> | ||
</mat-tab> | ||
<mat-tab label="Gentoo"> | ||
<pre><code> | ||
sudo emerge -av x11-misc/safeeyes | ||
</code></pre> | ||
</mat-tab> | ||
<mat-tab label="Ubuntu & Linux Mint"> | ||
<pre><code> | ||
sudo add-apt-repository ppa:safeeyes-team/safeeyes | ||
sudo apt update | ||
sudo apt install safeeyes | ||
</code></pre> | ||
</mat-tab> | ||
<mat-tab label="Other Linux"> | ||
Install the following dependencies: | ||
<pre><code> | ||
gir1.2-appindicator3-0.1 gir1.2-notify-0.7 libappindicator-gtk3 python3-psutil xprintidle | ||
</code></pre> Install Safe Eyes: | ||
<pre><code> | ||
sudo pip3 install safeeyes | ||
</code></pre> | ||
</mat-tab> | ||
</mat-tab-group> |