Skip to main content

Keybinds & IPC

██████╗ ███╗   ███╗███████╗
██╔══██╗████╗ ████║██╔════╝
██║  ██║██╔████╔██║███████╗
██║  ██║██║╚██╔╝██║╚════██║
██████╔╝██║ ╚═╝ ██║███████║
╚═════╝ ╚═╝     ╚═╝╚══════╝

DankMaterialShell provides comprehensive IPC (Inter-Process Communication) functionality that allows external control of the shell through command-line commands. All IPC commands follow the format:

dms ipc call <target> <function> [parameters...]

Core Controls

audio

Manage audio output and input devices.

FunctionDescriptionParameters
setvolume <percentage>Set output volumepercentage (0-100)
increment <step>Increase output volumestep (default: 5)
decrement <step>Decrease output volumestep (default: 5)
muteToggle output mute-
setmic <percentage>Set microphone volumepercentage (0-100)
micmuteToggle microphone mute-
cycleoutputCycle through audio output devices-
statusGet current audio status-

Examples:

dms ipc call audio setvolume 50
dms ipc call audio increment 10
dms ipc call audio mute
dms ipc call audio cycleoutput

brightness

Control display brightness for internal and external displays.

FunctionDescriptionParameters
set <percentage> [device]Set brightness levelpercentage (1-100), device (optional)
increment <step> [device]Increase brightnessstep, device (optional)
decrement <step> [device]Decrease brightnessstep, device (optional)
statusGet current brightness status-
listList all brightness devices-
enableExponential [device]Enable exponential brightness modedevice (optional, uses current if not specified)
disableExponential [device]Disable exponential brightness modedevice (optional, uses current if not specified)
toggleExponential [device]Toggle exponential brightness modedevice (optional, uses current if not specified)

Examples:

dms ipc call brightness set 80
dms ipc call brightness increment 10 ""
dms ipc call brightness decrement 5 "intel_backlight"
dms ipc call brightness disableExponential "backlight:intel_backlight"
dms ipc call brightness toggleExponential

night

Night mode (gamma/color temperature) control.

FunctionDescriptionParameters
toggleToggle night mode on/off-
enableEnable night mode-
disableDisable night mode-
statusGet night mode status-
temperature [value]Get/set color temperaturevalue in Kelvin (2500-6000, optional)
automation [mode]Get/set automation mode"manual", "time", or "location" (optional)
schedule <start> <end>Set time-based schedulestart time (HH:MM), end time (HH:MM)
location <lat> <lon>Set location coordinateslatitude, longitude

Examples:

dms ipc call night toggle
dms ipc call night temperature 4000
dms ipc call night automation time
dms ipc call night schedule 20:00 06:00
dms ipc call night location 40.7128 -74.0060

mpris

Media player control via MPRIS interface.

FunctionDescription
listList all available media players
playStart playback
pausePause playback
playPauseToggle play/pause
previousSkip to previous track
nextSkip to next track
stopStop playback

Examples:

dms ipc call mpris playPause
dms ipc call mpris next

lock

Screen lock control and status.

FunctionDescription
lockLock the screen immediately
demoShow lock screen demo (doesn't lock)
isLockedCheck if screen is locked

Examples:

dms ipc call lock lock
dms ipc call lock isLocked

inhibit

Idle inhibitor control to prevent automatic sleep/lock.

FunctionDescription
toggleToggle idle inhibit state
enableEnable idle inhibit (prevent sleep)
disableDisable idle inhibit (allow sleep)

Examples:

dms ipc call inhibit toggle
dms ipc call inhibit enable

Wallpaper & Profile

wallpaper

Wallpaper management with support for global and per-monitor configurations.

Global Wallpaper Functions

FunctionDescriptionParameters
getGet current wallpaper path-
set <path>Set wallpaperpath to image file
clearClear all wallpapers-
nextCycle to next wallpaper-
prevCycle to previous wallpaper-

Per-Monitor Functions

FunctionDescriptionParameters
getFor <screen>Get wallpaper for monitormonitor name (e.g., "DP-2")
setFor <screen> <path>Set wallpaper for monitormonitor name, path to image
nextFor <screen>Cycle to next wallpapermonitor name
prevFor <screen>Cycle to previous wallpapermonitor name

Examples:

# Global wallpaper mode
dms ipc call wallpaper set /path/to/image.jpg
dms ipc call wallpaper next

# Per-monitor wallpaper mode
dms ipc call wallpaper setFor DP-2 /path/to/image1.jpg
dms ipc call wallpaper setFor eDP-1 /path/to/image2.jpg
dms ipc call wallpaper nextFor eDP-1

# Clear and return to global mode
dms ipc call wallpaper clear

Note: When per-monitor mode is enabled, legacy global functions will return error messages directing you to use the per-monitor equivalents.

profile

User profile image management.

FunctionDescriptionParameters
getImageGet current profile image path-
setImage <path>Set profile imagepath to image file
clearImageClear profile image-

Examples:

dms ipc call profile setImage /path/to/avatar.png
dms ipc call profile clearImage

Appearance Controls

theme

Theme mode control (light/dark mode switching).

FunctionDescription
toggleToggle between light and dark themes
lightSwitch to light theme
darkSwitch to dark theme
getModeGet current theme mode

Examples:

dms ipc call theme toggle
dms ipc call theme dark

bar

Control individual bars using flexible selectors.

FunctionDescriptionParameters
reveal <selector> <value>Show a barselector + value
hide <selector> <value>Hide a barselector + value
toggle <selector> <value>Toggle bar visibilityselector + value
status <selector> <value>Get bar visibility statusselector + value
autoHide <selector> <value>Enable auto-hide modeselector + value
manualHide <selector> <value>Disable auto-hide modeselector + value
toggleAutoHide <selector> <value>Toggle auto-hide modeselector + value

Selectors:

  • index - Select by position (0-based)
  • id - Select by unique bar ID
  • name - Select by bar name

Examples:

# By index
dms ipc call bar hide index 0
dms ipc call bar reveal index 1
dms ipc call bar toggle index 0

# By name
dms ipc call bar toggle name "Main Bar"
dms ipc call bar status name "Secondary"

# By ID
dms ipc call bar reveal id abc123

# Auto-hide controls
dms ipc call bar autoHide index 0
dms ipc call bar manualHide name "Main Bar"
dms ipc call bar toggleAutoHide index 1

dock

Dock visibility and behavior control.

FunctionDescription
revealShow the dock
hideHide the dock
toggleToggle dock visibility
statusGet dock visibility status
autoHideEnable auto-hide mode
manualHideDisable auto-hide mode
toggleAutoHideToggle auto-hide mode

Examples:

dms ipc call dock toggle
dms ipc call dock hide
dms ipc call dock reveal
dms ipc call dock status

# Auto-hide controls
dms ipc call dock autoHide
dms ipc call dock manualHide
dms ipc call dock toggleAutoHide

widget

Control bar widget popouts and menus, including plugins.

FunctionDescriptionParameters
toggle <widgetId>Toggle widget popout visibilitywidget ID
listList all registered widget IDs-
status <widgetId>Get widget popout visibility statuswidget ID

Examples:

dms ipc call widget list
dms ipc call widget toggle clock
dms ipc call widget status weather

Notes:

  • Use list to discover available widget IDs on your current bar configuration
  • Widget IDs depend on which widgets are enabled in your bar settings
  • The status function returns "visible" or "hidden" for the widget popout state

These targets control various modal windows and overlays.

spotlight

Application launcher modal with search capabilities.

FunctionDescriptionParameters
openShow launcher-
closeHide launcher-
toggleToggle launcher visibility-
openQuery <query>Show launcher with searchsearch text
toggleQuery <query>Toggle launcher with searchsearch text

Examples:

dms ipc call spotlight toggle
dms ipc call spotlight openQuery browser
dms ipc call spotlight toggleQuery "!"

Other Modals

All these modals support open, close, and toggle functions:

  • clipboard - Clipboard history manager
  • notifications - Notification center (also supports clearAll)
  • processlist - System process list and performance monitor (also supports focusOrToggle)
  • powermenu - Power menu for system actions
  • control-center - Quick settings (network, bluetooth, audio, etc.)
  • notepad - Quick notepad/scratchpad

Examples:

dms ipc call clipboard toggle
dms ipc call notifications open
dms ipc call notifications clearAll
dms ipc call processlist open
dms ipc call powermenu toggle
dms ipc call control-center toggle
dms ipc call notepad open

settings

Settings modal with additional read/write access to configuration values.

FunctionDescriptionParameters
openShow settings modal-
openWith <tab>Open settings to specific tabtab ID
closeHide settings modal-
toggleToggle settings modal-
toggleWith <tab>Toggle settings to specific tabtab ID
focusOrToggleFocus settings if open, otherwise toggle-
focusOrToggleWith <tab>Focus/toggle to specific tabtab ID
tabsList available tab IDs-
get <key>Get a setting valuesetting key name
set <key> <value>Set a setting valuesetting key, new value

Available Tab IDs:

  • Personalization: personalization, wallpaper, theme, typography, time_weather, sounds
  • Dankbar: dankbar, dankbar_settings, dankbar_widgets
  • Widgets: workspaces_widgets, workspaces, media_player, notifications, osd, running_apps, updater
  • Dock & Launcher: dock_launcher, dock, launcher
  • System: keybinds, displays, network, printers
  • Power & Security: power_security, lock_screen, power_sleep
  • Other: plugins, about

Examples:

dms ipc call settings toggle
dms ipc call settings openWith theme
dms ipc call settings toggleWith dock
dms ipc call settings tabs
dms ipc call settings get barPosition
dms ipc call settings set showSeconds true
dms ipc call settings set opacity 0.9

Note: The set function supports boolean, number, and string values. Objects and arrays are not currently supported.

dash

Dashboard popup with multiple tabs.

FunctionDescriptionParameters
open [tab]Show dashboardtab: "", "overview", "media", "weather"
closeHide dashboard-
toggle [tab]Toggle dashboardtab

Examples:

dms ipc call dash toggle ""
dms ipc call dash open overview
dms ipc call dash toggle media
dms ipc call dash open weather

file

File browser controls for selecting wallpapers and profile images.

FunctionDescriptionParameters
browse <type>Open file browser"wallpaper" or "profile"

Examples:

dms ipc call file browse wallpaper
dms ipc call file browse profile

dankdash

DankDash wallpaper browser control.

FunctionDescription
wallpaperToggle DankDash wallpaper browser

Examples:

dms ipc call dankdash wallpaper

System Utilities

niri

Requires niri 25.11+

Screenshot functionality for the niri compositor. Captures are opened in your configured editor for markup and annotation.

FunctionDescription
screenshotInteractive selection screenshot
screenshotScreenCapture entire screen
screenshotWindowCapture focused window

Examples:

dms ipc call niri screenshot
dms ipc call niri screenshotScreen
dms ipc call niri screenshotWindow

Configuration:

Set the DMS_SCREENSHOT_EDITOR environment variable to choose your preferred screenshot editor backend:

# Use Swappy (default)
export DMS_SCREENSHOT_EDITOR=swappy

# Use Satty
export DMS_SCREENSHOT_EDITOR=satty

Requirements: niri compositor and your chosen screenshot editor (Swappy or Satty) must be installed.

keybinds

Dynamic keybinds cheatsheet modal that works with multiple providers.

FunctionDescriptionParameters
open <provider>Show keybinds modalprovider name (e.g., "hyprland", "sway", "mangowc")
openWithPath <provider> <path>Show keybinds modal with custom config pathprovider name, path to config
closeHide keybinds modal-
toggle <provider>Toggle keybinds modal visibilityprovider name
toggleWithPath <provider> <path>Toggle keybinds modal with custom config pathprovider name, path to config

Examples:

dms ipc call keybinds toggle hyprland
dms ipc call keybinds toggle sway
dms ipc call keybinds toggle mangowc
dms ipc call keybinds open tmux

# With custom config paths
dms ipc call keybinds openWithPath hyprland /custom/path/to/hypr
dms ipc call keybinds toggleWithPath sway /etc/sway/config

Supported Providers:

The keybinds modal supports all providers available through the dms keybinds CLI:

  • Built-in providers: Hyprland, Sway, MangoWC (automatically parse compositor configs)
  • Custom cheatsheets: Any JSON-based cheatsheet in ~/.config/DankMaterialShell/cheatsheets/

The modal automatically parses configuration files and displays keybinds organized by category with optional subcategories. See the Keybinds & Cheatsheets documentation for more details on providers and creating custom cheatsheets.

hypr

Hyprland-only features

Hyprland-specific workspace overview control.

FunctionDescription
openOverviewShow Hyprland workspace overview
closeOverviewHide Hyprland workspace overview
toggleOverviewToggle Hyprland workspace overview visibility

Examples:

dms ipc call hypr toggleOverview

Workspace Overview:

The workspace overview shows all your workspaces across all monitors with live window previews:

  • Multi-monitor support - Shows workspaces from all connected monitors with monitor name labels
  • Live window previews - Real-time screen capture of all windows on each workspace
  • Drag-and-drop - Move windows between workspaces and monitors by dragging
  • Keyboard navigation - Use Left/Right arrow keys to switch between workspaces on current monitor
  • Visual indicators - Active workspace highlighted when it contains windows
  • Click to switch - Click any workspace to switch to it
  • Click outside or press Escape - Close the overview

Note: All hypr functions return HYPR_NOT_AVAILABLE if not running Hyprland.

plugins

Manage plugins at runtime - useful for development and troubleshooting.

FunctionDescriptionParameters
listList all available plugins with status-
status <pluginId>Check if a plugin is loadedplugin ID
reload <pluginId>Hot-reload a plugin without restartingplugin ID
enable <pluginId>Enable a disabled pluginplugin ID
disable <pluginId>Disable a loaded pluginplugin ID

Examples:

# See what plugins are available
dms ipc call plugins list

# Check if a specific plugin is running
dms ipc call plugins status myPlugin

# Hot-reload during development (no shell restart needed)
dms ipc call plugins reload myPlugin

# Toggle plugins on/off
dms ipc call plugins enable myPlugin
dms ipc call plugins disable myPlugin

systemupdater

System updater external check request.

FunctionDescription
updatestatusTrigger system update check

Examples:

dms ipc call systemupdater updatestatus

Scripting and Automation

IPC commands are designed for integration with keybindings, scripts, and automation tools.

Time-based Automation

#!/bin/bash
# Toggle night mode based on time of day
hour=$(date +%H)
if [ $hour -ge 20 ] || [ $hour -le 6 ]; then
dms ipc call night enable
else
dms ipc call night disable
fi

Status Checking

# Check if screen is locked before performing action
if dms ipc call lock isLocked | grep -q "false"; then
dms ipc call notifications open
fi

Conditional Logic

# Increase brightness only if below threshold
current=$(dms ipc call brightness status | grep -oP '\d+')
if [ "$current" -lt 50 ]; then
dms ipc call brightness set 50
fi

Return Values

Most IPC functions return string messages indicating:

  • Success confirmation with current values
  • Error messages if operation fails
  • Status information for query functions
  • Empty/void return for simple action functions

Functions that return void (like media controls) execute the action but don't provide feedback. Check the application state through other means if needed.

Next Steps

See compositor-specific keybinding configuration in your compositor's documentation to integrate these IPC commands with your workflow.