{"id":17219269,"url":"https://github.com/dev-ritik/dotfiles","last_synced_at":"2026-04-19T13:32:05.969Z","repository":{"id":69334820,"uuid":"313139755","full_name":"dev-ritik/dotfiles","owner":"dev-ritik","description":"My Dotfiles for linux configs","archived":false,"fork":false,"pushed_at":"2022-11-19T05:34:10.000Z","size":67,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T14:45:03.102Z","etag":null,"topics":["configs","debian","dotfiles","lf","neofetch","newsboat","powerlevel10k","ubuntu","xdg-compliance","zathura","zsh"],"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/dev-ritik.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":"2020-11-15T22:56:46.000Z","updated_at":"2023-01-09T15:13:32.000Z","dependencies_parsed_at":"2023-03-01T13:16:08.664Z","dependency_job_id":null,"html_url":"https://github.com/dev-ritik/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dev-ritik/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-ritik%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-ritik%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-ritik%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-ritik%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-ritik","download_url":"https://codeload.github.com/dev-ritik/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-ritik%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009108,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["configs","debian","dotfiles","lf","neofetch","newsboat","powerlevel10k","ubuntu","xdg-compliance","zathura","zsh"],"created_at":"2024-10-15T03:49:30.738Z","updated_at":"2026-04-19T13:32:05.947Z","avatar_url":"https://github.com/dev-ritik.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My dotfiles\nConfig files for programs to set up a system the way I like it.\n\n## Programs\n### Newsboat\n[Newsboat](https://newsboat.org/) is an RSS/Atom feed reader for the text console. Apart from catching on news, I use this to check the prices of products I want to get. Check out the fantastic [RSS-Bridge](https://github.com/RSS-Bridge/rss-bridge) project.\nI use this script,\n```bash\nnewsboat() {\n echo \"Initializing background process\"\n \"$HOME\"/proj/flipkart_scraper/main.py \u003e /dev/null 2\u003e\u00261 \u0026\n sleep 1\n command newsboat \"$@\"\n echo \"Exiting\"\n kill $!\n}\n```\nto run a parser for scraping Flipkart for the price of the products. Check the code of the scraper [here](https://github.com/dev-ritik/Flipkart-Price-Tracker).\n\n### Neofetch\n[Neofetch](https://github.com/dylanaraps/neofetch) is this amazing tool for printing system information to the terminal when spawning a new one.\n![My neofetch](https://user-images.githubusercontent.com/32809272/100095340-56176f00-2e80-11eb-8572-c94277092bee.png)\n\n### lf\n[lf](https://github.com/gokcehan/lf) (as in \"list files\") is a terminal file manager written in Go.\nIt supports preview for general file types as well.\n_Good terminal-based image preview is yet to be added_\nI have added a shell function\n```bash\nlc () {\n    tmp=\"$(mktemp)\"\n    lf --last-dir-path=\"$tmp\" \"$@\"\n    if [ -f \"$tmp\" ]; then\n        dir=\"$(cat \"$tmp\")\"\n        rm -f \"$tmp\"\n        if [ -d \"$dir\" ]; then\n            if [ \"$dir\" != \"$(pwd)\" ]; then\n                cd \"$dir\"\n            fi\n        fi\n    fi\n}\n```\nfor using `q` as cd at exit [ref](https://github.com/gokcehan/lf/issues/140).\n\n### Zathura\n[Zathura](https://pwmt.org/projects/zathura/) is a highly customizable and functional document viewer, mainly PDFs.\n\n### Zsh\nZsh is a shell arguably better than bash for day to day stuff. It adds a lot of features to the shell experience.\n- No `oh-my-zsh` here. Sourcing stuff in rc files myself.\n- Usual helpful shortcuts that `oh-my-zsh` provides\n- `Powerline10k` theme\n- `XDG` compliant environment variables\n- Vi mode improvements\n- [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting)\n- [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)\n- [zsh_command_not_found](https://packages.ubuntu.com/search?keywords=command-not-found)\n- [zsh-you-should-use](https://github.com/MichaelAquilina/zsh-you-should-use)\n- [history-substring-search](https://superuser.com/a/585004)\n- Useful aliases\n- `cless` and `ccat` for coloured formatted output\n- Other rather personal aliases: weather, background blur camera, internet connectivity status, broadband connect, `newsboat`, wifi forwarder, Hotspot, DNS (via Pihole)\n\n### Bash\nbash is the secondary shell and configs are light. Aliases and env files are sourced by both of them.\nHence some of the above features are shared here as well.\n\n## Installation\nRun (or manually run commands from) the `install.sh` to install individual tools and dependencies.\nUse `./bootstrap.sh` to symlink these configs to your user's config files.\n\n## Inspiration\nParts of the configs are 'inspired' from these sources:\n- [Luke's configs](https://github.com/LukeSmithxyz/voidrice)\n- [Brodie's configs](https://github.com/BrodieRobertson/dotfiles)\n- [Jogendra's configs](https://github.com/jogendra/dotfiles)\n- [Abhay aka Nemo's configs](https://github.com/captn3m0/dotfiles)\n- [Dakshit's configs](https://github.com/dakshitagrawal97/.cfg)\n\n## Contributions\nAll contributions are welcome and appreciated.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-ritik%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-ritik%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-ritik%2Fdotfiles/lists"}