{"id":17941769,"url":"https://github.com/7wotw/aptui","last_synced_at":"2026-04-17T19:01:11.553Z","repository":{"id":259712217,"uuid":"879258820","full_name":"7wotw/aptui","owner":"7wotw","description":"APT, but with a UI","archived":false,"fork":false,"pushed_at":"2024-10-28T09:36:07.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T13:19:54.707Z","etag":null,"topics":["apt","bash","linux"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/7wotw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-27T12:44:27.000Z","updated_at":"2024-12-10T18:23:26.000Z","dependencies_parsed_at":"2024-10-28T12:44:11.894Z","dependency_job_id":null,"html_url":"https://github.com/7wotw/aptui","commit_stats":null,"previous_names":["hitofuki/aptui","7wotw/aptui"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/7wotw/aptui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7wotw%2Faptui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7wotw%2Faptui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7wotw%2Faptui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7wotw%2Faptui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/7wotw","download_url":"https://codeload.github.com/7wotw/aptui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7wotw%2Faptui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31941845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apt","bash","linux"],"created_at":"2024-10-29T02:04:07.251Z","updated_at":"2026-04-17T19:01:11.535Z","avatar_url":"https://github.com/7wotw.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aptui\n`aptui` is a simple command-line tool for installing packages. Just in case you're lazy to type ```sudo apt-get install \u003cpackage\u003e```. Don't ask why I made this. I don't know.\n\n## Features\n- **Support for most Linux distributions!**\n- **Install packages:** Sooo revolutionary!\n- **Remove packages:** Even more revolutionary!\n- **List installed packages:** You never knew you needed this! (you don't)\n- **Install from git:** Automatically clone and make a git repo. Pretty cool!\n- **Search for packages:** Find packages by searching with keywords.\n- Very similar UI to Network Manager TUI.\n\n## Supported package managers and distros\n### Package managers:\n- apt-get\n- pacman\n- yay\n- dnf\n- zypper\n- xbps-install\n- eopkg\n### Distros\n- Debian/Ubuntu (apt)\n- Arch Linux (pacman, yay with AUR)\n- Fedora (dnf)\n- openSUSE (zypper)\n- Void Linux (xbps-install)\n- Solus (eopkg)\n(I'll add more if requested)\n\n## Requirements\n- `dialog` package (for creating the UI)\n  \n  Install `dialog` if you haven't already:\n  ```bash\n  sudo apt-get install dialog\n  ```\n\n## Installation\nClone this repository and make `aptui` executable:\n```bash\ngit clone https://github.com/hitofuki/aptui.git\ncd aptui\nchmod +x aptui.sh\n```\n\n## Config\nThe configuration file is generated after selecting a distribution.\nIt's located in `~/.config/aptui` and contains only:\n```bash\nPACKAGE_MANAGER=apt-get\n```\n(or your selected package manager)\n\n## Usage\nRun `aptui` with the following command:\n```bash\n./aptui.sh\n```\n\nUse the menu to navigate through the following options:\n1. **Install a package**\n2. **Remove a package**\n3. **List installed packages**\n4. **Install from Git**\n5. **Search for a package**\n6. **Exit**\n\n## Some cool things\n### The git cloning works like this:\n1. The script creates a temporary directory to clone the git repo into.\n2. Checks if `install.sh` or `makefile` exist.\n3. Runs either `install.sh` or `makefile` and builds the package.\n4. Cleans everything up.\n### Alias (guide for bash users)\nIf you want, instead of going to the directory where the script is located you can create an alias so you can execute `aptui` anywhere you want.\nHere's how to do this:\n1. Open your terminal\n2. Open your `.bashrc` or `.bash_profile` (both if your shell is bash) file in a text editor. This depends on your system:\n\n   ```bash\n   nano ~/.bashrc\n   ```\n   or\n\n   ```bash\n   nano ~/.bash_profile\n   ```\n3. To add the alias add this line at the bottom of the file:\n   \n   ```bash\n   alias aptui='/path/to/aptui.sh'\n   ```\n4. Save and exit.\n5. To confirm the changes, run:\n\n   ```bash\n   source ~/.bashrc\n   ```\n   or\n\n   ```bash\n   source ~/.bash_profile\n   ```\n\n## License\nThis project is licensed under the MIT License.\n\n## Contributions\nFeel free to fork the repository and submit pull requests. Contributions are welcome!\n(my code sucks, please help me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7wotw%2Faptui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F7wotw%2Faptui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7wotw%2Faptui/lists"}