mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-04-20 11:54:23 +02:00
81 lines
2.2 KiB
Text
81 lines
2.2 KiB
Text
let {
|
|
$workspaces = {
|
|
type = "workspaces"
|
|
all_monitors = false
|
|
name_map = {
|
|
1 = "ﭮ"
|
|
2 = ""
|
|
3 = ""
|
|
Games = ""
|
|
Code = ""
|
|
}
|
|
}
|
|
|
|
$launcher = {
|
|
type = "launcher"
|
|
favorites = ["firefox" "discord" "Steam"]
|
|
show_names = false
|
|
show_icons = true
|
|
icon_theme = "Paper"
|
|
}
|
|
|
|
$mpd_local = { type = "mpd" music_dir = "/home/jake/Music" }
|
|
$mpd_server = { type = "mpd" host = "chloe:6600" }
|
|
|
|
$sys_info = {
|
|
type = "sys_info"
|
|
format = ["{cpu_percent}% " "{memory_percent}% "]
|
|
}
|
|
|
|
$tray = { type = "tray" }
|
|
$clock = {
|
|
type = "clock"
|
|
// show-if = "500:[ $(($(date +%s) % 2)) -eq 0 ]"
|
|
show_if.cmd = "exit 0"
|
|
show_if.interval = 500
|
|
}
|
|
|
|
$phone_battery = {
|
|
type = "script"
|
|
cmd = "/home/jake/bin/phone-battery"
|
|
}
|
|
|
|
$log_tail = {
|
|
type = "script"
|
|
path = "tail -f /home/jake/.local/share/ironbar/error.log"
|
|
mode = "watch"
|
|
}
|
|
|
|
$power_menu = {
|
|
type = "custom"
|
|
class = "power-menu"
|
|
|
|
bar = [ { type = "button" name="power-btn" label = "" on_click = "popup:toggle" } ]
|
|
|
|
popup = [ {
|
|
type = "box"
|
|
orientation = "vertical"
|
|
widgets = [
|
|
{ type = "label" name = "header" label = "Power menu" }
|
|
{
|
|
type = "box"
|
|
widgets = [
|
|
{ type = "button" class="power-btn" label = "<span font-size='40pt'></span>" on_click = "!shutdown now" }
|
|
{ type = "button" class="power-btn" label = "<span font-size='40pt'></span>" on_click = "!reboot" }
|
|
]
|
|
}
|
|
{ type = "label" name = "uptime" label = "Up: {{30000:uptime -p | cut -d ' ' -f2-}}" }
|
|
]
|
|
} ]
|
|
|
|
tooltip = "Up: {{30000:uptime -p | cut -d ' ' -f2-}}"
|
|
}
|
|
|
|
$left = [ $workspaces $launcher ]
|
|
$right = [ $mpd_local $mpd_server $phone_battery $sys_info $power_menu $clock ]
|
|
}
|
|
in {
|
|
anchor_to_edges = true
|
|
position = "top"
|
|
start = $left end = $right
|
|
}
|