Package Details: py3status-git 3.54.r3.gbbe43bce-1

Git Clone URL: https://aur.archlinux.org/py3status-git.git (read-only, click to copy)
Package Base: py3status-git
Description: An extensible i3status replacement/wrapper written in python (development version)
Upstream URL: https://github.com/ultrabug/py3status
Keywords: bar i3 i3status i3wm status
Licenses: BSD
Conflicts: py3status
Provides: py3status
Submitter: waaaaargh
Maintainer: cgirard
Last Packager: cgirard
Votes: 25
Popularity: 0.000215
First Submitted: 2013-03-09 02:16 (UTC)
Last Updated: 2023-10-24 10:17 (UTC)

Dependencies (15)

Required by (7)

Sources (1)

Latest Comments

Antiz commented on 2024-01-12 18:35 (UTC) (edited on 2024-01-12 18:35 (UTC) by Antiz)

Hi,

This package should now include a hook to refresh the arch_updates modules on pacman operations.
See the related upstream discussion and the related commit made to the [extra] package for more details.

cgirard commented on 2021-07-18 17:09 (UTC)

Hi, there has been some changes on the documentation side: doc=>docs, README.rst=> README.md. Could you correct the PKGBUILD?

cgirard commented on 2020-12-15 15:08 (UTC)

Cannot build currently: https://github.com/ultrabug/py3status/pull/1978#issuecomment-745352593

milkii commented on 2019-01-06 20:36 (UTC) (edited on 2019-01-06 20:37 (UTC) by milkii)

via #archlinux-aur;

milkii> hmm.. py3status-git and py3status-modules don't want to be on the same system as the dependencies don't seem to want to work out, but the former has provides=('py3status') and is 2.4..., and the latter has a 'py3status>=2.0' depend. PKGBUILD formatting looks legit..
Scimmia> oh, I see the issue, the provides has no version
Scimmia> and the depends requires a version

maximbaz commented on 2018-01-20 22:16 (UTC)

@Horgix: could I ask you to make py3status and py3status-git AUR packages overwrite the contents of /usr/bin/py3-cmd with the contents below, until the tracking bug https://github.com/ultrabug/py3status/issues/1195 is fixed? It is just so annoying to fix it manually every time.

#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys

from py3status.command import send_command

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
    sys.exit(send_command())