Package Details: archey3-git 0.4.r57.gac68752-1

Git Clone URL: https://aur.archlinux.org/archey3-git.git (read-only, click to copy)
Package Base: archey3-git
Description: Python script to display system information alongside the Arch Linux logo.
Upstream URL: https://lclarkmichalek.github.io/archey3/
Keywords: info system
Licenses: GPL
Conflicts: archey, archey3, archey4
Provides: archey
Submitter: xyproto
Maintainer: HLFH
Last Packager: HLFH
Votes: 172
Popularity: 0.004829
First Submitted: 2013-11-02 12:03 (UTC)
Last Updated: 2022-12-30 18:10 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10 11 12 13 14 15 Next › Last »

BluePeppers commented on 2011-06-12 12:36 (UTC)

Fixed symlink problem. @graysky, I generally use the color to indicate space usage, i.e. 80% = may need to clear out drive some time soon. I've added two new options though that will let you set the bounds at which the colors change. Add this to your config file to change the color limits to 75/90 [fs] low_bound = 75 medium_bound = 90

graysky commented on 2011-06-12 11:02 (UTC)

suggestion: change color limits to 75/90 why: most file systems preform fine up to ~75 % usage and then become more prone to fragmentation. --- archey3 2011-06-12 06:59:23.000000000 -0400 +++ archey3 2011-06-12 06:59:46.171086029 -0400 @@ -172,8 +172,8 @@ return self.format_output(stdoutdata.decode()) - def color_me(self, output, number=None, low=30, low_color='green', - medium=60, medium_color='yellow', high_color='red'): + def color_me(self, output, number=None, low=75, low_color='green', + medium=90, medium_color='yellow', high_color='red'): if number is None and output.isdigit(): number = int(output) elif number is None:

graysky commented on 2011-06-12 10:52 (UTC)

new bug: your symlink don't work when the pkg installs: $ ls -l /usr/bin/archey* lrwxrwxrwx 1 root root 36 Jun 12 06:44 /usr/bin/archey -> /dev/shm/archey3/pkg/usr/bin/archey3 -rwxr-xr-x 1 root root 24748 Jun 12 06:44 /usr/bin/archey3 Note that the link points to the patch I used to compile archey3

graysky commented on 2011-06-12 10:45 (UTC)

nice, BP that fixed it

BluePeppers commented on 2011-06-11 11:55 (UTC)

Ok, I can't replicate the issue, but from the error message, I think I've fixed it. The --debug option should be a bit more intuative aswell.

flienteen commented on 2011-06-10 21:09 (UTC)

graysky, same to me. BluePeppers, [core] color = blue align = top display_modules = distro(), uname(n), uname(r), uptime(), wm(), packages(), ram(), env(editor), fs(/), fs(/home) $ archey3 --debug=0 [2011-06-10 21:06] ERROR: fsDisplay: Could not colorize output, errored with invalid literal for int() with base 10: '2.6' [2011-06-10 21:06] ERROR: Core: Could not render line for fsDisplay, failed with error local variable 'persentage' referenced before assignment [2011-06-10 21:06] ERROR: fsDisplay: Could not colorize output, errored with invalid literal for int() with base 10: '2.3' [2011-06-10 21:06] ERROR: Core: Could not render line for fsDisplay, failed with error local variable 'persentage' referenced before assignment

BluePeppers commented on 2011-06-09 12:34 (UTC)

Install python-logbook-git for logging, and then I'll be able to tell where it failed :)

graysky commented on 2011-06-09 11:56 (UTC)

Nice, but mine doesn't display the file systems: [core] color = blue align = center display_modules = distro(), uname(n), uname(r), uptime(), packages(), ram(), fs(/), fs(/home), fs(/boot), fs(/var), fs(/media/data) $ archey3 + # ### ##### ###### ; #####; OS: Arch Linux x86_64 +##.##### Hostname: facade +########## Kernel Release: 2.6.39-ck #############; Uptime: 0:08 ###############+ Packages: 701 ####### ####### RAM: 502 MB / 3964 MB .######; ;###;`". Boot: 19M / 194M (9%) (ext3) .#######; ;#####. Data: 285G / 728G (39%) (fuseblk) #########. .########` ######' '###### ;#### ####; ##' '## #' `#

BluePeppers commented on 2011-06-09 10:55 (UTC)

The config file is in $XDG_DATA_HOME/archey3.cfg, which is usually ~/.config/archey3.cfg. There are some example configs at http://bluepeppers.github.com/archey3/examples.html.