{"id":20315087,"url":"https://github.com/yyyyoinker/my-arch-linux","last_synced_at":"2026-03-04T09:31:26.986Z","repository":{"id":238622925,"uuid":"797029657","full_name":"YYYYOINKER/My-Arch-Linux","owner":"YYYYOINKER","description":"Just a few files that make my Arch Linux look/function well. ","archived":false,"fork":false,"pushed_at":"2024-09-02T16:07:44.000Z","size":2924,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T23:10:07.201Z","etag":null,"topics":["alacritty","archlinux","bash","c","dmenu","dwm","linux","st"],"latest_commit_sha":null,"homepage":"","language":"C","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/YYYYOINKER.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":"2024-05-07T04:12:51.000Z","updated_at":"2025-01-17T15:54:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"7decb818-9378-4a5f-915a-ffd4b4f4a514","html_url":"https://github.com/YYYYOINKER/My-Arch-Linux","commit_stats":null,"previous_names":["yyyyoinker/my-arch-linux-rice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YYYYOINKER/My-Arch-Linux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YYYYOINKER%2FMy-Arch-Linux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YYYYOINKER%2FMy-Arch-Linux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YYYYOINKER%2FMy-Arch-Linux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YYYYOINKER%2FMy-Arch-Linux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YYYYOINKER","download_url":"https://codeload.github.com/YYYYOINKER/My-Arch-Linux/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YYYYOINKER%2FMy-Arch-Linux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30077069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["alacritty","archlinux","bash","c","dmenu","dwm","linux","st"],"created_at":"2024-11-14T18:17:51.022Z","updated_at":"2026-03-04T09:31:26.960Z","avatar_url":"https://github.com/YYYYOINKER.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Arch Linux Desktop (outdated)\n\nWelcome to my Arch Linux desktop setup! This is a brief overview of my configuration, themes, and the tools I use to make my Linux experience smooth and functional.\n\n## Desktop Preview\n\n![Arch Linux Desktop](images/image.png)\n\n## Terminal - Neofetch\n\n![Arch Linux Desktop](images/image2.png)\n\n## System Details\n\n- **OS**: Arch Linux x86_64\n- **Host**: Aspire A515-54 V1.24\n- **Kernel**: 6.8.7-arch1-1\n- **Packages**: 736 (pacman)\n- **Shell**: Bash 5.2.26\n- **Resolution**: 1920x1080\n- **Window Manager**: dwm\n- **Theme**: Adwaita [GTK2/3]\n- **Icons**: Adwaita [GTK2/3]\n- **Terminal**: Alacritty\n- **Terminal Font**: Hack Nerd Font\n- **CPU**: Intel i7-10510U (8) @ 4.900GHz\n- **GPU**: Intel CometLake-U\n- **Memory**: 2176MiB / 15817MiB\n\n## Featured Software\n\n- **Terminal**: Alacritty\n- **Text Editor**: NeoVim\n- **File Manager**: Nemo\n- **Web Browser**: Firefox\n\n## Configuration Files\n\nFeel free to explore my configuration files in this repository to adapt pieces of my setup to your own system.\n\n### Installation Instructions\n\nFollow these guidelines to replicate this setup or parts of it on your own machine.\n\n### Step 1: Install Arch Linux\n\nStart by installing Arch Linux. The official guide is comprehensive and updated regularly:\n[Arch Linux Installation Guide](https://wiki.archlinux.org/title/Installation_guide)\n\n### Step 2: Install dwm\n\n**dwm** is a dynamic window manager for X. It manages windows in tiled, monocle, and floating layouts. All of the configurations are done through editing the source code, which makes it extremely fast and lightweight.\n\nHere's how you can install dwm along with dmenu and st (simple terminal), which are also from suckless.org:\n\n```bash\n# Create a directory for suckless tools\nmkdir ~/suckless\ncd ~/suckless\n\n# Clone and install dwm\ngit clone https://git.suckless.org/dwm\ncd dwm\nsudo make clean install\n\n# Clone and install dmenu\ncd ..\ngit clone https://git.suckless.org/dmenu\ncd dmenu\nsudo make clean install\n\n# Clone and install st (optional)\ncd ..\ngit clone https://git.suckless.org/st\ncd st\nsudo make clean install\n\n## License\n\n[MIT](LICENSE.md)\n\n---\n\nEnjoy my setup and feel free to start your own customization journey!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyyyyoinker%2Fmy-arch-linux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyyyyoinker%2Fmy-arch-linux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyyyyoinker%2Fmy-arch-linux/lists"}