sudo curl -L https://github.com/DEVLOPRR/bread/releases/download/v0.7.2/bread-0.7.2-x86_64.AppImage -o /usr/local/bin/bread && sudo chmod +x /usr/local/bin/bread
To install an Application from GitHub you can use the install command where user is the github repo owner and repo is the repository name
bread install user/repo
You can install an application from a different Tag too!
bread install user/repo tagname
If you want to run a application from remote without installing it you can use the run command
bread run user/repo
You can pass CLI arguments to the application too like this bread run user/repo -- --arg1 --arg2
You can clear the download cache using clean command bread clean
, Since all the applications you run from remote are cached so that it isn't downloaded everytime
you can remove a installed application using the remove command
bread remove user/repo
You can update a application using the update command
bread update user/repo
if you just want to check if update is available you can use the --check
flag
bread update user/repo --check
if you want to update all the applications you can use the --all
flag
bread update --all
the --check
& --all
flag can be used together
bread update --all --check
You can search for a application from the AppImage API
bread search "Your search text"
You can list all the installed applications using list command
bread list
You can also get the SHA-1 Hash of the appimages using the -s
or --show-sha1
Flag
bread list -s
You can also get the GitHub release tag -t
or --show-tag
Flag
bread list -t
Often there are many times when the GitHub user and repo both are same, for example libresprite, so in this case you can just specify single name like this bread install libresprite
, this works with all the commands
Make Sure You Have Go version 1.18.x & AppImage Builder Installed.
Get The Repository Via Git
git clone https://github.com/pegvin/bread
Go Inside The Source Code Directory & Get All The Dependencies
cd bread go mod tidy
Make The Build Script Executable And Run It
chmod +x ./make ./make
And To Build The AppImage Run
./make appimage