{"id":20172399,"url":"https://github.com/jipok/cute-bash","last_synced_at":"2025-04-10T02:52:04.326Z","repository":{"id":166113681,"uuid":"337983088","full_name":"Jipok/Cute-bash","owner":"Jipok","description":"Useful config for bash. Easy install","archived":false,"fork":false,"pushed_at":"2025-01-29T15:52:24.000Z","size":56,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T04:22:16.286Z","etag":null,"topics":["bash","bash-alias","bash-profile","bash-prompt","bashrc","config","powerline"],"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/Jipok.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":"2021-02-11T09:30:43.000Z","updated_at":"2025-01-29T15:52:28.000Z","dependencies_parsed_at":"2024-02-25T13:35:09.970Z","dependency_job_id":"4748bfc5-e170-48b8-a195-e8f6c75eb708","html_url":"https://github.com/Jipok/Cute-bash","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jipok%2FCute-bash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jipok%2FCute-bash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jipok%2FCute-bash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jipok%2FCute-bash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jipok","download_url":"https://codeload.github.com/Jipok/Cute-bash/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248147044,"owners_count":21055466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bash","bash-alias","bash-profile","bash-prompt","bashrc","config","powerline"],"created_at":"2024-11-14T01:30:09.364Z","updated_at":"2025-04-10T02:52:04.315Z","avatar_url":"https://github.com/Jipok.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cute-bash\nUseful default settings for bash in one file\n\n![image](https://user-images.githubusercontent.com/25588359/107625132-c6e65000-6c53-11eb-8673-80a8c9febdd4.png)\n\n## Features\n- Easy installation\n- Includes [bash-sensible](https://github.com/mrzool/bash-sensible):\n- - Smarter tab completion\n- - Saner history defaults\n- - *Mod*: persistent history\n- - Faster file system navigation\n- Includes [bash-powerline](https://github.com/riobard/bash-powerline)\n- - Short and informative promt \n- - Git: show branch name, tag name, or unique short hash\n- - Git: show numbers of commits ahead of remote/behind remote\n- - Use Bash builtin when possible to reduce delay. **Delay sucks!**\n- - Platform-dependent prompt symbols\n- - *Mod*: Shows the hostname when logging in via ssh\n- Colored less\n- Uses user aliases(and other settings) from `~/.bash-user`\n- Alias `mkcd` - make and change directory at once\n- Aliases `ls`, `la`, `l`, `gitlog`, `gittree`\n- Universal commands for extracting(`extract`), `list` and packing(`pk`) archives\n- Will provide new commands `cd` and `fkill`, if `fzf` installed\n- Automatically downloads and uses [LS_COLORS](https://github.com/trapd00r/LS_COLORS) \n([Screenshot](https://raw.githubusercontent.com/trapd00r/LS_COLORS/master/docs/static/LS_COLORS.png))\n- Automatically downloads and uses [complete_alias](https://github.com/cykerway/complete-alias) \n- On each login will notify if `tmux` session available \n- Enhanced tmux integration `t`:\n  - Attach to existing session or create new one with mouse support\n  - Run as different user with `t username`\n\n## Requirements\n- Bash 4.0+\n- tmux (optional, for tmux integration)\n- fzf (optional, for enhanced cd/kill commands)\n\n## Installation\n\nPer user:\n`wget https://raw.githubusercontent.com/Jipok/Cute-bash/master/.bashrc -O ~/.bashrc`\n\nSystem-wide(debian, arch):\n\n```bash\nwget https://raw.githubusercontent.com/Jipok/Cute-bash/master/.bashrc -O /etc/bash.bashrc\nmkdir /etc/bash\nwget \"https://raw.githubusercontent.com/trapd00r/LS_COLORS/master/LS_COLORS\" -O /etc/bash/ls_colors\nwget \"https://raw.githubusercontent.com/cykerway/complete-alias/master/complete_alias\" -O /etc/bash/complete_alias\n```\n\nSystem-wide(void linux):\n\n```bash\nwget https://raw.githubusercontent.com/Jipok/Cute-bash/master/.bashrc -O /etc/bash/bashrc.d/cute-bash.sh\nwget \"https://raw.githubusercontent.com/trapd00r/LS_COLORS/master/LS_COLORS\" -O /etc/bash/ls_colors\nwget \"https://raw.githubusercontent.com/cykerway/complete-alias/master/complete_alias\" -O /etc/bash/complete_alias\n```\n\nOf course this will replace the original files if they were. Also recommend `sudo rm /etc/skel/.bashrc` \n\n## Customization\n\n\nCreate `~/.bash-user` to add your own aliases and settings. Example:\n```bash\n# Custom aliases\nalias projects='cd ~/projects'\nalias gs='git status'\n\n# Custom environment variables\nexport EDITOR=nvim\n\n# Disable git status\nPOWERLINE_GIT=0\n```\n\n## Troubleshooting\n\n**Prompt symbols not displaying correctly**\n   - Make sure your terminal supports UTF-8\n   - Try installing a powerline-compatible font like https://nerdfonts.com","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjipok%2Fcute-bash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjipok%2Fcute-bash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjipok%2Fcute-bash/lists"}