# desktop-tui **Repository Path**: mirrors_trending/desktop-tui ## Basic Information - **Project Name**: desktop-tui - **Description**: A desktop environment without graphics - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-17 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Desktop-TUI 🖥️ === [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) ![GitHub Release](https://img.shields.io/github/v/release/julien-cpsn/desktop-tui?link=https%3A%2F%2Fgithub.com%2FJulien-cpsn%2Fdesktop-tuiC%2Freleases%2Flatest) [![Crates.io](https://repology.org/badge/version-for-repo/crates_io/desktop-tui.svg)](https://crates.io/crates/desktop-tui) > [!WARNING] > This is an experimental project made in 2 days. It is not meant to be used as is nor to become the new desktop environnement standard. Feel free to fork and send PRs A desktop environment without graphics (tmux-like). Features: - [x] Parse shortcut files containing apps - [x] Custom additional commands - [x] Custom window options - [x] Custom terminal options - [x] Display any application or command that uses stdout - [x] Move and resize windows - [x] Handle and display application error - [x] Change tilling options - [x] Can let the user select a file or a folder to use its path as a command argument - [x] Clock ![demo](./demo.gif) ## How to use ### Install ```shell cargo install desktop-tui ``` ### Compile ```shell cargo build ``` ```shell cargo build --release ``` ### Run You can replace `cargo run --` with `desktop-tui` ```shell cargo run -- ``` If no path is provided, desktop-tui will try using theses paths: - Linux: `/home/my_username/.config/desktop-tui` - macOS: `/Users/MyUsername/Library/Application Support/com.Julien-cpsn.desktop-tui` - Windows: `C:\Users\MyUsername\AppData\Roaming\Julien-cpsn\desktop-tui\config` ## Shortcut file Example `helix.toml` shortcut file: ```toml # Window name name = "Text editor" # Command to execute command = "hx" # Each command argument args = [] [taskbar] # Shortcut position on the action bar # Optional position = 3 # Optional [[taskbar.additional_commands]] # Command name name = "Open folder" # Command to execute command = "hx" # or will be replaced by a path selected in a dialog args = [""] [[taskbar.additional_commands]] name = "Open file" command = "hx" args = [""] [window] resizable = true close_button = true fixed_position = false # Optional size = { width = 10, height = 5 } [terminal] # Pad inner window padding = [0, 0] # Optional background_color = { r = 30, g = 30, b = 30 } ``` ## Star history Star History Chart ## License The MIT license for this project can be seen [here](./LICENSE)