{"id":16345392,"url":"https://github.com/unclechu/unclechu-i3-status","last_synced_at":"2026-05-06T03:31:45.163Z","repository":{"id":66007016,"uuid":"103867940","full_name":"unclechu/unclechu-i3-status","owner":"unclechu","description":"my own i3 status-bar generator","archived":false,"fork":false,"pushed_at":"2023-12-02T23:44:57.000Z","size":269,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-18T15:44:36.496Z","etag":null,"topics":["dotfiles","haskell","i3","i3bar","i3status","i3wm","tiling-window-manager","window-manager"],"latest_commit_sha":null,"homepage":null,"language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unclechu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2017-09-17T22:54:26.000Z","updated_at":"2022-06-01T17:26:04.000Z","dependencies_parsed_at":"2023-12-03T00:26:57.067Z","dependency_job_id":"9940d744-3da1-4407-8b89-34ad61a74bde","html_url":"https://github.com/unclechu/unclechu-i3-status","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unclechu/unclechu-i3-status","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Funclechu-i3-status","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Funclechu-i3-status/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Funclechu-i3-status/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Funclechu-i3-status/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unclechu","download_url":"https://codeload.github.com/unclechu/unclechu-i3-status/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Funclechu-i3-status/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"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":["dotfiles","haskell","i3","i3bar","i3status","i3wm","tiling-window-manager","window-manager"],"created_at":"2024-10-11T00:31:26.112Z","updated_at":"2026-05-06T03:31:45.136Z","avatar_url":"https://github.com/unclechu.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# unclechu-i3-status\n\nMy own status line generator for [i3 window manager][i3wm].\n\nIt also closely integrated with my own software such as\n[xlib-keys-hack][xlib-keys-hack].\nIt gets state of indicators using specific [D-Bus][dbus] interface,\nbut any other application could implement such interface instead of\n[xlib-keys-hack][xlib-keys-hack].\n\n## Usage\n\n### With NixOS\n\nClone this repo, `cd` to it and run:\n\n``` sh\nnix-shell --run unclechu-i3-status\n```\n\nSee also [shell.nix]’s arguments for available options.\nFor instance if you want to enter a `nix-shell` with `cabal` available:\n\n``` sh\nnix-shell --arg withCabal true\n```\n\n#### NixOS\n\nYou can add this application into your NixOS `configuration.nix` like this:\n\n``` nix\n{ pkgs, ... }:\nlet\n  unclechu-i3-status-src = pkgs.fetchFromGitHub {\n    owner = \"unclechu\";\n    repo = \"unclechu-i3-status\";\n    rev = \"ffffffffffffffffffffffffffffffffffffffff\"; # Git commit hash\n    sha256 = \"0000000000000000000000000000000000000000000000000000\";\n  };\n\n  unclechu-i3-status = pkgs.callPackage unclechu-i3-status-src {};\nin\n{\n  environment.systemPackages = [ unclechu-i3-status ];\n}\n```\n\n#### Use it with [i3wm]\n\nSince you probably would need it to use with i3wm only then it makes sense to\nmake this dependency be specifically addressed to [i3wm] (in your\n`/etc/nixos/configuration.nix`):\n\n``` nix\n{ pkgs, ... }:\nlet\n  unclechu-i3-status-src = pkgs.fetchFromGitHub {\n    owner = \"unclechu\";\n    repo = \"unclechu-i3-status\";\n    rev = \"ffffffffffffffffffffffffffffffffffffffff\"; # Git commit hash\n    sha256 = \"0000000000000000000000000000000000000000000000000000\";\n  };\n\n  unclechu-i3-status = pkgs.callPackage unclechu-i3-status-src {};\nin\n{\n  services.xserver.windowManager.i3.extraPackages = [\n    pkgs.i3status\n    unclechu-i3-status\n  ];\n}\n```\n\n### With Stack\n\n``` sh\nstack build\nstack install\n```\n\nAt this point make sure you have `~/.local/bin` in `PATH` environment variable\nwhen [i3][i3wm] starts. You could do so by adding this to your `~/.profile`:\n\n``` sh\nexport PATH=\"$HOME/.local/bin:$PATH\"\n```\n\nBut `~/.profile` must be evaluated at X11 session initialization step in your\nX11 config, for example it could be:\n\n``` sh\ngrep -F '.profile' /etc/X11/xinit/xinitrc-common\n## [ -r $HOME/.profile ] \u0026\u0026 . $HOME/.profile\n```\n\nThen, when you make sure `unclechu-i3-status` executable is available when\n[i3][i3wm] starts, you could add this to `~/.config/i3/config`:\n\n``` conf\nbar {\n  status_command unclechu-i3-status\n}\n```\n\n## Author\n\nViacheslav Lotsmanov\n\n## License\n\n[GPLv3](LICENSE)\n\n[i3wm]: https://i3wm.org/\n[xlib-keys-hack]: https://github.com/unclechu/xlib-keys-hack\n[dbus]: https://www.freedesktop.org/wiki/Software/dbus/\n\n[shell.nix]: shell.nix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Funclechu-i3-status","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funclechu%2Funclechu-i3-status","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Funclechu-i3-status/lists"}