{"id":19710765,"url":"https://github.com/vemonet/biratime","last_synced_at":"2026-05-17T02:13:48.979Z","repository":{"id":93870663,"uuid":"240197038","full_name":"vemonet/biratime","owner":"vemonet","description":"⌨️ A simple Oh My ZSH! theme based on the Bira theme, displaying time instead of the username","archived":false,"fork":false,"pushed_at":"2023-11-06T15:22:43.000Z","size":89,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-02T08:23:14.639Z","etag":null,"topics":["oh-my-zsh","oh-my-zsh-theme","zsh","zsh-theme"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vemonet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-02-13T06:59:07.000Z","updated_at":"2023-11-25T18:33:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"e1cfb925-bcda-43b4-b048-3296e7e8dd4a","html_url":"https://github.com/vemonet/biratime","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vemonet/biratime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vemonet%2Fbiratime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vemonet%2Fbiratime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vemonet%2Fbiratime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vemonet%2Fbiratime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vemonet","download_url":"https://codeload.github.com/vemonet/biratime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vemonet%2Fbiratime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33125184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"online","status_checked_at":"2026-05-17T02:00:05.366Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["oh-my-zsh","oh-my-zsh-theme","zsh","zsh-theme"],"created_at":"2024-11-11T22:08:22.271Z","updated_at":"2026-05-17T02:13:48.962Z","avatar_url":"https://github.com/vemonet.png","language":"Shell","funding_links":[],"categories":["Themes"],"sub_categories":["ZSH on Windows"],"readme":"# ⌚️ Biratime ZSH theme\n\nA simple [oh-my-zsh](https://ohmyz.sh) theme based on the [Bira theme](https://github.com/ohmyzsh/ohmyzsh/blob/master/themes/bira.zsh-theme). The username has been replaced by the time in 24h format, as we usually don't need to be reminded on which machine and user we are logged in at every key stroke. But it can be helpful to keep track of time within the terminal.\n\nThe color of the time changes from blue to red if you are logged with a user that is not UID `1000`, as the user with UID `1000` is usually the 1st user to be created on the machine, and used as main user. This helps to quickly know when you are logged in with a special user, such as root.\n\n## 🖼️ What it looks like\n\nHere is what the theme looks like in a Gnome Terminal with the [solarized colors scheme](https://ethanschoonover.com/solarized) enabled.\n\nIf there are uncommited changes in the current git repository:\n\n![screenshot commited](resources/screenshot_uncommited.png)\n\nAnd if there are no changes to commit, but some local commits needs to be pushed to the remote git repository:\n\n![screenshot commited](resources/screenshot_commited.png)\n\n## 📥️ Quick installation\n\n\u003cdetails\u003e\u003csummary\u003eYou will need to have the \u003ccode\u003eZSH\u003c/code\u003e shell installed.\u003c/summary\u003e\n```bash\n# On Debian-based Linux\nsudo apt install -y zsh\n# On RedHat Linux\nsudo dnf install -y zsh\n# On MacOS\nbrew install zsh\n```\n\n\u003c/details\u003e\n\nRun the script to install the theme:\n\n```bash\nsh -c \"$(curl -fsSL https://raw.github.com/vemonet/biratime/main/install.sh)\"\n```\n\n## 🕵️ Detailed installation\n\n1. **Install [Oh My ZSH!](https://ohmyz.sh)**\n\n```bash\nsh -c \"$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\n\n2. **Download the theme**:\n\n```bash\ncurl -fsSL -o ~/.oh-my-zsh/custom/themes/biratime.zsh-theme https://raw.github.com/vemonet/biratime/main/biratime.zsh-theme\n```\n\n3. **Enable the theme** and `virtualenv` plugin by editing your `~/.zshrc` config file:\n\n```bash\nsed -i 's/^ZSH_THEME=\".*\"$/ZSH_THEME=\"biratime\"/g' ~/.zshrc\nsed -i 's/^plugins=(/plugins=(virtualenv /g' ~/.zshrc\n```\n\n4. **Enable the [solarized colors scheme](https://ethanschoonover.com/solarized)** for your terminal\n\nIf you use Linux with the Gnome terminal:\n\n```bash\ngit clone https://github.com/aruhier/gnome-terminal-colors-solarized.git\ncd gnome-terminal-colors-solarized\n./install.sh\n```\n\nIf you use the Microsoft Terminal, you can enable solarized colors for the WSL terminal in the Settings window.\n\n5. Use the **ZSH shell by default**:\n\n```bash\nsudo chsh --shell=/usr/bin/zsh $USER\n```\n\n6. Hide the default **conda environment** displayed to only show it with the ZSH theme:\n\n```bash\necho \"\\`conda config --set changeps1 false\\`\" \u003e\u003e ~/.oh-my-zsh/plugins/virtualenv/virtualenv.plugin.zsh\n```\n\n## 🐳 Install in Docker\n\nYou can easily install this theme in a `Dockerfile`\n\n```dockerfile\nRUN sh -c \"$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)\"\nRUN curl -fsSL -o ~/.oh-my-zsh/custom/themes/biratime.zsh-theme https://raw.github.com/vemonet/biratime/main/biratime.zsh-theme\nRUN sed -i 's/^ZSH_THEME=\".*\"$/ZSH_THEME=\"biratime\"/g' ~/.zshrc\nRUN echo \"\\`conda config --set changeps1 false\\`\" \u003e\u003e ~/.oh-my-zsh/plugins/virtualenv/virtualenv.plugin.zsh\nRUN echo 'setopt NO_HUP' \u003e\u003e ~/.zshrc\nENV SHELL=/bin/zsh\n```\n\n## 🕊️ Contribute\n\nFeel free to create issues, or proposes changes through pull requests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvemonet%2Fbiratime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvemonet%2Fbiratime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvemonet%2Fbiratime/lists"}