-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb52289
commit d4a51f4
Showing
1 changed file
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,76 @@ | ||
# apprunner | ||
# Welcome to App Runner | ||
App Runner allows you to launch Apps easily. | ||
|
||
Application Runner is a software created to launch any application or shell script without prefixing the "./" signs. | ||
|
||
You can use "run <app name>" command to start any application. | ||
## Installation | ||
Download [Latest](https://github.com/korayustundag/apprunner/releases) version | ||
|
||
x64: | ||
```bash | ||
sudo dpkg -i run_1.0_amd64.deb | ||
``` | ||
x86: | ||
```bash | ||
sudo dpkg -i run_1.0_i386.deb | ||
``` | ||
## Usage | ||
```bash | ||
run <any app> | ||
``` | ||
## Examples | ||
```bash | ||
run /home/user/myapp | ||
``` | ||
```bash | ||
run firefox.AppImage | ||
``` | ||
```bash | ||
run install.sh | ||
``` | ||
```bash | ||
run "any app" | ||
``` | ||
```bash | ||
run myapp --help | ||
``` | ||
## Attention | ||
**App Runner cannot run system apps.** | ||
|
||
~~run gedit file.txt~~ | ||
|
||
~~run atp-get update~~ | ||
## Building from Source | ||
1. Install GCC and G++ | ||
```bash | ||
sudo apt-get install gcc g++ | ||
``` | ||
2. Install Make | ||
```bash | ||
sudo apt-get install make | ||
``` | ||
3. Install Git | ||
```bash | ||
sudo apt-get install git | ||
``` | ||
Clone Repo: | ||
```bash | ||
git clone https://github.com/korayustundag/apprunner.git | ||
``` | ||
Go to repo dir: | ||
```bash | ||
cd apprunner | ||
``` | ||
Build: | ||
```bash | ||
make build | ||
``` | ||
Build x86: | ||
```bash | ||
make x86 | ||
``` | ||
Build amd64: | ||
```bash | ||
make amd64 | ||
``` |