{"id":20092356,"url":"https://github.com/rubixdev/pixfetch","last_synced_at":"2025-09-10T23:33:07.724Z","repository":{"id":37696659,"uuid":"448091441","full_name":"RubixDev/pixfetch","owner":"RubixDev","description":"Another fetch program with pixelized images written in Rust","archived":false,"fork":false,"pushed_at":"2024-10-23T17:03:19.000Z","size":394,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-30T22:04:59.153Z","etag":null,"topics":["ansi-colors","cli","fetch","linux","pixel-art","rust","system-information","unicode"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RubixDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"dei":null,"publiccode":null,"codemeta":null},"funding":{"ko_fi":"rubixdev"}},"created_at":"2022-01-14T19:57:16.000Z","updated_at":"2025-01-11T14:46:02.000Z","dependencies_parsed_at":"2024-11-13T16:41:26.770Z","dependency_job_id":"8ed3e964-5ca2-4016-8d52-e69ba8ce8d71","html_url":"https://github.com/RubixDev/pixfetch","commit_stats":{"total_commits":58,"total_committers":2,"mean_commits":29.0,"dds":0.03448275862068961,"last_synced_commit":"8e26c8d8257146435fab88b5ffba418544fc0962"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubixDev%2Fpixfetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubixDev%2Fpixfetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubixDev%2Fpixfetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubixDev%2Fpixfetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RubixDev","download_url":"https://codeload.github.com/RubixDev/pixfetch/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252622089,"owners_count":21777918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ansi-colors","cli","fetch","linux","pixel-art","rust","system-information","unicode"],"created_at":"2024-11-13T16:36:45.317Z","updated_at":"2025-05-06T04:31:41.768Z","avatar_url":"https://github.com/RubixDev.png","language":"Rust","readme":"# pixfetch\nAnother fetch program with pixelized images written in Rust\n\n![screenshot with default config](https://raw.githubusercontent.com/RubixDev/pixfetch/master/screenshots/default.png)\n![screenshot with custom config](https://raw.githubusercontent.com/RubixDev/pixfetch/master/screenshots/custom.png)\n\n## Configuration\npixfetch can be configured using a config file in `$XDG_CONFIG_HOME/pixfetch/config.toml` or when `$XDG_CONFIG_HOME` is not set in `$HOME/.config/pixfetch/config.toml`. To see all options you can have a look at the [default configuration file](https://github.com/RubixDev/pixfetch/blob/master/src/default_config.toml).\n\nAdditionally, all configuration can also be overridden with flags from the command line. To see those options run `pixfetch --help` or `pixfetch -h` for shorter descriptions.\n\n## Installation\n### Arch Linux\nOn Arch Linux pixfetch can be installed through the AUR with a helper like `paru` or `yay`:\n```bash\nparu -S pixfetch\n```\n\n### Cargo\nIn case you do not need the man page and shell completion scripts you can also install pixfetch through `cargo`:\n```bash\ncargo install pixfetch\n```\n\n### Manual\n#### Binary releases\n##### 0. Setup\nYou can set these variables beforehand to be able to just copy below commands (edit the values accordingly):\n```bash\nversion=1.0.0\nplatform=x86_64-unknown-linux-musl\n```\n\n##### 1. Download\nDownload the latest release for your platform from the [releases page](https://github.com/RubixDev/pixfetch/releases). In case there is no suitable download option for you, please [open an issue](https://github.com/RubixDev/pixfetch/issues/new):\n```bash\nwget https://github.com/RubixDev/pixfetch/releases/download/v$version/pixfetch-$version-$platform.tar.gz\n```\n\n##### 2. Extract the downloaded archive:\n```bash\ntar -xvf pixfetch-$version-$platform.tar.gz\n```\nand open the directory:\n```bash\ncd pixfetch-$version-$platform\n```\n\n##### 3. Copy the files to their respective places:\n```bash\nsudo install -Dm755 pixfetch /usr/bin/pixfetch\nsudo install -Dm644 README.md /usr/share/doc/pixfetch/README.md\nsudo install -Dm644 LICENSE /usr/share/licenses/pixfetch/LICENSE\nsudo install -Dm644 doc/pixfetch.1.gz /usr/share/man/man1/pixfetch.1.gz\nsudo install -Dm644 completion/_pixfetch /usr/share/zsh/site-functions/_pixfetch\nsudo install -Dm644 completion/pixfetch.bash /usr/share/bash-completion/completions/pixfetch\nsudo install -Dm644 completion/pixfetch.fish /usr/share/fish/vendor_completions.d/pixfetch.fish\n```\n\n\u003e Note: For bash completion make sure you have [`bash-completion`](https://github.com/scop/bash-completion) installed\n\n#### From source\n##### 1. Clone the repository:\n```bash\ngit clone https://github.com/RubixDev/pixfetch.git\n```\n\n##### 2. Compile the binary:\n```bash\ncargo build --release\n```\n\n##### 3. Copy the binary, README and LICENSE\n```bash\nsudo install -Dm755 \"${CARGO_TARGET_DIR:-target}/release/pixfetch\" /usr/bin/pixfetch\nsudo install -Dm644 README.md /usr/share/doc/pixfetch/README.md\nsudo install -Dm644 LICENSE /usr/share/licenses/pixfetch/LICENSE\n```\n\n##### 4. Locate the output directory:\nThis is where the generated man page and shell completion scripts are located. The location of that folder was logged while building the binary. Alternatively you can use following command:\n```bash\nfind \"${CARGO_TARGET_DIR:-target}/release\" -name pixfetch.1 -print0 | xargs -0 ls -t | head -n1 | xargs dirname\n```\n\nYou can then open that directory using `cd`.\n\n##### 5. Copy the generated file to their respective locations\n```bash\ngzip pixfetch.1\nsudo install -Dm644 pixfetch.1.gz /usr/share/man/man1/pixfetch.1.gz\nsudo install -Dm644 _pixfetch /usr/share/zsh/site-functions/_pixfetch\nsudo install -Dm644 pixfetch.bash /usr/share/bash-completion/completions/pixfetch\nsudo install -Dm644 pixfetch.fish /usr/share/fish/vendor_completions.d/pixfetch.fish\n```\n\n\u003e Note: For bash completion make sure you have [`bash-completion`](https://github.com/scop/bash-completion) installed\n","funding_links":["https://ko-fi.com/rubixdev"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubixdev%2Fpixfetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubixdev%2Fpixfetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubixdev%2Fpixfetch/lists"}