2017-12-27 22:21:18 +00:00
|
|
|
<div>
|
|
|
|
<h1 align="center">Webpin</h1>
|
2018-10-11 23:26:57 +01:00
|
|
|
<h3 align="center"><img src="data/icons/64/com.github.artemanufrij.webpin.svg"/><br>A simple app to pin websites on the desktop</h3>
|
2017-12-27 22:21:18 +00:00
|
|
|
<p align="center">Designed for <a href="https://elementary.io">elementary OS</p>
|
|
|
|
</div>
|
2018-02-04 22:46:09 +00:00
|
|
|
|
2018-09-01 19:23:54 +01:00
|
|
|
[![Build Status](https://travis-ci.org/artemanufrij/webpin.svg?branch=master)](https://travis-ci.org/artemanufrij/webpin)
|
|
|
|
|
2018-02-04 22:46:09 +00:00
|
|
|
### Donate
|
2018-02-05 17:16:09 +00:00
|
|
|
<a href="https://www.paypal.me/ArtemAnufrij">PayPal</a> | <a href="https://liberapay.com/Artem/donate">LiberaPay</a> | <a href="https://www.patreon.com/ArtemAnufrij">Patreon</a>
|
2018-02-04 22:46:09 +00:00
|
|
|
|
2017-12-27 22:21:18 +00:00
|
|
|
<p align="center">
|
|
|
|
<a href="https://appcenter.elementary.io/com.github.artemanufrij.webpin">
|
|
|
|
<img src="https://appcenter.elementary.io/badge.svg" alt="Get it on AppCenter">
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<p align="center">
|
2018-10-11 20:58:30 +01:00
|
|
|
<img src="screenshots/Screenshot.png"/>
|
2018-04-23 19:18:43 +01:00
|
|
|
</br>
|
|
|
|
Pin your any favourite website on Applications Menu or Plank like a regular desktop app
|
|
|
|
</br></br>
|
2018-10-11 20:58:30 +01:00
|
|
|
<img src="screenshots/Apps.png"/>
|
2017-12-27 22:21:18 +00:00
|
|
|
</p>
|
|
|
|
|
2018-04-23 19:16:43 +01:00
|
|
|
|
|
|
|
## Install from Github.
|
|
|
|
|
|
|
|
As first you need elementary SDK
|
|
|
|
```
|
|
|
|
sudo apt install elementary-sdk
|
|
|
|
```
|
|
|
|
|
|
|
|
Install dependencies
|
|
|
|
```
|
|
|
|
sudo apt install libwebkit2gtk-4.0-dev
|
|
|
|
```
|
|
|
|
|
|
|
|
Clone repository and change directory
|
|
|
|
```
|
|
|
|
git clone https://github.com/artemanufrij/webpin.git
|
|
|
|
cd webpin
|
|
|
|
```
|
|
|
|
|
2019-04-17 17:58:20 +01:00
|
|
|
Compile, install and start Webpin on your system
|
2018-04-23 19:16:43 +01:00
|
|
|
```
|
2018-10-11 21:12:39 +01:00
|
|
|
meson build --prefix=/usr
|
2018-04-23 19:16:43 +01:00
|
|
|
cd build
|
2018-10-11 21:12:39 +01:00
|
|
|
sudo ninja install
|
2018-04-23 19:16:43 +01:00
|
|
|
com.github.artemanufrij.webpin
|
2018-10-11 21:12:39 +01:00
|
|
|
```
|