Module swaystatus::blocks::toggle[][src]

Expand description

A Toggle block

You can add commands to be executed to disable the toggle (command_off), and to enable it (command_on). If these command exit with a non-zero status, the block will not be toggled and the block state will be changed to give a visual warning of the failure. You also need to specify a command to determine the state of the toggle (command_state). When the command outputs nothing, the toggle is disabled, otherwise enabled. By specifying the interval property you can let the command_state be executed continuously.

To run those commands, the shell form $SHELL environment variable is used. If such variable is not presented, sh is used.

Configuration

KeyValuesRequiredDefault
textA label next to the iconNo""
command_onShell command to enable the toggleYesN/A
command_offShell command to disable the toggleYesN/A
command_stateShell command to determine the state. Empty output => No, otherwise => Yes.YesN/A
icon_onIcon override for the toggle button while onNo"toggle_on"
icon_offIcon override for the toggle button while offNo"toggle_off"
intervalUpdate interval in seconds. If not set, command_state will run only on click.NoNone

Examples

This is what can be used to toggle an external monitor configuration:

[[block]]
block = "toggle"
text = "4k"
command_state = "xrandr | grep 'DP1 connected 38' | grep -v eDP1"
command_on = "~/.screenlayout/4kmon_default.sh"
command_off = "~/.screenlayout/builtin.sh"
interval = 5

Icons Used

  • toggle_off
  • toggle_on

Structs

Functions