{"id":21974421,"url":"https://github.com/abdes/linux-dotfiles","last_synced_at":"2026-04-04T20:33:17.422Z","repository":{"id":120155446,"uuid":"458321259","full_name":"abdes/linux-dotfiles","owner":"abdes","description":"My dotfiles for Linux systems","archived":false,"fork":false,"pushed_at":"2022-11-28T16:19:19.000Z","size":40306,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-03T19:41:42.922Z","etag":null,"topics":["arch-linux","archlinux","bash","bspwm","bspwm-config","bspwmrc","dotfiles","linux","polybar","polybar-config","polybar-scripts","shell","zsh-configuration"],"latest_commit_sha":null,"homepage":"","language":"GLSL","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/abdes.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":"2022-02-11T19:50:07.000Z","updated_at":"2022-04-02T07:19:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"aa69ded7-b280-4013-ad45-cfdcde407e56","html_url":"https://github.com/abdes/linux-dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abdes/linux-dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdes%2Flinux-dotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdes%2Flinux-dotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdes%2Flinux-dotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdes%2Flinux-dotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdes","download_url":"https://codeload.github.com/abdes/linux-dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdes%2Flinux-dotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31413269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: 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":["arch-linux","archlinux","bash","bspwm","bspwm-config","bspwmrc","dotfiles","linux","polybar","polybar-config","polybar-scripts","shell","zsh-configuration"],"created_at":"2024-11-29T15:45:15.294Z","updated_at":"2026-04-04T20:33:17.393Z","avatar_url":"https://github.com/abdes.png","language":"GLSL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linux dotfiles\n\nThis is my collection of dotfiles for Linux systems, all stored in a bare git\nrepo, and managed with the technique described at:\nhttps://www.atlassian.com/git/tutorials/dotfiles.\n\nTo install on a freshly minted machine or container:\n\n\n## Setup Arch\n\n### Linux packages\n\nTODO: Packages that need to be installed...\n\n### Xorg High DPI\n\n1- Manually configure the monitor in the X11 config.\n   https://wiki.archlinux.org/title/org#Monitor_settings\n\n```\nSection \"Monitor\"\n  Identifier \"Virtual1\"\n  Modeline \"3840x2160_60.00\" 712.34 3840 4152 4576 5312 2160 2161 2164 2235 -HSync +V\n  Option \"PreferredMode\" \"3840x2160_60.00\"\n  DisplaySize 597 336 # In millimeters\nEndSection\n```\n\nModeline can be obtained by using an online calculator (Google). Exact display\ndimensions can be obtained either from the manufacturer specs or by calculating\nit based on the diagonal size.\n\n2- Get the real DPI from `xdpyinfo grep -B2 resolution\n\n```\n   screen #0:\n    dimensions:    3840x2160 pixels (598x336 millimeters)\n    resolution:    163x163 dots per inch\n```\n\n3- Set the dpi in the X server command line at the display manager, e.g. for\n  `sddm`, we add the '-dpi 163' to 'ServerArguments' in /etc/sddm/sddm.conf\n\n\n### Manual install additional packages\n\n#### SDDM sugar-candy theme\n\nhttps://framagit.org/MarianArlt/sddm-sugar-candy\n\nsudo mkdir -p /usr/share/sddm/themes/sugar-candy \u0026\u0026 \\\n  curl -s https://framagit.org/MarianArlt/sddm-sugar-candy/-/archive/v.1.1/sddm-sugar-candy-v.1.1.tar.gz | \\\n\tsudo tar zxvf - -C /usr/share/sddm/themes/sugar-candy --strip-components 1.1\n\n#### Rust\n\nrustup default stable\n\n#### Java\n\nsudo archlinux-java set java-17-openjdk\n\n#### Ruby\n\ngem install neovim\n\n\n\n## Setup dotfiles\n\n```shell\ngit clone --bare https://bitbucket.org/durdn/cfg.git $HOME/.cfg\nfunction config {\n   /usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@\n}\nmkdir -p .config-backup\nconfig checkout\nif [ $? = 0 ]; then\n  echo \"Checked out config.\";\n  else\n    echo \"Backing up pre-existing dot files.\";\n    config checkout 2\u003e\u00261 | egrep \"\\s+\\.\" | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}\nfi;\nconfig checkout\nconfig config status.showUntrackedFiles no\n```\n\nTo edit dotfiles in `vscode` and have full access to git functionality, use the\nalias defined below:\n\n```shell\nalias dote=GIT_WORK_TREE=~ GIT_DIR=.dotfiles code ~\n```\n\n## Finalize Git settings\n\n```\nGIT_AUTHOR_NAME=\"\u003cYour Name\u003e\"\nGIT_COMMITTER_NAME=\"$GIT_AUTHOR_NAME\"\ngit config --global user.name \"$GIT_AUTHOR_NAME\"\nGIT_AUTHOR_EMAIL=\"\u003cYour Masked Address\u003e\"\nGIT_COMMITTER_EMAIL=\"$GIT_AUTHOR_EMAIL\"\ngit config --global user.email \"$GIT_AUTHOR_EMAIL\"\n```\n\n## Finalize zsh setup\n\nTODO: Install oh-my-zsh and plugins\n\n## Finalize vim setup\n\n:TSInstall \u003ctab\u003e\n\n:LSPInstall \u003ctab\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdes%2Flinux-dotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdes%2Flinux-dotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdes%2Flinux-dotfiles/lists"}