{"id":50459858,"url":"https://github.com/avahe-kellenberger/dotfiles","last_synced_at":"2026-06-01T04:04:01.539Z","repository":{"id":106442769,"uuid":"153370090","full_name":"avahe-kellenberger/dotfiles","owner":"avahe-kellenberger","description":"Personal dotfiles for my multiple systems.","archived":false,"fork":false,"pushed_at":"2024-03-04T13:43:37.000Z","size":79611,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-28T15:28:18.623Z","etag":null,"topics":["archlinux","bash","openbox","tint2","vim"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/avahe-kellenberger.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}},"created_at":"2018-10-17T00:03:07.000Z","updated_at":"2023-12-18T20:01:44.000Z","dependencies_parsed_at":"2024-03-03T14:41:18.972Z","dependency_job_id":null,"html_url":"https://github.com/avahe-kellenberger/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/avahe-kellenberger/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avahe-kellenberger%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avahe-kellenberger%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avahe-kellenberger%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avahe-kellenberger%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avahe-kellenberger","download_url":"https://codeload.github.com/avahe-kellenberger/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avahe-kellenberger%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33759203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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":["archlinux","bash","openbox","tint2","vim"],"created_at":"2026-06-01T04:03:55.108Z","updated_at":"2026-06-01T04:04:01.532Z","avatar_url":"https://github.com/avahe-kellenberger.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\nPersonal dotfiles for my multiple systems.\n\n# Recommended setup\n\n### Clone the repo\n\nClone the repository to a directory of your choosing. In this example, I will use `~/.dotfiles/` as the destination.\n\n```sh\n$ git clone https://github.com/avahe-kellenberger/dotfiles.git ~/.dotfiles/\n```\n\n## Openbox\n\nLink your `openbox` folder:\n\n```sh\n$ ln -s ~/.dotfiles/openbox/ ~/.config/openbox\n```\n\n**Note:** It is very likely you will only want to copy parts of the configuration from `rc.xml`, and thus should not create a symlink to this folder. This file can be found at `dotfiles/openbox/rc.xml`.\n\nSee the [Openbox configuration page](http://openbox.org/wiki/Help:Configuration) for setup details.\n\n### Switching windows by application\n\nSee [this repository](https://github.com/avahe-kellenberger/wmctrl-switch-by-application) for install instructions.\n\nThe default key binding in `rc.xml` is currently `A-grave` (equivalent to Alt+`).\n\n### Themes\n\nLink your `themes` folder:\n\n```sh\n$ ln -s ~/.dotfiles/themes/ ~/.themes\n```\n\n## tint2\n\nLink your `tint2` folder:\n\n```sh\n$ ln -s ~/.dotfiles/tint2/ ~/.config/tint2\n```\n\n## Rofi\n\nLink your `rofi` folder:\n\n```sh\n$ ln -s ~/.dotfiles/rofi/ ~/.config/rofi\n```\n\n## Vim\n\nLink your `vim` folder:\n\n```sh\n$ ln -s ~/.dotfiles/vim/ ~/.vim\n```\n\n**Example of the `muon`** themed used:\n\n![muon-theme](https://user-images.githubusercontent.com/34498340/47609534-8c1e6680-da0e-11e8-9faf-bd468b8a1f49.png)\n\nIt is recommended to place the following commands in your shell's rc file (such as bashrc/zshrc) to use this repository's `.vimrc` file by default:\n\n```sh\nexport VIMINIT='source $MYVIMRC'\nexport MYVIMRC='~/.vim/.vimrc'\n```\n\n## Zsh\n\nLink your `.zshrc` config file:\n\n```sh\n$ ln -s ~/.dotfiles/.zshrc ~/.zshrc\n```\n\n### Syntax Highlighting\n\n```sh\n$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/zsh-syntax-highlighting\n```\n\n### Auto Suggestions\n\n```sh\n$ git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions\n```\n\n**Example shell prompt:**\n\n![zshrc](https://user-images.githubusercontent.com/34498340/47609503-d2bf9100-da0d-11e8-8e54-e73e3619fbd3.png)\n\nRun the following command after creating the symlink to use the `.zshrc` file in the current terminal:\n\n```sh\n$ . ~/.zshrc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favahe-kellenberger%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favahe-kellenberger%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favahe-kellenberger%2Fdotfiles/lists"}