DAPS is a shell written in pure Python. No other language is used, except JSON for the configuration file.
-
Go to Releases and get the newest version of DAPS.
- Releases come as
.zipfiles. Pre-releases may be.zipor single files. Make sure you download the correct version. - Stable versions (marked as Release) are recommended.
- Releases come as
-
Once downloaded, extract it to a folder of your choice.
-
Open the
installerfolder and run:
sh install.sh- After installation, run:
dapsBasic shell commands work, like cd or ls.
Built-in commands include:
clear– Clears everything on screen.clearhist– Clears shell history. After running this, the shell cannot record history until restarted. This prevents bugs.exit– Exits the shell.update– Updates DAPS by cloning the repository into a temp folder and copying it into/usr/bin.
The clear command clears the screen.
See Configuration below for options.
Clears shell history.
The shell cannot record history if this command has been run, until the shell is restarted. This is a safety feature.
Exits the shell.
Updates DAPS by cloning the repository into a temporary folder and copying the new version into /usr/bin.
The shell creates a file named config.json in the ~/.config/daps/ directory (where ~ is your current user's home folder).
By default, the file contains:
{}To start editing, add options inside the braces:
{
}The "greeter" option runs a command every time the shell starts:
{
"greeter": "fastfetch"
}This will run fastfetch at shell start.
The "aliases" option lets you create shell aliases:
{
"aliases": {
"ll": "ls -l"
}
}Note: Built-in shell commands cannot be used in aliases. Built-in commands are listed above.
The "cleargreet" option specifies whether the greeter should run when using clear:
{
"cleargreet": "yes"
}The "devicename" option specifies if the device name (e.g., ASUS E410MA) should be used instead of the hostname (e.g., fedora):
{
"devicename": true
}{
"aliases": {
"ll": "ls -l"
},
"greeter": "fastfetch",
"cleargreet": "yes",
"devicename": true
}- More features are coming soon!
- DAPS is protected by the GNU license, meaning any contributions or derivatives of the program must be fully open source.
© 2026, Nytrix Labs