Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryonakano/pinit
Pin portable apps to the launcher
https://github.com/ryonakano/pinit
dock flathub flatpak gnome gtk launcher-utility libadwaita meson vala wingpanel
Last synced: 11 days ago
JSON representation
Pin portable apps to the launcher
- Host: GitHub
- URL: https://github.com/ryonakano/pinit
- Owner: ryonakano
- License: gpl-3.0
- Created: 2021-09-19T15:45:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T09:44:12.000Z (7 months ago)
- Last Synced: 2024-04-13T22:11:55.419Z (7 months ago)
- Topics: dock, flathub, flatpak, gnome, gtk, launcher-utility, libadwaita, meson, vala, wingpanel
- Language: Vala
- Homepage:
- Size: 3.3 MB
- Stars: 43
- Watchers: 1
- Forks: 11
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Pin It!
![App window in the light mode](data/screenshots/gnome/screenshot-light.png#gh-light-mode-only)![App window in the dark mode](data/screenshots/gnome/screenshot-dark.png#gh-dark-mode-only)
Pin shortcuts for portable apps like raw executable files, AppImage files, etc. to the app launcher on your desktop.
Other features include:
- Edit or delete created app entries without opening the file manager
- Automatically add execution permission to the file you select## Installation
### From Flathub or AppCenter (Recommended)
You can install Pin It! from Flathub:[](https://flathub.org/apps/com.github.ryonakano.pinit)
You should install Pin It! from AppCenter if you're on elementary OS. This build is optimized for elementary OS:
[![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.ryonakano.pinit)
### From Source Code (Flatpak)
You'll need `flatpak` and `flatpak-builder` commands installed on your system.Run `flatpak remote-add` to add Flathub remote for dependencies:
```
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
```To build and install, use `flatpak-builder`, then execute with `flatpak run`:
```
flatpak-builder builddir --user --install --force-clean --install-deps-from=flathub build-aux/flathub/com.github.ryonakano.pinit.Devel.yml
flatpak run com.github.ryonakano.pinit.Devel
```### From Source Code (Native)
You'll need the following dependencies to build:* blueprint-compiler
* libadwaita-1-dev (>= 1.5.0)
* libgee-0.8-dev
* libglib2.0-dev (>= 2.74)
* libgranite-7-dev (>= 7.2.0, required only when you build with `granite` feature enabled)
* libgtk-4-dev (>= 4.10)
* meson (>= 0.58.0)
* valacRun `meson setup` to configure the build environment and run `meson compile` to build:
```bash
meson setup builddir --prefix=/usr
meson compile -C builddir
```To install, use `meson install`, then execute with `com.github.ryonakano.pinit`:
```bash
meson install -C builddir
com.github.ryonakano.pinit
```## Contributing
Please refer to [the contribution guideline](CONTRIBUTING.md) if you would like to:- submit bug reports / feature requests
- propose coding changes
- translate the project## Get Support
Need help in use of the app? Refer to [the discussions page](https://github.com/ryonakano/pinit/discussions) to search for existing discussions or [start a new discussion](https://github.com/ryonakano/pinit/discussions/new/choose) if none is relevant.## History
The original idea of the app is inspired from [Desktopius by Alex K](https://github.com/alexkdeveloper/dfc).