This is a Program Launcher written in Rust. For the moment it uses multiple different UI toolkits, namely: - [x] egui - [ ] iced
I started using egui for this, which is a great toolkit, but it has some limitations. So I thought I'd try some other toolkits. This I think is a reasonably simple UI, but with some quirks (like the keyboard scrolling) which I can use to compare ease of use and feature sets.
There are several reasons I wanted a new program launcher:
Most good program launchers like Rofi, Fuzzel etc. only support either X11 or wayland. Since I still sometimes switch between X11 and Wayland I wanted a launcher, that ran on both systems
There are some cool projects like Wofi that aim to port X11 programs to Wayland. However I found at least Wofi to have some bugs with my window setup.
I tend to take on huge projects which never end. I saw this as a comparatively simple project.
Configuration is now found in $HOME/.config/aphorme/config.toml
Options for the gui.
Enable or disable icon loading.
Which GuiFramework to used. At the moment EGUI and ICED.
Note that at the moment ICED is not compiled into the launcher by default. To do so compile with the feature iced-ui
App spanning options.
List of additional paths to search. Home directory can only be denoted by using $HOME
Defaults to an empty list.
Search default paths. If paths is defined appends them to the default.
Defaults to true
Default paths are
toml
"/usr/share/applications",
"/usr/local/share/applications",
"$HOME/.local/share/applications",
"/var/lib/flatpak/exports/share/applications"
toml
[gui_cfg]
icon = true
ui_framework = 'EGUI'
[app_cfg]
paths = ["$HOME/Desktop"]
The egui ScrollArea does not allow for movement using the arrow keys. This means I had to implement that myself. The method I chose (just remembering the index) does however overwrite the scrolling using the mousewheel/touchpad gestures etc. This means I had to implement the scrolling with the scrollwheel myself, which 'fights' against the default scrolling. This causes minor visual glitches but so far no actual bugs
A config file was added (see Configuration). At the moment only icon loading is configured here.
Launcher is forced into floating mode on tiling window managers to work like rofi etc.
You can now add additional paths to search or replace them entirely. See the Config
section for more on this.
Now properly resolvec $HOME
to the home directory