https://github.com/tethik/launchy
Simple application launcher for linux. Go / GTK3
https://github.com/tethik/launchy
Last synced: 5 months ago
JSON representation
Simple application launcher for linux. Go / GTK3
- Host: GitHub
- URL: https://github.com/tethik/launchy
- Owner: Tethik
- Created: 2020-07-27T17:04:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-12-15T09:27:43.000Z (6 months ago)
- Last Synced: 2025-12-18T08:46:50.818Z (6 months ago)
- Language: Go
- Size: 231 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
A very basic application launcher for Linux. It scans desktop entries for applications, and that's all. No background
process required.

## Dependencies
Uses Go 1.22 (and [gotk3](https://github.com/gotk3/gotk3)), but may be compatible with other versions.
Other library dependencies for compiling on Ubuntu:
```
libgtk-3-dev
libglib2.0-dev
libgdk-pixbuf2.0-dev
```
## Installing
```sh
make # note: fetching and compiling gotk3 for the first time may take a while.
sudo make install
```
If you want to add some power/system shortcuts, you can use the ones
in the `powershortcuts/` folder. You probably want to configure them though,
since they are made with icons/commands that work for my own i3 setup.
`make shortcuts` will copy them over to the `~/.local/share/applications` directory.
### i3 configuration
Add the following to your i3 config (`~/.config/i3/config`) to launch
the application via $mod+d (typicall Win+D).
```
bindsym $mod+d exec launchy
```