Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

mods.oxi.oxibar.enable

Enables OxiBar

Type: boolean

Default:

true

Example:

false

mods.oxi.oxibar.battery.enable

Enables the battery plugin. When enabled, battery is added to the plugins and the end of the bar, and battery settings are placed into the settings.

Type: boolean

Default:

false

Example:

true

mods.oxi.oxibar.settings

Settings passed to OxiBar as plugin_config. Defaults to the current dashnix config.

Type: attribute set of anything

Default:

{
  bar = {
    center = [
      "clock"
    ];
    end = [
      "tray"
      "audio"
      "network"
      "bluetooth"
      "notifications"
    ];
    font = "Adwaita Sans";
    start = [
      "workspaces"
    ];
  };
  clock = {
    bold = true;
    calendar_app = "thunderbird";
    font_size = 20;
    format = "%I:%M";
    tick_seconds = 60;
  };
  plugins = [
    "libbattery.so"
    "libworkspaces.so"
    "libclock.so"
    "libtray.so"
    "libaudio.so"
    "libnetwork.so"
    "libbluetooth.so"
    "libnotifications.so"
  ];
}

Example:

{
  bar = {
    end = [ ];
    font = "Adwaita Sans";
    start = [
      "workspaces"
    ];
  };
}