A seed for your Wine prefixes. Quickly launch your favorite Windows apps and games on Linux using Wine and Proton.
- Manage Wine and Proton setups, configured in a
seed
. Eachseed
can have separate prefixes and runtimes. - Define application entries to be launched from a
seed
. - Generate application entries from Start Menu shortcuts.
- Automatically generate application menus for easy access to Windows applications
- Use custom Wine and Proton runtimes for a
seed
. - Transparent configuration, everything is laid out in
toml
files
flora depends on wine
and winetricks
. Proton support additionally depends on umu-launcher
, either installed as a package or a local zipapp version at ~/.local/share/flora/umu
.
Grab the latest binary from the Releases page.
flora is built and tested against latest Rust.
git clone https://github.com/Damillora/flora.git
cd flora
cargo install --path crates/flora_cli
# Create a Wine seed
flora create wine windows_app
# Create a Proton seed
flora create proton proton_game
# Run the installer inside a seed
flora run windows_app ~/Documents/windows_app_installer.exe
# Launch winetricks for seed prefix configuration
flora tricks windows_app
# Add an app using Start Menu entries
flora start-menu create-app "Windows App"
# Generate menus
flora generate-menu
# Run an app inside a seed
flora run -a windows_app "Windows App"
flora can also utilize additional Wine runtimes in ~/.local/share/flora/wine
, and additional Proton runtimes in ~/.local/share/flora/proton
.
Runtimes in those folder can be managed with tools like ProtonUp-Qt.
seed
: Manage seedsseed list
: List all seedsseed create
: Create a seedseed set
: Set a seed's propertiesseed delete
: Remove a seedseed info
: Show a seed's information
app
: Manage apps in a seedapp list
: List all apps in a seedapp add
: Add an app into a seedapp update
: Update an app in a seedapp rename
: Rename an app in a seedapp delete
: Remove an app from a seedapp generate-menu
: Generate menu entries for launching apps from the application menu
start-menu
: Query Start Menu entries in a seed and create app entries based on themstart-menu list
: List all Start Menu entries in a seedstart-menu create-app
: Generate an app based on a Start Menu entry
config
: Launch the seed's prefix configuration, usuallywinecfg
tricks
: Launch winetricks for the seed's prefixrun
: Run an application in a seed
flora is configured using the file flora.toml
, located in the $HOME/.local/share/flora
folder.
This file will be automatically generated with defaults when flora
is run for the first time.
[wine]
wine_prefix_location
: Location where Wine prefixes are installed. Default is$HOME/.local/share/flora/prefixes
.default_wine_prefix
: Default Wine prefix used by seeds. Default is$HOME/.local/share/flora/prefixes/default
.default_wine_runtime
: Default Proton runtime used by seeds. Default is system wine (/usr/bin/wine
).
[proton]
proton_prefix_location
: Location where Wine prefixes are installed. Default is$HOME/.local/share/flora/prefixes
.default_proton_prefix
: Default Wine prefix used by seeds. Default is$HOME/.local/share/flora/prefixes/proton
.default_proton_runtime
: Default Proton runtime used by seeds. Default is empty.
Each application is configured in .toml
files, located in $HOME/.local/share/flora/seeds
folder.
[settings]
launcher_command
: Launch command for Wine orumu-launcher
, e.g. to use Gamescope to launch apps inside a seed.
[[apps]
: The first[[app]]
is the default application for the seed, and any subsequent[[apps]]
can be launched usingflora run -a <seed> "<application_name>"
application_name
: Name of default application shown on menuapplication_location
: The executable to be launched when using therun
command without arguments.
[wine]
wine_prefix
: Prefix used by the seed.wine_runtime
: Wine runtime used by the seed.
[proton]
proton_prefix
: Prefix used by the seed.proton_runtime
: Proton runtime used by the seed.game_id
: Game ID to be passed toumu-launcher
store
: Store name to be passed toumu-launcher
flora is still in heavy development, but contributions are welcome! Feel free to file an issue or even submit a PR if you want.
flora is licensed under GNU GPL v3 or later.