about summary refs log tree commit diff
path: root/users/aspen/pkgs
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2024-03-31T16·54-0400
committeraspen <root@gws.fyi>2024-03-31T19·32+0000
commit35a96b47d5f4decfd58c152fa69dd629d64e7c38 (patch)
tree411dd0187a4b41649e07ea5dde0988cc10abf4bc /users/aspen/pkgs
parentd706ebda657909211ca0089d575888a6ec94c426 (diff)
feat(aspen/system): Weather in i3status bar r/7831
Change-Id: Ib2572fea5fc81d6b4d321a2e317a02398d0ae612
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11292
Tested-by: BuildkiteCI
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: aspen <root@gws.fyi>
Diffstat (limited to 'users/aspen/pkgs')
-rw-r--r--users/aspen/pkgs/py3status.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/users/aspen/pkgs/py3status.nix b/users/aspen/pkgs/py3status.nix
new file mode 100644
index 000000000000..89f52d967400
--- /dev/null
+++ b/users/aspen/pkgs/py3status.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }:
+
+pkgs.python3Packages.py3status.overridePythonAttrs (old: rec {
+  name = "${pname}-${old.version}";
+  pname = "py3status-glittershark";
+  src = pkgs.fetchFromGitHub {
+    owner = "glittershark";
+    repo = "py3status";
+    rev = "f243be1458cdabd5a7524adb76b5db99006c810c";
+    sha256 = "0ffmv91562yk0wigriw4d5nfg2b32wqx8x78qvdqkawzvgbwrwvl";
+  };
+})