@hackage xmobar0.11.1

A Minimalistic Text Based Status Bar

% xmobar - A Minimalistic Text Based Status Bar % Andrea Rossato

About

xmobar is a minimalistic, text based, status bar. It was designed to work with the xmonad Window Manager.

It was inspired by the Ion3 status bar, and supports similar features, like dynamic color management, output templates, and extensibility through plugins.

This is a screen shot of my desktop with xmonad and xmobar.

xmobar supports XFT and UTF-8 locales.

See xmobar.config-sample, distributed with the source code, for a sample configuration.

Download

You can get the xmobar source code from Hackage.

To get the darcs source run:

    darcs get http://code.haskell.org/xmobar/

The latest binary can be found here:

http://code.haskell.org/~arossato/xmobar/xmobar-0.9.2.bin

A recent screen shot can be found here:

http://code.haskell.org/~arossato/xmobar/xmobar-0.9.png

Version 0.9 requires Cabal-1.2.x, but should work both with ghc-6.6.1 and ghc-6.8.1.

Bug Reports

To submit bug reports you can use the Google code bug tracking system available at the following address:

http://code.google.com/p/xmobar/issues

Installation

To install simply run:

    tar xvfz xmobar-0.9
    cd xmobar-0.9

Then run the configure script:

    runhaskell Setup.lhs configure

    # To enable UTF-8 support run:
    runhaskell Setup.lhs configure --flags="with_utf8"

    # To enable both XFT and UTF-8 support run:
    runhaskell Setup.lhs configure --flags="with_xft"

Now you can build the source:

    runhaskell Setup.lhs build
    runhaskell Setup.lhs install # possibly to be run as root

You can now run xmobar with:

    xmobar /path/to/config &

or

    xmobar &

if you have the default configuration file saved as ~/.xmobarrc

Utf-8 and Xft Support

xmobar can be compiled with UTF-8 and XFT support. If you want UTF-8 support only, you just need to run the configuration script with the "with_utf" flag:

    runhaskell Setup.lhs configure --flags="with_utf8"

This requires the presence of utf8-string package.

XFT support, which will also enable UTF-8 support, requires the X11-xft package too and is enabled by running the configuration script with the "with_xft" flag:

     runhaskell Setup.lhs configure --flags="with_xft"

Then build xmobar as usual.

To use XFT fonts you need to use the xft: prefix in the font configuration option. For instance:

    font = "xft:Times New Roman-10:italic"

Configuration

Quick Start

See xmobar.config-sample for an example.

For the output template:

  • %command% will execute command and print the output. The output may contain markups to change the characters' color.

  • <fc=#FF0000>string</fc> will print string with #FF0000 color (red).

Other configuration options:

font : Name of the font to be used. Use the xft: prefix for XFT fonts.

bgColor : Background color.

fgColor : Default font color.

position : Top, TopW, TopSize, Bottom, BottomW, BottomSize or Static (with x, y, width and height).

: TopW and BottomW take 2 arguments: an alignment parameter (L for left, C for centered, R for Right) and an integer for the percentage width xmobar window will have in respect to the screen width.

: TopSize and BottomSize take 3 arguments: an alignment parameter, an integer for the percentage width, and an integer for the minimum pixel height that the xmobar window will have.

: For example:

: position = BottomW C 75

: to place xmobar at the bottom, centered with the 75% of the screen width.

: Or

: position = Static { xpos = 0 , ypos = 0, width = 1024, height = 15 }

: or

: position = Top

commands : For setting the options of the programs to run (optional).

sepChar : The character to be used for indicating commands in the output template (default '%').

alignSep : a 2 character string for aligning text in the output template. The text before the first character will be align to left, the text in between the 2 characters will be centered, and the text after the second character will be align to the right.

template : The output template.

Running xmobar with i3status

xmobar can be used to display information gathered by i3status, a small program that gathers information and formats it suitable for being displayed by the dzen2 status bar, wmii's status bar or xmobar's StdinReader.

Since xmobar support has been added only recently you need to get the git repository, and build it with the appropriate flags:

git clone git://code.stapelberg.de/i3status

and then build it:

cd i3status
make EXTRA_CFLAGS="-DXMOBAR

Then you can run it with:

./i3status -c i3status.conf | xmobar -o -t "%StdinReader%" -c "[Run StdinReader]"

Command Line Options

xmobar can be either configured with a configuration file or with command line options. In the second case, the command line options will overwrite the corresponding options set in the configuration file.

Example:

xmobar -B white -a right -F blue -t '%LIPB%' -c '[Run Weather "LIPB" [] 36000]'

This is the list of command line options (the output of xmobar --help):

Usage: xmobar [OPTION...] [FILE]
Options:
  -h, -?        --help               This help
  -V            --version            Show version information
  -f font name  --font=font name     The font name
  -B bg color   --bgcolor=bg color   The background color. Default black
  -F fg color   --fgcolor=fg color   The foreground color. Default grey
  -o            --top                Place xmobar at the top of the screen
  -b            --bottom             Place xmobar at the bottom of the screen
  -a alignsep   --alignsep=alignsep  Separators for left, center and right text
                                     alignment. Default: '}{'
  -s char       --sepchar=char       The character used to separate commands in
                                     the output template. Default '%'
  -t template   --template=template  The output template
  -c commands   --commands=commands  The list of commands to be executed
  -x screen     --screen=screen      On which X screen number to start
Mail bug reports and suggestions to <andrea.rossato@unibz.it>

The Output Template

The output template must contain at least one command. xmobar will parse the template and will search for the command to be executed in the commands configuration option. First an alias will be searched (plugins such as Weather or Network have default aliases, see below). After that, the command name will be tried. If a command is found, the arguments specified in the commands list will be used.

If no command is found in the commands list, xmobar will ask the operating system to execute a program with the name found in the template. If the execution is not successful an error will be reported.

The commands Configuration Option

The commands configuration option is a list of commands information and arguments to be used by xmobar when parsing the output template. Each member of the list consists in a command prefixed by the Run keyword. Each command has arguments to control the way xmobar is going to execute it.

The option consists in a list of commands separated by a comma and enclosed by square parenthesis.

Example:

[Run Memory ["-t","Mem: <usedratio>%"] 10, Run Swap [] 10]

to run the Memory monitor plugin with the specified template, and the swap monitor plugin, with default options, every second.

The only internal available command is Com (see below Executing External Commands). All other commands are provided by plugins. xmobar comes with some plugins, providing a set of system monitors, a standard input reader, an Unix named pipe reader, and a configurable date plugin. These plugins install the following internal commands: Weather, Network, Memory, Swap, Cpu, MultiCpu, Battery, Thermal, CpuFreq, CoreTemp, Date, StdinReader, CommandReader, and PipeReader.

To remove them see below Installing/Removing a Plugin

Other commands can be created as plugins with the Plugin infrastructure. See below Writing a Plugin

System Monitor Plugins

This is the description of the system monitor plugins that are installed by default.

Each monitor has an alias to be used in the output template. Monitors have default aliases.

Weather StationID Args RefreshRate

  • aliases to the Station ID: so Weather "LIPB" [] can be used in template as %LIBP%
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: station, stationState, year, month, day, hour, wind, visibility, skyCondition, tempC, tempF, dewPoint, rh, pressure
  • Default template: <station>: <tempC>C, rh <rh>% (<hour>)
  • Requires curl in the $PATH to retrieve weather information from http://weather.noaa.gov

Network Interface Args RefreshRate

  • aliases to the interface name: so Network "eth0" [] can be used as %eth0%
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: dev, rx, tx, rxbar, txbar
  • Default template: <dev>: <rx>|<tx>

Wireless Interface Args RefreshRate

  • aliases to the interface name with the suffix "wi": thus, Wirelss "wlan0" [] can be used as %wlan0wi%
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: essid, quality, qualitybar
  • Default template: <essid> <quality>
  • Requires the C library libiw (part of the wireless tools suite) installed in your system. In addition, to activate this plugin you must pass --flags="with_iwlib" to "runhaskell Setup configure" or to "cabal install".

Memory Args RefreshRate

  • aliases to memory
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: total, free, buffer, cache, rest, used, usedratio, usedbar, freebar
  • Default template: Mem: <usedratio>% (<cache>M)

Swap Args RefreshRate

  • aliases to swap
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: total, used, free, usedratio
  • Default template: Swap: <usedratio>%

Cpu Args RefreshRate

  • aliases to cpu
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: total, bar, user, nice, system, idle
  • Default template: Cpu: <total>

MultiCpu Args RefreshRate

  • aliases to multicpu
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: total, bar, user, nice, system, idle, total0, bar0, user0, nice0, system0, idle0, ...
  • Default template: Cpu: <total>

Battery Args RefreshRate

  • aliases to battery
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: left, leftbar, status
  • Default template: Batt: <left>

BatteryP Dirs Args RefreshRate

  • aliases to battery
  • Dirs: list of directories in /proc/acpi/battery/ directory where to look for the state and info files. Example: ["BAT0","BAT1","BAT2"]. Only the first 3 directories will be searched.
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: left, leftbar, status
  • Default template: Batt: <left>

TopProc Args RefreshRate

  • aliases to top
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: no, name1, cpu1, both1, mname1, mem1, mboth1, name2, cpu2, both2, mname2, mem2, mboth2, ...
  • Default template: <both1>
  • Displays the name and cpu/mem usage of running processes (bothn and mboth display both, and is useful to specify an overall maximum and/or minimum width, using the -m/-M arguments. no gives the total number of processes.

TopMem Args RefreshRate

  • aliases to topmem
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: name1, mem1, both1, name2, mem2, both2, ...
  • Default template: <both1>
  • Displays the name and RSS (resident memory size) of running processes (bothn displays both, and is useful to specify an overall maximum and/or minimum width, using the -m/-M arguments.

DiskU Disks Args RefreshRate

  • aliases to disku
  • Disks: list of pairs of the form (device or mount point, template), where the template can contain , , , or , or for total, free, used, free percentage and used percentage of the given file system capacity. Example: [("/", "<used>/<size>"), ("sdb1", "<usedbar>")]
  • Args: the argument list (see above). -t/--template is ignored.
  • Default template: none (you must specify a template for each file system).

DiskIO Disks Args RefreshRate

  • aliases to diskio
  • Disks: list of pairs of the form (device or mount point, template), where the template can contain , , for total, read and write speed, respectively. Example: [("/", "<read> <write>"), ("sdb1", "<total>")]
  • Args: the argument list (see above). -t/--template is ignored.
  • Default template: none (you must specify a template for each file system).

Thermal Zone Args RefreshRate

  • aliases to the Zone: so Zone "THRM" [] can be used in template as %THRM%
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: temp
  • Default template: Thm: <temp>C
  • This plugin works only on sytems with devices having thermal zone. Check directories in /proc/acpi/thermal_zone for possible values.
  • Example: Run Thermal "THRM" ["-t","iwl4965-temp: \<temp\>C"]

CpuFreq Args RefreshRate

  • aliases to cpufreq
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: cpu0, cpu1, .., cpuN
  • Default template: Freq: <cpu0>GHz
  • This monitor requires acpi_cpufreq module to be loaded in kernel
  • Example: Run CpuFreq ["-t","Freq:\<cpu0\>|\<cpu1\>GHz","-L","0","-H","2","-l","lightblue","-n","white","-h","red"] 50

CoreTemp Args RefreshRate

  • aliases to coretemp
  • Args: the argument list (see below)
  • Variables that can be used with the -t/--template argument: core0, core1, .., coreN
  • Default template: Temp: <core0>C
  • This monitor requires coretemp module to be loaded in kernel
  • Example: Run CoreTemp ["-t","Temp:\<core0\>|\<core1\>C","-L","40","-H","60","-l","lightblue","-n","gray90","-h","red"] 50

MPD Args RefreshRate

  • aliases to mpd
  • Args: the argument list (see below). In addition you can provide -P, -S and -Z, with an string argument, to represent the playing, stopped and paused states in the statei template field.
  • Variables that can be used with the -t/--template argument: bar, state, statei, volume, length lapsed, plength name, artist, composer, performer album, title, track, file, genre
  • Default template: MPD: <state>
  • Example: Run MPD ["-t", " (<album>) <track>/<plength> <statei> ", "--", "-P", ">>", "-Z", "|", "-S", "><"] 10 Note that you need "--" to separate regular monitor options from MPD's specific ones. </li> <li>This monitor will only be compiled if you ask for it using the <code>with_mpd</code> flag. It needs libmpd 4.1 or later (available on Hackage). </li> </ul> <p><code>Mail Args</code></p> <ul> <li>aliases to <code>Mail</code> </li> <li>Args: list of maildirs in form [("name1","path1"),("name2","path2")] </li> <li>This plugin requires INOTIFY support in Linux kernel and hinotify library. To activate, pass --flags="with_inotify" to "runhaskell Setup configure" or to "cabal install". </li> </ul> <p><code>MBox Mboxes Opts Alias</code></p> <ul> <li>Mboxes a list of mbox files of the form [("name", "path", "color")], where name is the displayed name, path the absolute or relative (to BaseDir) path of the mbox file, and color the color to use to display the mail count (use an empty string for the default). </li> <li>Opts is a possibly empty list of options, as flags. Possible values: -a --all (no arg) Show all mailboxes, even if empty. -d dir --dir dir a string giving the base directory where mbox files with a relative path live. -p prefix --prefix prefix a string giving a prefix for the list of displayed mail coints -s suffix --suffix suffix a string giving a suffix for the list of displayed mail coints </li> <li>This plugin requires INOTIFY support in Linux kernel and hinotify library. To activate, pass --flags="with_inotify" to "runhaskell Setup configure" or to "cabal install". </li> <li>Example: <code>Run MBox [("I ", "inbox", "red"), ("O ", "/foo/mbox", "")] ["-d", "/var/mail/", "-p", " "] "mbox"</code> will look for mails in <code>/var/mail/inbox</code> and <code>/foo/mbox</code>, and will put a space in front of the printed string (when it's not empty); it can be used in the template with the alias <code>mbox</code>. </li> </ul> <h2 id="monitor-plugins-commands-arguments">Monitor Plugins Commands Arguments</h2> <p>These are the arguments that can be used for internal commands in the <code>commands</code> configuration option:</p> <pre><code>-H number --High=number The high threshold -L number --Low=number The low threshold -h color number --high=color number Color for the high threshold: es "#FF0000" -n color number --normal=color number Color for the normal threshold: es "#00FF00" -l color number --low=color number Color for the low threshold: es "#0000FF" -p number --ppad=number Pad percentages to given width -m number --minwidth=number Minimum field width -M number --maxwidth=number Maximum field width -w number --width=number Fixed field width -c chars --padchars=chars Chars used (cyclically) for padding -a ["r" or "l"] --align=["r" or "l"] Pad alignment (right/left) -b chars --bback=chars Chars used to draw bar backgrounds (default ":") -f chars --bfore=chars Chars used to draw bar foregrounds (default "#") -W number --bwidth=number Bar width (default 10) -t output template --template=output template Output template of the command. </code></pre> <p>Commands' arguments must be set as a list. Es:</p> <pre><code>Run Weather "EGPF" ["-t","<station>: <tempC>C"] 36000 </code></pre> <p>In this case <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a> will run the weather monitor, getting information for the weather station ID EGPF (Glasgow Airport, as a homage to GHC) every hour (36000 tenth of seconds), with a template that will output something like:</p> <pre><code>Glasgow Airport: 16.0C </code></pre> <h2 id="executing-external-commands">Executing External Commands</h2> <p>In order to execute an external command you can either write the command name in the template, in this case it will be executed without arguments, or you can configure it in the "commands" configuration option list with the Com template command:</p> <p><code>Com ProgramName Args Alias RefreshRate</code></p> <ul> <li>ProgramName: the name of the program </li> <li>Args: the arguments to be passed to the program at execution time </li> <li>Alias: a name to be used in the template. If the alias is en empty string the program name can be used in the template. </li> </ul> <p>Es:</p> <pre><code> Run Com "uname" ["-s","-r"] "" 36000 </code></pre> <p>can be used in the output template as <code>%uname%</code></p> <pre><code> Run Com "date" ["+\"%a %b %_d %H:%M\""] "mydate" 600 </code></pre> <p>can be used in the output template as <code>%mydate%</code></p> <h2 id="other-plugins">Other Plugins</h2> <p><code>Date Args Alias RefreshRate</code></p> <p><code>StdinReader</code></p> <p><code>CommandReader "/path/to/program" Alias</code></p> <p><code>PipeReader "/path/to/pipe" Alias</code></p> <h1 id="plugins">Plugins</h1> <h2 id="writing-a-plugin">Writing a Plugin</h2> <p>Writing a plugin for <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a> should be very simple. You need to create a data type with at least one constructor.</p> <p>Next you must declare this data type an instance of the <code>Exec</code> class, by defining the 1 needed method (alternatively <code>start</code> or <code>run</code>) and 2 optional ones (alias and rate):</p> <pre><code> start :: e -> (String -> IO ()) -> IO () run :: e -> IO String rate :: e -> Int alias :: e -> String </code></pre> <p><code>start</code> must receive a callback to be used to display the <code>String</code> produced by the plugin. This method can be used for plugins that need to perform asynchronous actions. See <code>Plugins/PipeReader.hs</code> for an example.</p> <p><code>run</code> can be used for simpler plugins. If you define only <code>run</code> the plugin will be run every second. To overwrite this default you just need to implement <code>rate</code>, which must return the number of tenth of seconds between every successive runs. See <code>Plugins/HelloWorld.hs</code> for an example of a plugin that runs just once, and <code>Plugins/Date.hs</code> for one that implements <code>rate</code>.</p> <p>Notice that Date could be implemented as:</p> <pre><code> instance Exec Date where alias (Date _ a _) = a start (Date f _ r) = date f r date :: String -> Int -> (String -> IO ()) -> IO () date format r callback = do go where go = do t <- toCalendarTime =<< getClockTime callback $ formatCalendarTime defaultTimeLocale format t tenthSeconds r >> go </code></pre> <p>This implementation is equivalent to the one you can read in <code>Plugins/Date.hs</code>.</p> <p><code>alias</code> is the name to be used in the output template. Default alias will be the data type constructor.</p> <p>Implementing a plugin requires importing the plugin API (the <code>Exec</code> class definition), that is exported by <code>Plugins.hs</code>. So you just need to import it in your module with:</p> <pre><code> import Plugins </code></pre> <p>After that your type constructor can be used as an argument for the Runnable type constructor <code>Run</code> in the <code>commands</code> list of the configuration options.</p> <p>This requires importing your plugin into <code>Config.hs</code> and adding your type to the type list in the type signature of <code>Config.runnableTypes</code>.</p> <p>For a very basic example see <code>Plugins/HelloWorld.hs</code> or the other plugins that are distributed with <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a>.</p> <h2 id="installingremoving-a-plugin">Installing/Removing a Plugin</h2> <p>Installing a plugin should require 3 steps. Here we are going to install the HelloWorld plugin that comes with <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a>:</p> <ol> <li> <p>import the plugin module in <code>Config.hs</code>, by adding:</p> <pre><code> import Plugins.HelloWorld </code></pre> </li> <li> <p>add the plugin data type to the list of data types in the type signature of <code>runnableTypes</code> in <code>Config.hs</code>. For instance, for the HelloWorld plugin, change <code>runnableTypes</code> into:</p> <pre><code> runnableTypes :: Command :*: Monitors :*: HelloWorld :*: () runnableTypes = undefined </code></pre> </li> <li> <p>Rebuild and reinstall <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a>. Now test it with:</p> <pre><code> xmobar Plugins/helloworld.config </code></pre> </li> </ol> <p>As you may see in the example configuration file, the plugin can be used by adding, in the <code>commands</code> list:</p> <pre><code> Run HelloWorld </code></pre> <p>and, in the output template, the alias of the plugin:</p> <pre><code> %helloWorld% </code></pre> <p>That's it.</p> <p>To remove a plugin, just remove its type from the type signature of runnableTypes and remove the imported modules.</p> <p>To remove the system monitor plugin:</p> <ol> <li> <p>remove, from <code>Config.hs</code>, the line</p> <pre><code> import Plugins.Monitors </code></pre> </li> <li> <p>in <code>Config.hs</code> change</p> <pre><code> runnableTypes :: Command :*: Monitors :*: () runnableTypes = undefined </code></pre> <p>to</p> <pre><code> runnableTypes :: Command :*: () runnableTypes = undefined </code></pre> </li> <li> <p>rebuild <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a>.</p> </li> </ol> <h1 id="credits">Credits</h1> <p>Thanks to Robert Manea and Spencer Janssen for their help in understanding how X works. They gave me suggestions on how to solve many problems with <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a>.</p> <p>Thanks to Claus Reinke for make me understand existential types (or at least for letting me think I grasp existential types...;-).</p> <p><a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a> incorporates patches from: Krzysztof Kosciuszkiewicz, Spencer Janssen, Jens Petersen, Dmitry Kurochkin, Lennart Kolmodin, and Norbert Zeh.</p> <h1 id="useful-links">Useful links</h1> <p>The <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar">xmobar</a> home page</p> <p>The <a href="http://xmonad.org">xmonad</a> home page</p> <p><a href="http://code.haskell.org/xmobar">xmobar darcs repository</a></p> <p>To understand the internal mysteries of xmobar you may try reading this tutorial <a href="http://www.haskell.org/haskellwiki/X_window_programming_in_Haskell">on X Window Programming in Haskell</a>.</p> <h1 id="author">Author</h1> <p>Andrea Rossato</p> <p><code>andrea.rossato at ing.unitn.it</code></p> <h1 id="legal">Legal</h1> <p>This software is released under a BSD-style license. See LICENSE for more details.</p> <p>Copyright © 2007 Andrea Rossato</p> </div></div><div class="package-right-column"><ul class="package-right-rows"><li class><h3 class="package-body-section" id="package-install-section"><p>Installation</p></h3><div class="items-top"><div class><label for="install-string" class="font-light">In your cabal file:</label><input class="package-install-string" type="text" onfocus="this.select();" value="xmobar ^>=0.11.1," readonly="readonly"></div></div></li><li class><h3 class="package-body-section">Dependencies (0)</h3><ul class="dependencies"><a class="dependency" href="/packages/%40hackage/xmobar/0.11.1/dependencies">Show all…</a></ul></li><li class=" dependents"><h3 class="package-body-section">Dependents (1)</h3><a class="dependent" href="/packages/@hackage/acme-everything">@hackage/acme-everything</a></li><h3 class="package-body-section package-flags-section">Package Flags</h3><span data-text="Use the -f option with cabal commands to enable flags" class="instruction-tooltip"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="tooltip"> <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zM8.94 6.94a.75.75 0 11-1.061-1.061 3 3 0 112.871 5.026v.345a.75.75 0 01-1.5 0v-.5c0-.72.57-1.172 1.081-1.287A1.5 1.5 0 108.94 6.94zM10 15a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd" /> </svg> </span><ul class="package-flags"><details><summary><pre class="package-flag-name">small_base</pre> <em>(on by default)</em></summary><div class="package-flag-description"><p>Choose the new smaller, split-up base package.</p></div></details><details><summary><pre class="package-flag-name">with_xft</pre> <em>(off by default)</em></summary><div class="package-flag-description"><p>Use Xft to render text. UTF-8 support included.</p></div></details><details><summary><pre class="package-flag-name">with_utf8</pre> <em>(on by default)</em></summary><div class="package-flag-description"><p>With UTF-8 support.</p></div></details><details><summary><pre class="package-flag-name">with_inotify</pre> <em>(off by default)</em></summary><div class="package-flag-description"><p>inotify support (modern Linux only). Required for the Mail plugin.</p></div></details><details><summary><pre class="package-flag-name">with_iwlib</pre> <em>(off by default)</em></summary><div class="package-flag-description"><p>wireless info support. Required for the Wireless plugin, needs iwlib installed.</p></div></details><details><summary><pre class="package-flag-name">with_mpd</pre> <em>(off by default)</em></summary><div class="package-flag-description"><p>mpd support. Needs libmpd installed.</p></div></details></ul></ul></div></div></div></main>