tpane 0.5.0

Configure tmux with Lua.
tpane.widgets.session = tpane.widget(function()
  return "[#{client_session}] "
end)

tpane.widgets.host = tpane.widget(function()
  return "#H"
end)

tpane.widgets.clock = tpane.widget(function()
  return os.date("%H:%M")
end)

tpane.widgets.date = tpane.widget(function()
  return os.date("%b %d")
end)

tpane.widgets.prefix = tpane.widget(function()
  return tpane.fmt.prefix("", "")
end)

local battery_cmd = [[
if [ "$(uname)" = "Darwin" ]; then
  pmset -g batt 2>/dev/null | awk '
    /Battery/ {
      match($0, /[0-9]+%/)
      pct = substr($0, RSTART, RLENGTH)
      if (pct == "") next
      icon = "󰁹"
      if ($0 ~ /charging/) icon = "󰂄"
      if ($0 ~ /discharging/) icon = "󰁹"
      print icon " " pct
      exit
    }
  '
else
  for bat in /sys/class/power_supply/BAT*; do
    [ -d "$bat" ] || continue
    cap=$(cat "$bat/capacity" 2>/dev/null)
    status=$(cat "$bat/status" 2>/dev/null)
    [ -n "$cap" ] || continue
    icon="󰁹"
    if [ "$status" = "Charging" ]; then
      icon="󰂄"
    elif [ "$status" = "Discharging" ]; then
      if [ "$cap" -le 15 ]; then icon="󰁺";
      elif [ "$cap" -le 30 ]; then icon="󰁻";
      elif [ "$cap" -le 50 ]; then icon="󰁽";
      elif [ "$cap" -le 80 ]; then icon="󰁿";
      else icon="󰁹"; fi
    fi
    printf "%s %s%%\n" "$icon" "$cap"
    exit 0
  done
fi
]]

function tpane.widgets.battery(opts)
  opts = opts or {}
  return tpane.job({
    every = opts.every or "30s",
    timeout = opts.timeout or "3s",
    cmd = opts.cmd or battery_cmd,
  })
end

local player_cmd = [[
if command -v playerctl >/dev/null 2>&1; then
  if [ "$(playerctl status 2>/dev/null)" = "Playing" ]; then
    playerctl metadata --format ' {{artist}} — {{title}}' 2>/dev/null
  fi
elif command -v osascript >/dev/null 2>&1; then
  osascript 2>/dev/null <<'APPLESCRIPT'
tell application "System Events"
  set spotifyRunning to exists process "Spotify"
  set musicRunning to exists process "Music"
end tell

if spotifyRunning then
  tell application "Spotify"
    if player state is playing then return " " & artist of current track & " — " & name of current track
  end tell
end if

if musicRunning then
  tell application "Music"
    if player state is playing then return " " & artist of current track & " — " & name of current track
  end tell
end if
APPLESCRIPT
fi
]]

function tpane.widgets.player(opts)
  opts = opts or {}
  return tpane.job({
    every = opts.every or "5s",
    timeout = opts.timeout or "3s",
    cmd = opts.cmd or player_cmd,
  })
end

setmetatable(tpane.widgets, {
  __index = function(_, name)
    error("unknown widget: tpane.widgets." .. tostring(name), 2)
  end,
})