• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H09-Nov-2021-3729

contrib/H09-Nov-2021-427219

etc/H09-Nov-2021-5437

include/H09-Nov-2021-1,003724

man/H09-Nov-2021-1,5751,319

meson/H09-Nov-2021-2013

src/H03-May-2022-4,7283,603

testcases/H09-Nov-2021-674495

travis/H09-Nov-2021-6249

CHANGELOGH A D09-Nov-202113.7 KiB314278

CONTRIBUTING.mdH A D09-Nov-2021102 21

I3STATUS_VERSIONH A D09-Nov-202113 21

LICENSEH A D09-Nov-20211.4 KiB2822

README.mdH A D09-Nov-20211.2 KiB4533

i3status.cH A D03-May-202235.3 KiB982803

meson.buildH A D03-May-20226.9 KiB265230

README.md

1# i3status
2
3## Description
4
5i3status is a small program for generating a status bar for i3bar, dzen2, xmobar
6or similar programs. It is designed to be very efficient by issuing a very small
7number of system calls, as one generally wants to update such a status line
8every second. This ensures that even under high load, your status bar is updated
9correctly. Also, it saves a bit of energy by not hogging your CPU as much as
10spawning the corresponding amount of shell commands would.
11
12## Development
13
14i3status has the following dependencies:
15  * libconfuse-dev
16  * libyajl-dev
17  * libasound2-dev
18  * libnl-genl-3-dev
19  * meson (compile-time only dependency)
20  * asciidoc (only for the documentation)
21  * libpulse-dev (for getting the current volume using PulseAudio)
22
23On debian-based systems, the following line will install all requirements:
24```bash
25apt-get install autoconf libconfuse-dev libyajl-dev libasound2-dev libiw-dev asciidoc libpulse-dev libnl-genl-3-dev meson
26```
27
28## Upstream
29
30i3status is developed at https://github.com/i3/i3status
31
32## Compilation
33
34Prefer installing i3status via your Linux distribution’s package manager.
35
36If you absolutely have to build from source, use:
37
38```bash
39  mkdir build
40  cd build
41  meson ..
42  ninja
43  sudo ninja install
44```
45