feat(config): Generate config based on build
This commit is contained in:
parent
d7be6b1bec
commit
05c318e97b
@ -2,6 +2,17 @@
|
|||||||
# Custom targets
|
# Custom targets
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Target: userconfig {{{
|
||||||
|
|
||||||
|
configure_file(
|
||||||
|
${PROJECT_SOURCE_DIR}/cmake/templates/userconfig.cmake.in
|
||||||
|
${PROJECT_BINARY_DIR}/userconfig.cmake
|
||||||
|
IMMEDIATE @ONLY)
|
||||||
|
|
||||||
|
add_custom_target(userconfig COMMAND ${CMAKE_COMMAND}
|
||||||
|
-P ${PROJECT_BINARY_DIR}/userconfig.cmake)
|
||||||
|
|
||||||
|
# }}}
|
||||||
# Target: uninstall {{{
|
# Target: uninstall {{{
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
|
7
cmake/templates/userconfig.cmake.in
Normal file
7
cmake/templates/userconfig.cmake.in
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
set(USER_CONFIG_HOME $ENV{XDG_CONFIG_HOME})
|
||||||
|
if(NOT USER_CONFIG_HOME)
|
||||||
|
set(USER_CONFIG_HOME $ENV{HOME}/.config)
|
||||||
|
endif()
|
||||||
|
set(USER_CONFIG_HOME ${USER_CONFIG_HOME}/lemonbuddy)
|
||||||
|
|
||||||
|
file(INSTALL @CMAKE_SOURCE_DIR@/examples/config DESTINATION ${USER_CONFIG_HOME})
|
@ -1,26 +0,0 @@
|
|||||||
set(INSTALL_MANIFEST "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
|
||||||
|
|
||||||
if (NOT EXISTS ${INSTALL_MANIFEST})
|
|
||||||
message(FATAL_ERROR
|
|
||||||
"Cannot find install manifest:
|
|
||||||
\"${INSTALL_MANIFEST}\"")
|
|
||||||
endif(NOT EXISTS ${INSTALL_MANIFEST})
|
|
||||||
|
|
||||||
file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
|
|
||||||
string(REGEX REPLACE "\n" ";" files "${files}")
|
|
||||||
list(REVERSE files)
|
|
||||||
|
|
||||||
foreach (file ${files})
|
|
||||||
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
|
|
||||||
if (EXISTS "$ENV{DESTDIR}${file}")
|
|
||||||
execute_process(
|
|
||||||
COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
|
|
||||||
OUTPUT_VARIABLE rm_out
|
|
||||||
RESULT_VARIABLE rm_retval)
|
|
||||||
if(NOT ${rm_retval} EQUAL 0)
|
|
||||||
message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
|
||||||
endif (NOT ${rm_retval} EQUAL 0)
|
|
||||||
else (EXISTS "$ENV{DESTDIR}${file}")
|
|
||||||
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
|
||||||
endif (EXISTS "$ENV{DESTDIR}${file}")
|
|
||||||
endforeach(file)
|
|
@ -1,13 +1,51 @@
|
|||||||
|
#
|
||||||
|
# Generate configuration file
|
||||||
|
#
|
||||||
|
|
||||||
|
set(MODULES_LEFT "bspwm i3 mpd")
|
||||||
|
set(MODULES_CENTER "")
|
||||||
|
set(MODULES_RIGHT "backlight volume memory cpu wlan eth battery temperature date powermenu")
|
||||||
|
|
||||||
|
# Strip disabled modules {{{
|
||||||
|
|
||||||
|
if(NOT ENABLE_ALSA)
|
||||||
|
string(REPLACE " volume" "" MODULES_RIGHT ${MODULES_RIGHT})
|
||||||
|
endif()
|
||||||
|
if(NOT ENABLE_I3)
|
||||||
|
string(REPLACE " i3" "" MODULES_LEFT ${MODULES_LEFT})
|
||||||
|
endif()
|
||||||
|
if(NOT ENABLE_MPD)
|
||||||
|
string(REPLACE " mpd" "" MODULES_LEFT ${MODULES_LEFT})
|
||||||
|
endif()
|
||||||
|
if(NOT ENABLE_NETWORK)
|
||||||
|
string(REPLACE " wlan eth" "" MODULES_RIGHT ${MODULES_RIGHT})
|
||||||
|
endif()
|
||||||
|
if(NOT ENABLE_RANDR_EXT)
|
||||||
|
string(REPLACE "backlight " "" MODULES_RIGHT ${MODULES_RIGHT})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
# Get battery/adapter name {{{
|
||||||
|
|
||||||
|
string(REGEX REPLACE /%battery%.* "" PATH_BAT ${SETTING_PATH_BATTERY_CAPACITY})
|
||||||
|
string(REGEX REPLACE /%adapter%.* "" PATH_ADP ${SETTING_PATH_ADAPTER_STATUS})
|
||||||
|
|
||||||
|
file(GLOB BAT_LIST RELATIVE ${PATH_BAT} ${PATH_ADP}/B*)
|
||||||
|
file(GLOB ADP_LIST RELATIVE ${PATH_ADP} ${PATH_ADP}/A*)
|
||||||
|
|
||||||
|
list(GET BAT_LIST 0 BATTERY)
|
||||||
|
list(GET ADP_LIST 0 ADAPTER)
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
# Configure and install {{{
|
||||||
|
|
||||||
|
configure_file(
|
||||||
|
${PROJECT_SOURCE_DIR}/examples/config.cmake
|
||||||
|
${CMAKE_SOURCE_DIR}/examples/config
|
||||||
|
ESCAPE_QUOTES @ONLY)
|
||||||
|
|
||||||
install(FILES config
|
install(FILES config
|
||||||
DESTINATION share/examples/lemonbuddy
|
DESTINATION share/examples/lemonbuddy
|
||||||
COMPONENT config)
|
COMPONENT config)
|
||||||
|
|
||||||
install(FILES config.bspwm
|
# }}}
|
||||||
DESTINATION share/examples/lemonbuddy
|
|
||||||
COMPONENT config)
|
|
||||||
|
|
||||||
if(ENABLE_I3)
|
|
||||||
install(FILES config.i3
|
|
||||||
DESTINATION share/examples/lemonbuddy
|
|
||||||
COMPONENT config)
|
|
||||||
endif()
|
|
||||||
|
326
examples/config
326
examples/config
@ -7,17 +7,24 @@
|
|||||||
;
|
;
|
||||||
;=====================================================
|
;=====================================================
|
||||||
|
|
||||||
|
[global/wm]
|
||||||
|
margin-top = 5
|
||||||
|
margin-bottom = 5
|
||||||
|
margin-left = 5
|
||||||
|
margin-right = 5
|
||||||
|
|
||||||
|
|
||||||
[bar/example]
|
[bar/example]
|
||||||
monitor = eDP-1
|
;monitor = HDMI-1
|
||||||
dock = true
|
dock = false
|
||||||
width = 100%
|
width = 100%
|
||||||
height = 27
|
height = 27
|
||||||
offset-x = 0
|
offset-x = 0
|
||||||
offset-y = 0
|
offset-y = 0
|
||||||
|
|
||||||
background = #ee222222
|
background = #ee222222
|
||||||
foreground = #ccfafafa
|
foreground = #dfdfdf
|
||||||
linecolor = #666
|
linecolor = #555
|
||||||
|
|
||||||
border-bottom = 2
|
border-bottom = 2
|
||||||
border-bottom-color = #333
|
border-bottom-color = #333
|
||||||
@ -29,18 +36,126 @@ padding-right = 2
|
|||||||
module-margin-left = 1
|
module-margin-left = 1
|
||||||
module-margin-right = 2
|
module-margin-right = 2
|
||||||
|
|
||||||
font-0 = tamzen:size=9;1
|
font-0 = fixed:pixelsize=10;0
|
||||||
font-1 = siji:pixelsize=10;0
|
font-1 = unifont:size=6;-2
|
||||||
font-2 = unifont:size=6;-1
|
font-2 = siji:pixelsize=10;0
|
||||||
|
|
||||||
modules-left = mpd
|
modules-left = bspwm i3 mpd
|
||||||
modules-center = date
|
modules-center =
|
||||||
modules-right = volume memory cpu
|
modules-right = backlight volume memory cpu wlan eth battery temperature date powermenu
|
||||||
|
|
||||||
tray-position = right
|
tray-position = right
|
||||||
tray-background = #33ffffff
|
|
||||||
tray-padding = 4
|
tray-padding = 4
|
||||||
|
|
||||||
|
;wm-restack = bspwm
|
||||||
|
|
||||||
|
|
||||||
|
[module/bspwm]
|
||||||
|
type = internal/bspwm
|
||||||
|
ws-icon-default = x
|
||||||
|
|
||||||
|
label-active = %index%
|
||||||
|
label-active-background = #ee333333
|
||||||
|
label-active-underline= #cc333333
|
||||||
|
label-active-padding = 2
|
||||||
|
|
||||||
|
label-occupied = %index%
|
||||||
|
label-occupied-padding = 2
|
||||||
|
|
||||||
|
label-urgent = %index%
|
||||||
|
label-urgent-background = #bd2c40
|
||||||
|
label-urgent-padding = 2
|
||||||
|
|
||||||
|
label-empty = %index%
|
||||||
|
label-empty-foreground = #55
|
||||||
|
label-empty-padding = 2
|
||||||
|
|
||||||
|
|
||||||
|
[module/i3]
|
||||||
|
type = internal/i3
|
||||||
|
format = <label-state>
|
||||||
|
index-sort = true
|
||||||
|
|
||||||
|
label-focused = %index%
|
||||||
|
label-focused-background = #ee333333
|
||||||
|
label-focused-underline= #cc333333
|
||||||
|
label-focused-padding = 2
|
||||||
|
|
||||||
|
label-unfocused = %index%
|
||||||
|
label-unfocused-padding = 2
|
||||||
|
|
||||||
|
label-urgent = %index%!
|
||||||
|
label-urgent-background = #bd2c40
|
||||||
|
label-urgent-padding = 2
|
||||||
|
|
||||||
|
label-visible = %index%
|
||||||
|
label-visible-foreground = #55
|
||||||
|
label-visible-padding = 2
|
||||||
|
|
||||||
|
|
||||||
|
[module/mpd]
|
||||||
|
type = internal/mpd
|
||||||
|
|
||||||
|
format-online = <label-song> <icon-prev> <icon-seekb> <icon-stop> <toggle> <icon-seekf> <icon-next> <icon-repeat> <icon-random>
|
||||||
|
|
||||||
|
label-song-maxlen = 25
|
||||||
|
label-song-ellipsis = true
|
||||||
|
|
||||||
|
icon-prev =
|
||||||
|
icon-seekb =
|
||||||
|
icon-stop =
|
||||||
|
icon-play =
|
||||||
|
icon-pause =
|
||||||
|
icon-next =
|
||||||
|
icon-seekf =
|
||||||
|
|
||||||
|
icon-random =
|
||||||
|
icon-repeat =
|
||||||
|
|
||||||
|
toggle-on-foreground = #e60053
|
||||||
|
toggle-off-foreground = #66
|
||||||
|
|
||||||
|
|
||||||
|
[module/backlight]
|
||||||
|
type = internal/xbacklight
|
||||||
|
|
||||||
|
format = <label> <bar>
|
||||||
|
label = BL
|
||||||
|
|
||||||
|
bar-width = 10
|
||||||
|
bar-indicator = │
|
||||||
|
bar-indicator-foreground = #ff
|
||||||
|
bar-indicator-font = 2
|
||||||
|
bar-fill = ─
|
||||||
|
bar-fill-font = 2
|
||||||
|
bar-fill-foreground = #9f78e1
|
||||||
|
bar-empty = ─
|
||||||
|
bar-empty-font = 2
|
||||||
|
bar-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/cpu]
|
||||||
|
type = internal/cpu
|
||||||
|
interval = 2
|
||||||
|
|
||||||
|
format = <label> <bar-load>
|
||||||
|
label = CPU
|
||||||
|
|
||||||
|
bar-load-width = 10
|
||||||
|
bar-load-foreground-0 = #55aa55
|
||||||
|
bar-load-foreground-1 = #55aa55
|
||||||
|
bar-load-foreground-2 = #f5a70a
|
||||||
|
bar-load-foreground-3 = #ff5555
|
||||||
|
bar-load-gradient = false
|
||||||
|
bar-load-indicator = │
|
||||||
|
bar-load-indicator-font = 2
|
||||||
|
bar-load-indicator-foreground = #ff
|
||||||
|
bar-load-fill = ─
|
||||||
|
bar-load-fill-font = 2
|
||||||
|
bar-load-empty = ─
|
||||||
|
bar-load-empty-font = 2
|
||||||
|
bar-load-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/memory]
|
[module/memory]
|
||||||
type = internal/memory
|
type = internal/memory
|
||||||
@ -49,7 +164,7 @@ interval = 2
|
|||||||
format = <label> <bar-used>
|
format = <label> <bar-used>
|
||||||
label = RAM
|
label = RAM
|
||||||
|
|
||||||
bar-used-width = 20
|
bar-used-width = 10
|
||||||
bar-used-foreground-0 = #55aa55
|
bar-used-foreground-0 = #55aa55
|
||||||
bar-used-foreground-1 = #55aa55
|
bar-used-foreground-1 = #55aa55
|
||||||
bar-used-foreground-2 = #f5a70a
|
bar-used-foreground-2 = #f5a70a
|
||||||
@ -58,59 +173,53 @@ bar-used-gradient = false
|
|||||||
bar-used-indicator = │
|
bar-used-indicator = │
|
||||||
bar-used-indicator-font = 2
|
bar-used-indicator-font = 2
|
||||||
bar-used-indicator-foreground = #ff
|
bar-used-indicator-foreground = #ff
|
||||||
bar-used-fill = ━
|
bar-used-fill = ─
|
||||||
bar-used-fill-font = 2
|
bar-used-fill-font = 2
|
||||||
bar-used-empty = ━
|
bar-used-empty = ─
|
||||||
bar-used-empty-font = 2
|
bar-used-empty-font = 2
|
||||||
bar-used-empty-foreground = #444444
|
bar-used-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/wifi]
|
[module/wlan]
|
||||||
type = internal/network
|
type = internal/network
|
||||||
interface = net1
|
interface = net1
|
||||||
interval = 3.0
|
interval = 3.0
|
||||||
;udspeed-minwidth = 3
|
|
||||||
|
|
||||||
format-connected = <ramp-signal> <label-connected>
|
format-connected = <ramp-signal> <label-connected>
|
||||||
;label-connected = %essid% %{F#66}%local_ip%
|
format-connected-underline = #9f78e1
|
||||||
;label-connected = %{F#666}%{F#cc} %upspeed% %{F#666}%{F#cc} %downspeed%
|
format-disconnected-underline = ${self.format-connected-underline}
|
||||||
label-connected = %{O-6 F#666}%{O2 F#cc}%downspeed%
|
|
||||||
label-disconnected = %{F#666}%{F#cc} not connected
|
label-connected = %essid%
|
||||||
label-disconnected-foreground = #66
|
label-disconnected = %ifname% disconnected
|
||||||
|
label-disconnected-foreground = #55
|
||||||
|
|
||||||
ramp-signal-0 =
|
ramp-signal-0 =
|
||||||
ramp-signal-1 =
|
ramp-signal-1 =
|
||||||
ramp-signal-2 =
|
ramp-signal-2 =
|
||||||
ramp-signal-3 =
|
ramp-signal-3 =
|
||||||
ramp-signal-4 =
|
ramp-signal-4 =
|
||||||
ramp-signal-foreground = #666
|
ramp-signal-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/wired]
|
[module/eth]
|
||||||
type = internal/network
|
type = internal/network
|
||||||
interface = net0
|
interface = net0
|
||||||
interval = 3.0
|
interval = 3.0
|
||||||
|
|
||||||
label-connected = %{T3}%local_ip%%{T-}
|
format-connected-underline = #55aa55
|
||||||
label-disconnected = %{T3}Not connected%{T-}
|
format-disconnected-underline = ${self.format-connected-underline}
|
||||||
label-disconnected-foreground = #66
|
|
||||||
|
label-connected = %{F#55}%{F#ff} %local_ip%
|
||||||
|
label-disconnected = %ifname% disconnected
|
||||||
|
label-disconnected-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/date]
|
[module/date]
|
||||||
type = internal/date
|
type = internal/date
|
||||||
date = %%{F#666}%{F#cc} %Y-%m-%d %%{F#e60053}%%{F#cc} %H:%M
|
date = %%{F#55}%{F#ff} %Y-%m-%d %%{F#55}%%{F#ff} %H:%M
|
||||||
date-alt = %%{F#666}%{F#cc} %Y-%m-%d %%{F#e60053}%%{F#cc} %H:%M:%S
|
date-alt = %%{F#55}%{F#ff} %Y-%m-%d %%{F#55}%%{F#ff} %H:%M:%S
|
||||||
interval = 5
|
interval = 5
|
||||||
|
format-underline = #0a6cf5
|
||||||
|
|
||||||
[module/backlight]
|
|
||||||
type = internal/backlight
|
|
||||||
card = intel_backlight
|
|
||||||
format = <ramp> <label>
|
|
||||||
ramp-0 =
|
|
||||||
ramp-1 =
|
|
||||||
ramp-2 =
|
|
||||||
ramp-foreground = #666
|
|
||||||
|
|
||||||
|
|
||||||
[module/volume]
|
[module/volume]
|
||||||
@ -119,24 +228,15 @@ speaker-mixer = Speaker
|
|||||||
headphone-mixer = Headphone
|
headphone-mixer = Headphone
|
||||||
headphone-id = 9
|
headphone-id = 9
|
||||||
|
|
||||||
; format-volume = <ramp-volume> <label-volume>
|
|
||||||
format-volume = <label-volume> <bar-volume>
|
format-volume = <label-volume> <bar-volume>
|
||||||
|
|
||||||
label-volume = VOL
|
label-volume = VOL
|
||||||
label-volume-foreground = ${BAR.foreground}
|
label-volume-foreground = ${BAR.foreground}
|
||||||
|
|
||||||
label-muted = %{F#66} sound muted
|
label-muted = sound muted
|
||||||
|
label-muted-foreground = #55
|
||||||
|
|
||||||
;ramp-volume-0 =
|
bar-volume-width = 10
|
||||||
;ramp-volume-1 =
|
|
||||||
;ramp-volume-2 =
|
|
||||||
;ramp-volume-3 =
|
|
||||||
;ramp-volume-foreground = #666
|
|
||||||
|
|
||||||
;ramp-headphones-0 =
|
|
||||||
;ramp-headphones-1 =
|
|
||||||
|
|
||||||
bar-volume-width = 20
|
|
||||||
bar-volume-foreground-0 = #55aa55
|
bar-volume-foreground-0 = #55aa55
|
||||||
bar-volume-foreground-1 = #55aa55
|
bar-volume-foreground-1 = #55aa55
|
||||||
bar-volume-foreground-2 = #55aa55
|
bar-volume-foreground-2 = #55aa55
|
||||||
@ -148,127 +248,81 @@ bar-volume-gradient = false
|
|||||||
bar-volume-indicator = │
|
bar-volume-indicator = │
|
||||||
bar-volume-indicator-font = 2
|
bar-volume-indicator-font = 2
|
||||||
bar-volume-indicator-foreground = #ff
|
bar-volume-indicator-foreground = #ff
|
||||||
bar-volume-fill = ━
|
bar-volume-fill = ─
|
||||||
bar-volume-fill-font = 2
|
bar-volume-fill-font = 2
|
||||||
bar-volume-empty = ━
|
bar-volume-empty = ─
|
||||||
bar-volume-empty-font = 2
|
bar-volume-empty-font = 2
|
||||||
bar-volume-empty-foreground = #444444
|
bar-volume-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/battery]
|
[module/battery]
|
||||||
type = internal/battery
|
type = internal/battery
|
||||||
|
battery = BAT0
|
||||||
|
adapter = ADP1
|
||||||
full-at = 98
|
full-at = 98
|
||||||
|
|
||||||
format-charging = <animation-charging> <label-charging>
|
format-charging = <animation-charging> <label-charging>
|
||||||
|
format-charging-underline = #ffb52a
|
||||||
format-discharging = <ramp-capacity> <label-discharging>
|
format-discharging = <ramp-capacity> <label-discharging>
|
||||||
format-full = %{F#666}%{F#cc} <label-full>
|
format-discharging-underline = ${self.format-charging-underline}
|
||||||
|
format-full = %{F#55}%{F#ff} <label-full>
|
||||||
|
format-full-underline = ${self.format-charging-underline}
|
||||||
|
|
||||||
ramp-capacity-0 =
|
ramp-capacity-0 =
|
||||||
ramp-capacity-1 =
|
ramp-capacity-1 =
|
||||||
ramp-capacity-2 =
|
ramp-capacity-2 =
|
||||||
ramp-capacity-foreground = #666
|
ramp-capacity-foreground = #55
|
||||||
|
|
||||||
animation-charging-0 =
|
animation-charging-0 =
|
||||||
animation-charging-1 =
|
animation-charging-1 =
|
||||||
animation-charging-2 =
|
animation-charging-2 =
|
||||||
animation-charging-foreground = #666
|
animation-charging-foreground = #55
|
||||||
animation-charging-framerate = 750
|
animation-charging-framerate = 750
|
||||||
|
|
||||||
|
|
||||||
[module/mpd]
|
|
||||||
type = internal/mpd
|
|
||||||
|
|
||||||
format-online = <label-time> <bar-progress> <label-song> <icon-prev> <icon-seekb> <icon-stop> <toggle> <icon-seekf> <icon-next> <icon-repeat> <icon-random>
|
|
||||||
format-online-background = #ee333333
|
|
||||||
format-online-underline = #cc333333
|
|
||||||
format-online-padding = 3
|
|
||||||
|
|
||||||
format-offline = <label-offline>
|
|
||||||
format-offline-foreground = #66
|
|
||||||
|
|
||||||
label-offline = mpd is off
|
|
||||||
|
|
||||||
label-song-maxlen = 45
|
|
||||||
label-song-ellipsis = true
|
|
||||||
|
|
||||||
icon-prev =
|
|
||||||
icon-seekb =
|
|
||||||
icon-stop =
|
|
||||||
icon-play =
|
|
||||||
icon-pause =
|
|
||||||
icon-next =
|
|
||||||
icon-seekf =
|
|
||||||
; icon-prev = ⏮
|
|
||||||
; icon-seekb = ⏪
|
|
||||||
; icon-stop = ⏹
|
|
||||||
; icon-play = ⏵
|
|
||||||
; icon-pause = ⏸
|
|
||||||
; icon-seekf = ⏩
|
|
||||||
; icon-next = ⏭
|
|
||||||
|
|
||||||
icon-random =
|
|
||||||
icon-repeat =
|
|
||||||
|
|
||||||
toggle-on-foreground = #e60053
|
|
||||||
toggle-off-foreground = #66
|
|
||||||
|
|
||||||
bar-progress-width = 15
|
|
||||||
bar-progress-indicator =
|
|
||||||
bar-progress-indicator-foreground = #bb
|
|
||||||
bar-progress-fill = ─
|
|
||||||
bar-progress-fill-foreground = #bb
|
|
||||||
bar-progress-fill-font = 3
|
|
||||||
bar-progress-empty = ─
|
|
||||||
bar-progress-empty-foreground = #44
|
|
||||||
bar-progress-empty-font = 3
|
|
||||||
|
|
||||||
label-time-foreground = #77
|
|
||||||
|
|
||||||
|
|
||||||
[module/temperature]
|
[module/temperature]
|
||||||
type = internal/temperature
|
type = internal/temperature
|
||||||
|
|
||||||
thermal-zone = 0
|
thermal-zone = 0
|
||||||
warn-temperature = 60
|
warn-temperature = 60
|
||||||
label = 🌡 %temperature%
|
|
||||||
label-warn = 🔥 %temperature%
|
format = <ramp> <label>
|
||||||
|
format-underline = #f50a4d
|
||||||
|
format-warn = <ramp> <label-warn>
|
||||||
|
format-warn-underline = ${self.format-underline}
|
||||||
|
|
||||||
|
label = %temperature%
|
||||||
|
label-warn = %temperature%
|
||||||
|
label-warn-foreground = #e60053
|
||||||
|
|
||||||
|
ramp-0 =
|
||||||
|
ramp-1 =
|
||||||
|
ramp-2 =
|
||||||
|
ramp-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
[module/powermenu]
|
[module/powermenu]
|
||||||
type = custom/menu
|
type = custom/menu
|
||||||
|
|
||||||
label-open =
|
label-open = power
|
||||||
label-close =
|
label-open-foreground = #e60053
|
||||||
label-separator = /
|
label-close = cancel
|
||||||
|
label-close-foreground = #e60053
|
||||||
|
label-separator = |
|
||||||
|
label-separator-foreground = #55
|
||||||
|
|
||||||
menu-0-0 = Terminate WM
|
menu-0-0 = reboot
|
||||||
menu-0-0-foreground = #e60053
|
menu-0-0-exec = menu-open-1
|
||||||
menu-0-0-exec = bspc quit -1
|
menu-0-1 = power off
|
||||||
menu-0-1 = Reboot
|
menu-0-1-exec = menu-open-2
|
||||||
menu-0-1-foreground = #e60053
|
|
||||||
menu-0-1-exec = menu-open-1
|
|
||||||
menu-0-2 = Power off
|
|
||||||
menu-0-2-foreground = #e60053
|
|
||||||
menu-0-2-exec = menu-open-2
|
|
||||||
|
|
||||||
menu-1-0 = Cancel
|
menu-1-0 = cancel
|
||||||
menu-1-0-foreground = #e60053
|
|
||||||
menu-1-0-exec = menu-open-0
|
menu-1-0-exec = menu-open-0
|
||||||
menu-1-1 = Reboot
|
menu-1-1 = reboot
|
||||||
menu-1-1-foreground = #e60053
|
|
||||||
menu-1-1-exec = sudo reboot
|
menu-1-1-exec = sudo reboot
|
||||||
|
|
||||||
menu-2-0 = Power off
|
menu-2-0 = power off
|
||||||
menu-2-0-foreground = #e60053
|
|
||||||
menu-2-0-exec = sudo poweroff
|
menu-2-0-exec = sudo poweroff
|
||||||
menu-2-1 = Cancel
|
menu-2-1 = cancel
|
||||||
menu-2-1-foreground = #e60053
|
|
||||||
menu-2-1-exec = menu-open-0
|
menu-2-1-exec = menu-open-0
|
||||||
|
|
||||||
|
|
||||||
[module/counter]
|
|
||||||
type = internal/counter
|
|
||||||
format = <counter>
|
|
||||||
interval = 0.1
|
|
||||||
|
|
||||||
; vim:ft=dosini
|
; vim:ft=dosini
|
||||||
|
@ -1,376 +0,0 @@
|
|||||||
;=====================================================
|
|
||||||
;
|
|
||||||
; To learn more about how to configure Lemonbuddy
|
|
||||||
; go to https://github.com/jaagr/lemonbuddy
|
|
||||||
;
|
|
||||||
; The README contains alot of information
|
|
||||||
;
|
|
||||||
;=====================================================
|
|
||||||
|
|
||||||
[bar/example]
|
|
||||||
monitor = eDP-1
|
|
||||||
dock = true
|
|
||||||
width = 100%
|
|
||||||
height = 27
|
|
||||||
offset-x = 0
|
|
||||||
offset-y = 0
|
|
||||||
|
|
||||||
background = #ee222222
|
|
||||||
foreground = #ccfafafa
|
|
||||||
linecolor = #666
|
|
||||||
|
|
||||||
border-bottom = 2
|
|
||||||
border-bottom-color = #333
|
|
||||||
|
|
||||||
spacing = 1
|
|
||||||
lineheight = 1
|
|
||||||
padding-left = 0
|
|
||||||
padding-right = 2
|
|
||||||
module-margin-left = 1
|
|
||||||
module-margin-right = 2
|
|
||||||
|
|
||||||
font-0 = tamzen:size=9;1
|
|
||||||
font-1 = siji:pixelsize=10;0
|
|
||||||
font-2 = unifont:size=6;-1
|
|
||||||
|
|
||||||
modules-left = mpd
|
|
||||||
modules-center = bspwm
|
|
||||||
modules-right = volume memory cpu date
|
|
||||||
|
|
||||||
tray-position = right
|
|
||||||
tray-background = #33ffffff
|
|
||||||
tray-padding = 4
|
|
||||||
|
|
||||||
wm-restack = bspwm
|
|
||||||
|
|
||||||
|
|
||||||
[bar/external_bottom]
|
|
||||||
monitor = HDMI-1
|
|
||||||
dock = false
|
|
||||||
bottom = true
|
|
||||||
width = 100%
|
|
||||||
height = ${bar/top.height}
|
|
||||||
|
|
||||||
background = ${bar/top.background}
|
|
||||||
foreground = ${bar/top.foreground}
|
|
||||||
linecolor = ${bar/top.linecolor}
|
|
||||||
|
|
||||||
border-top = 2
|
|
||||||
border-top-color = #333
|
|
||||||
|
|
||||||
spacing = ${bar/top.spacing}
|
|
||||||
lineheight = ${bar/top.lineheight}
|
|
||||||
padding-right = ${bar/top.padding_right}
|
|
||||||
module-margin-left = 0
|
|
||||||
module-margin-right = ${bar/top.module_margin_right}
|
|
||||||
|
|
||||||
font-0 = ${bar/top.font-0}
|
|
||||||
font-1 = ${bar/top.font-1}
|
|
||||||
font-2 = ${bar/top.font-2}
|
|
||||||
|
|
||||||
modules-left = bspwm
|
|
||||||
modules-right = date powermenu
|
|
||||||
|
|
||||||
wm-restack = ${bar/top.wm-restack}
|
|
||||||
|
|
||||||
|
|
||||||
[module/bspwm]
|
|
||||||
type = internal/bspwm
|
|
||||||
ws-icon-default = x
|
|
||||||
|
|
||||||
label-active = o %index%
|
|
||||||
label-active-background = #ee333333
|
|
||||||
label-active-underline= #cc333333
|
|
||||||
label-active-padding = 2
|
|
||||||
|
|
||||||
label-occupied = %{O-1}⏺%{O-1} %index%
|
|
||||||
label-occupied-padding = 2
|
|
||||||
|
|
||||||
label-urgent = ! %index%
|
|
||||||
label-urgent-background = #bd2c40
|
|
||||||
label-urgent-padding = 2
|
|
||||||
|
|
||||||
label-empty = x %index%
|
|
||||||
label-empty-foreground = #444
|
|
||||||
label-empty-padding = 2
|
|
||||||
|
|
||||||
|
|
||||||
[module/cpu]
|
|
||||||
type = internal/cpu
|
|
||||||
interval = 2
|
|
||||||
|
|
||||||
;format = <label> <bar-load> <ramp-coreload>
|
|
||||||
format = <label> <bar-load>
|
|
||||||
label = CPU
|
|
||||||
|
|
||||||
; ramp-coreload-0 = ▁
|
|
||||||
; ramp-coreload-0-font = 2
|
|
||||||
; ramp-coreload-0-foreground = #55aa55
|
|
||||||
; ramp-coreload-1 = ▂
|
|
||||||
; ramp-coreload-1-font = 2
|
|
||||||
; ramp-coreload-1-foreground = #55aa55
|
|
||||||
; ramp-coreload-2 = ▃
|
|
||||||
; ramp-coreload-2-font = 2
|
|
||||||
; ramp-coreload-2-foreground = #55aa55
|
|
||||||
; ramp-coreload-3 = ▄
|
|
||||||
; ramp-coreload-3-font = 2
|
|
||||||
; ramp-coreload-3-foreground = #55aa55
|
|
||||||
; ramp-coreload-4 = ▅
|
|
||||||
; ramp-coreload-4-font = 2
|
|
||||||
; ramp-coreload-4-foreground = #f5a70a
|
|
||||||
; ramp-coreload-5 = ▆
|
|
||||||
; ramp-coreload-5-font = 2
|
|
||||||
; ramp-coreload-5-foreground = #f5a70a
|
|
||||||
; ramp-coreload-6 = ▇
|
|
||||||
; ramp-coreload-6-font = 2
|
|
||||||
; ramp-coreload-6-foreground = #ff5555
|
|
||||||
; ramp-coreload-7 = █
|
|
||||||
; ramp-coreload-7-font = 2
|
|
||||||
; ramp-coreload-7-foreground = #ff5555
|
|
||||||
|
|
||||||
bar-load-width = 20
|
|
||||||
bar-load-foreground-0 = #55aa55
|
|
||||||
bar-load-foreground-1 = #55aa55
|
|
||||||
bar-load-foreground-2 = #f5a70a
|
|
||||||
bar-load-foreground-3 = #ff5555
|
|
||||||
bar-load-gradient = false
|
|
||||||
bar-load-indicator = │
|
|
||||||
bar-load-indicator-font = 2
|
|
||||||
bar-load-indicator-foreground = #ff
|
|
||||||
bar-load-fill = ━
|
|
||||||
bar-load-fill-font = 2
|
|
||||||
bar-load-empty = ━
|
|
||||||
bar-load-empty-font = 2
|
|
||||||
bar-load-empty-foreground = #444444
|
|
||||||
|
|
||||||
|
|
||||||
[module/memory]
|
|
||||||
type = internal/memory
|
|
||||||
interval = 2
|
|
||||||
|
|
||||||
format = <label> <bar-used>
|
|
||||||
label = RAM
|
|
||||||
|
|
||||||
bar-used-width = 20
|
|
||||||
bar-used-foreground-0 = #55aa55
|
|
||||||
bar-used-foreground-1 = #55aa55
|
|
||||||
bar-used-foreground-2 = #f5a70a
|
|
||||||
bar-used-foreground-3 = #ff5555
|
|
||||||
bar-used-gradient = false
|
|
||||||
bar-used-indicator = │
|
|
||||||
bar-used-indicator-font = 2
|
|
||||||
bar-used-indicator-foreground = #ff
|
|
||||||
bar-used-fill = ━
|
|
||||||
bar-used-fill-font = 2
|
|
||||||
bar-used-empty = ━
|
|
||||||
bar-used-empty-font = 2
|
|
||||||
bar-used-empty-foreground = #444444
|
|
||||||
|
|
||||||
|
|
||||||
[module/wifi]
|
|
||||||
type = internal/network
|
|
||||||
interface = net1
|
|
||||||
interval = 3.0
|
|
||||||
;udspeed-minwidth = 3
|
|
||||||
|
|
||||||
format-connected = <ramp-signal> <label-connected>
|
|
||||||
;label-connected = %essid% %{F#66}%local_ip%
|
|
||||||
;label-connected = %{F#666}%{F#cc} %upspeed% %{F#666}%{F#cc} %downspeed%
|
|
||||||
label-connected = %{O-6 F#666}%{O2 F#cc}%downspeed%
|
|
||||||
label-disconnected = %{F#666}%{F#cc} not connected
|
|
||||||
label-disconnected-foreground = #66
|
|
||||||
|
|
||||||
ramp-signal-0 =
|
|
||||||
ramp-signal-1 =
|
|
||||||
ramp-signal-2 =
|
|
||||||
ramp-signal-3 =
|
|
||||||
ramp-signal-4 =
|
|
||||||
ramp-signal-foreground = #666
|
|
||||||
|
|
||||||
|
|
||||||
[module/wired]
|
|
||||||
type = internal/network
|
|
||||||
interface = net0
|
|
||||||
interval = 3.0
|
|
||||||
|
|
||||||
label-connected = %{T3}%local_ip%%{T-}
|
|
||||||
label-disconnected = %{T3}Not connected%{T-}
|
|
||||||
label-disconnected-foreground = #66
|
|
||||||
|
|
||||||
|
|
||||||
[module/date]
|
|
||||||
type = internal/date
|
|
||||||
date = %%{F#666}%{F#cc} %Y-%m-%d %%{F#e60053}%%{F#cc} %H:%M
|
|
||||||
date-alt = %%{F#666}%{F#cc} %Y-%m-%d %%{F#e60053}%%{F#cc} %H:%M:%S
|
|
||||||
interval = 5
|
|
||||||
|
|
||||||
|
|
||||||
[module/backlight]
|
|
||||||
type = internal/backlight
|
|
||||||
card = intel_backlight
|
|
||||||
format = <ramp> <label>
|
|
||||||
ramp-0 =
|
|
||||||
ramp-1 =
|
|
||||||
ramp-2 =
|
|
||||||
ramp-foreground = #666
|
|
||||||
|
|
||||||
|
|
||||||
[module/volume]
|
|
||||||
type = internal/volume
|
|
||||||
speaker-mixer = Speaker
|
|
||||||
headphone-mixer = Headphone
|
|
||||||
headphone-id = 9
|
|
||||||
|
|
||||||
; format-volume = <ramp-volume> <label-volume>
|
|
||||||
format-volume = <label-volume> <bar-volume>
|
|
||||||
|
|
||||||
label-volume = VOL
|
|
||||||
label-volume-foreground = ${BAR.foreground}
|
|
||||||
|
|
||||||
label-muted = %{F#66} sound muted
|
|
||||||
|
|
||||||
;ramp-volume-0 =
|
|
||||||
;ramp-volume-1 =
|
|
||||||
;ramp-volume-2 =
|
|
||||||
;ramp-volume-3 =
|
|
||||||
;ramp-volume-foreground = #666
|
|
||||||
|
|
||||||
;ramp-headphones-0 =
|
|
||||||
;ramp-headphones-1 =
|
|
||||||
|
|
||||||
bar-volume-width = 20
|
|
||||||
bar-volume-foreground-0 = #55aa55
|
|
||||||
bar-volume-foreground-1 = #55aa55
|
|
||||||
bar-volume-foreground-2 = #55aa55
|
|
||||||
bar-volume-foreground-3 = #55aa55
|
|
||||||
bar-volume-foreground-4 = #55aa55
|
|
||||||
bar-volume-foreground-5 = #f5a70a
|
|
||||||
bar-volume-foreground-6 = #ff5555
|
|
||||||
bar-volume-gradient = false
|
|
||||||
bar-volume-indicator = │
|
|
||||||
bar-volume-indicator-font = 2
|
|
||||||
bar-volume-indicator-foreground = #ff
|
|
||||||
bar-volume-fill = ━
|
|
||||||
bar-volume-fill-font = 2
|
|
||||||
bar-volume-empty = ━
|
|
||||||
bar-volume-empty-font = 2
|
|
||||||
bar-volume-empty-foreground = #444444
|
|
||||||
|
|
||||||
|
|
||||||
[module/battery]
|
|
||||||
type = internal/battery
|
|
||||||
full-at = 98
|
|
||||||
|
|
||||||
format-charging = <animation-charging> <label-charging>
|
|
||||||
format-discharging = <ramp-capacity> <label-discharging>
|
|
||||||
format-full = %{F#666}%{F#cc} <label-full>
|
|
||||||
|
|
||||||
ramp-capacity-0 =
|
|
||||||
ramp-capacity-1 =
|
|
||||||
ramp-capacity-2 =
|
|
||||||
ramp-capacity-foreground = #666
|
|
||||||
|
|
||||||
animation-charging-0 =
|
|
||||||
animation-charging-1 =
|
|
||||||
animation-charging-2 =
|
|
||||||
animation-charging-foreground = #666
|
|
||||||
animation-charging-framerate = 750
|
|
||||||
|
|
||||||
|
|
||||||
[module/mpd]
|
|
||||||
type = internal/mpd
|
|
||||||
|
|
||||||
format-online = <label-time> <bar-progress> <label-song> <icon-prev> <icon-seekb> <icon-stop> <toggle> <icon-seekf> <icon-next> <icon-repeat> <icon-random>
|
|
||||||
format-online-background = #ee333333
|
|
||||||
format-online-underline = #cc333333
|
|
||||||
format-online-padding = 3
|
|
||||||
|
|
||||||
format-offline = <label-offline>
|
|
||||||
format-offline-foreground = #66
|
|
||||||
|
|
||||||
label-offline = mpd is off
|
|
||||||
|
|
||||||
label-song-maxlen = 45
|
|
||||||
label-song-ellipsis = true
|
|
||||||
|
|
||||||
icon-prev =
|
|
||||||
icon-seekb =
|
|
||||||
icon-stop =
|
|
||||||
icon-play =
|
|
||||||
icon-pause =
|
|
||||||
icon-next =
|
|
||||||
icon-seekf =
|
|
||||||
; icon-prev = ⏮
|
|
||||||
; icon-seekb = ⏪
|
|
||||||
; icon-stop = ⏹
|
|
||||||
; icon-play = ⏵
|
|
||||||
; icon-pause = ⏸
|
|
||||||
; icon-seekf = ⏩
|
|
||||||
; icon-next = ⏭
|
|
||||||
|
|
||||||
icon-random =
|
|
||||||
icon-repeat =
|
|
||||||
|
|
||||||
toggle-on-foreground = #e60053
|
|
||||||
toggle-off-foreground = #66
|
|
||||||
|
|
||||||
bar-progress-width = 15
|
|
||||||
bar-progress-indicator =
|
|
||||||
bar-progress-indicator-foreground = #bb
|
|
||||||
bar-progress-fill = ─
|
|
||||||
bar-progress-fill-foreground = #bb
|
|
||||||
bar-progress-fill-font = 3
|
|
||||||
bar-progress-empty = ─
|
|
||||||
bar-progress-empty-foreground = #44
|
|
||||||
bar-progress-empty-font = 3
|
|
||||||
|
|
||||||
label-time-foreground = #77
|
|
||||||
|
|
||||||
|
|
||||||
[module/temperature]
|
|
||||||
type = internal/temperature
|
|
||||||
|
|
||||||
thermal-zone = 0
|
|
||||||
warn-temperature = 60
|
|
||||||
label = 🌡 %temperature%
|
|
||||||
label-warn = 🔥 %temperature%
|
|
||||||
|
|
||||||
|
|
||||||
[module/powermenu]
|
|
||||||
type = custom/menu
|
|
||||||
|
|
||||||
label-open =
|
|
||||||
label-close =
|
|
||||||
label-separator = /
|
|
||||||
|
|
||||||
menu-0-0 = Terminate WM
|
|
||||||
menu-0-0-foreground = #e60053
|
|
||||||
menu-0-0-exec = bspc quit -1
|
|
||||||
menu-0-1 = Reboot
|
|
||||||
menu-0-1-foreground = #e60053
|
|
||||||
menu-0-1-exec = menu-open-1
|
|
||||||
menu-0-2 = Power off
|
|
||||||
menu-0-2-foreground = #e60053
|
|
||||||
menu-0-2-exec = menu-open-2
|
|
||||||
|
|
||||||
menu-1-0 = Cancel
|
|
||||||
menu-1-0-foreground = #e60053
|
|
||||||
menu-1-0-exec = menu-open-0
|
|
||||||
menu-1-1 = Reboot
|
|
||||||
menu-1-1-foreground = #e60053
|
|
||||||
menu-1-1-exec = sudo reboot
|
|
||||||
|
|
||||||
menu-2-0 = Power off
|
|
||||||
menu-2-0-foreground = #e60053
|
|
||||||
menu-2-0-exec = sudo poweroff
|
|
||||||
menu-2-1 = Cancel
|
|
||||||
menu-2-1-foreground = #e60053
|
|
||||||
menu-2-1-exec = menu-open-0
|
|
||||||
|
|
||||||
|
|
||||||
[module/counter]
|
|
||||||
type = internal/counter
|
|
||||||
format = <counter>
|
|
||||||
interval = 0.1
|
|
||||||
|
|
||||||
; vim:ft=dosini
|
|
328
examples/config.cmake
Normal file
328
examples/config.cmake
Normal file
@ -0,0 +1,328 @@
|
|||||||
|
;=====================================================
|
||||||
|
;
|
||||||
|
; To learn more about how to configure Lemonbuddy
|
||||||
|
; go to https://github.com/jaagr/lemonbuddy
|
||||||
|
;
|
||||||
|
; The README contains alot of information
|
||||||
|
;
|
||||||
|
;=====================================================
|
||||||
|
|
||||||
|
[global/wm]
|
||||||
|
margin-top = 5
|
||||||
|
margin-bottom = 5
|
||||||
|
margin-left = 5
|
||||||
|
margin-right = 5
|
||||||
|
|
||||||
|
|
||||||
|
[bar/example]
|
||||||
|
;monitor = HDMI-1
|
||||||
|
dock = false
|
||||||
|
width = 100%
|
||||||
|
height = 27
|
||||||
|
offset-x = 0
|
||||||
|
offset-y = 0
|
||||||
|
|
||||||
|
background = #ee222222
|
||||||
|
foreground = #dfdfdf
|
||||||
|
linecolor = #555
|
||||||
|
|
||||||
|
border-bottom = 2
|
||||||
|
border-bottom-color = #333
|
||||||
|
|
||||||
|
spacing = 1
|
||||||
|
lineheight = 1
|
||||||
|
padding-left = 0
|
||||||
|
padding-right = 2
|
||||||
|
module-margin-left = 1
|
||||||
|
module-margin-right = 2
|
||||||
|
|
||||||
|
font-0 = fixed:pixelsize=10;0
|
||||||
|
font-1 = unifont:size=6;-2
|
||||||
|
font-2 = siji:pixelsize=10;0
|
||||||
|
|
||||||
|
modules-left = @MODULES_LEFT@
|
||||||
|
modules-center = @MODULES_CENTER@
|
||||||
|
modules-right = @MODULES_RIGHT@
|
||||||
|
|
||||||
|
tray-position = right
|
||||||
|
tray-padding = 4
|
||||||
|
|
||||||
|
;wm-restack = bspwm
|
||||||
|
|
||||||
|
|
||||||
|
[module/bspwm]
|
||||||
|
type = internal/bspwm
|
||||||
|
ws-icon-default = x
|
||||||
|
|
||||||
|
label-active = %index%
|
||||||
|
label-active-background = #ee333333
|
||||||
|
label-active-underline= #cc333333
|
||||||
|
label-active-padding = 2
|
||||||
|
|
||||||
|
label-occupied = %index%
|
||||||
|
label-occupied-padding = 2
|
||||||
|
|
||||||
|
label-urgent = %index%
|
||||||
|
label-urgent-background = #bd2c40
|
||||||
|
label-urgent-padding = 2
|
||||||
|
|
||||||
|
label-empty = %index%
|
||||||
|
label-empty-foreground = #55
|
||||||
|
label-empty-padding = 2
|
||||||
|
|
||||||
|
|
||||||
|
[module/i3]
|
||||||
|
type = internal/i3
|
||||||
|
format = <label-state>
|
||||||
|
index-sort = true
|
||||||
|
|
||||||
|
label-focused = %index%
|
||||||
|
label-focused-background = #ee333333
|
||||||
|
label-focused-underline= #cc333333
|
||||||
|
label-focused-padding = 2
|
||||||
|
|
||||||
|
label-unfocused = %index%
|
||||||
|
label-unfocused-padding = 2
|
||||||
|
|
||||||
|
label-urgent = %index%!
|
||||||
|
label-urgent-background = #bd2c40
|
||||||
|
label-urgent-padding = 2
|
||||||
|
|
||||||
|
label-visible = %index%
|
||||||
|
label-visible-foreground = #55
|
||||||
|
label-visible-padding = 2
|
||||||
|
|
||||||
|
|
||||||
|
[module/mpd]
|
||||||
|
type = internal/mpd
|
||||||
|
|
||||||
|
format-online = <label-song> <icon-prev> <icon-seekb> <icon-stop> <toggle> <icon-seekf> <icon-next> <icon-repeat> <icon-random>
|
||||||
|
|
||||||
|
label-song-maxlen = 25
|
||||||
|
label-song-ellipsis = true
|
||||||
|
|
||||||
|
icon-prev =
|
||||||
|
icon-seekb =
|
||||||
|
icon-stop =
|
||||||
|
icon-play =
|
||||||
|
icon-pause =
|
||||||
|
icon-next =
|
||||||
|
icon-seekf =
|
||||||
|
|
||||||
|
icon-random =
|
||||||
|
icon-repeat =
|
||||||
|
|
||||||
|
toggle-on-foreground = #e60053
|
||||||
|
toggle-off-foreground = #66
|
||||||
|
|
||||||
|
|
||||||
|
[module/backlight]
|
||||||
|
type = internal/xbacklight
|
||||||
|
|
||||||
|
format = <label> <bar>
|
||||||
|
label = BL
|
||||||
|
|
||||||
|
bar-width = 10
|
||||||
|
bar-indicator = │
|
||||||
|
bar-indicator-foreground = #ff
|
||||||
|
bar-indicator-font = 2
|
||||||
|
bar-fill = ─
|
||||||
|
bar-fill-font = 2
|
||||||
|
bar-fill-foreground = #9f78e1
|
||||||
|
bar-empty = ─
|
||||||
|
bar-empty-font = 2
|
||||||
|
bar-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/cpu]
|
||||||
|
type = internal/cpu
|
||||||
|
interval = 2
|
||||||
|
|
||||||
|
format = <label> <bar-load>
|
||||||
|
label = CPU
|
||||||
|
|
||||||
|
bar-load-width = 10
|
||||||
|
bar-load-foreground-0 = #55aa55
|
||||||
|
bar-load-foreground-1 = #55aa55
|
||||||
|
bar-load-foreground-2 = #f5a70a
|
||||||
|
bar-load-foreground-3 = #ff5555
|
||||||
|
bar-load-gradient = false
|
||||||
|
bar-load-indicator = │
|
||||||
|
bar-load-indicator-font = 2
|
||||||
|
bar-load-indicator-foreground = #ff
|
||||||
|
bar-load-fill = ─
|
||||||
|
bar-load-fill-font = 2
|
||||||
|
bar-load-empty = ─
|
||||||
|
bar-load-empty-font = 2
|
||||||
|
bar-load-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/memory]
|
||||||
|
type = internal/memory
|
||||||
|
interval = 2
|
||||||
|
|
||||||
|
format = <label> <bar-used>
|
||||||
|
label = RAM
|
||||||
|
|
||||||
|
bar-used-width = 10
|
||||||
|
bar-used-foreground-0 = #55aa55
|
||||||
|
bar-used-foreground-1 = #55aa55
|
||||||
|
bar-used-foreground-2 = #f5a70a
|
||||||
|
bar-used-foreground-3 = #ff5555
|
||||||
|
bar-used-gradient = false
|
||||||
|
bar-used-indicator = │
|
||||||
|
bar-used-indicator-font = 2
|
||||||
|
bar-used-indicator-foreground = #ff
|
||||||
|
bar-used-fill = ─
|
||||||
|
bar-used-fill-font = 2
|
||||||
|
bar-used-empty = ─
|
||||||
|
bar-used-empty-font = 2
|
||||||
|
bar-used-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/wlan]
|
||||||
|
type = internal/network
|
||||||
|
interface = net1
|
||||||
|
interval = 3.0
|
||||||
|
|
||||||
|
format-connected = <ramp-signal> <label-connected>
|
||||||
|
format-connected-underline = #9f78e1
|
||||||
|
format-disconnected-underline = ${self.format-connected-underline}
|
||||||
|
|
||||||
|
label-connected = %essid%
|
||||||
|
label-disconnected = %ifname% disconnected
|
||||||
|
label-disconnected-foreground = #55
|
||||||
|
|
||||||
|
ramp-signal-0 =
|
||||||
|
ramp-signal-1 =
|
||||||
|
ramp-signal-2 =
|
||||||
|
ramp-signal-3 =
|
||||||
|
ramp-signal-4 =
|
||||||
|
ramp-signal-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/eth]
|
||||||
|
type = internal/network
|
||||||
|
interface = net0
|
||||||
|
interval = 3.0
|
||||||
|
|
||||||
|
format-connected-underline = #55aa55
|
||||||
|
format-disconnected-underline = ${self.format-connected-underline}
|
||||||
|
|
||||||
|
label-connected = %{F#55}%{F#ff} %local_ip%
|
||||||
|
label-disconnected = %ifname% disconnected
|
||||||
|
label-disconnected-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/date]
|
||||||
|
type = internal/date
|
||||||
|
date = %%{F#55}%{F#ff} %Y-%m-%d %%{F#55}%%{F#ff} %H:%M
|
||||||
|
date-alt = %%{F#55}%{F#ff} %Y-%m-%d %%{F#55}%%{F#ff} %H:%M:%S
|
||||||
|
interval = 5
|
||||||
|
format-underline = #0a6cf5
|
||||||
|
|
||||||
|
|
||||||
|
[module/volume]
|
||||||
|
type = internal/volume
|
||||||
|
speaker-mixer = Speaker
|
||||||
|
headphone-mixer = Headphone
|
||||||
|
headphone-id = 9
|
||||||
|
|
||||||
|
format-volume = <label-volume> <bar-volume>
|
||||||
|
|
||||||
|
label-volume = VOL
|
||||||
|
label-volume-foreground = ${BAR.foreground}
|
||||||
|
|
||||||
|
label-muted = sound muted
|
||||||
|
label-muted-foreground = #55
|
||||||
|
|
||||||
|
bar-volume-width = 10
|
||||||
|
bar-volume-foreground-0 = #55aa55
|
||||||
|
bar-volume-foreground-1 = #55aa55
|
||||||
|
bar-volume-foreground-2 = #55aa55
|
||||||
|
bar-volume-foreground-3 = #55aa55
|
||||||
|
bar-volume-foreground-4 = #55aa55
|
||||||
|
bar-volume-foreground-5 = #f5a70a
|
||||||
|
bar-volume-foreground-6 = #ff5555
|
||||||
|
bar-volume-gradient = false
|
||||||
|
bar-volume-indicator = │
|
||||||
|
bar-volume-indicator-font = 2
|
||||||
|
bar-volume-indicator-foreground = #ff
|
||||||
|
bar-volume-fill = ─
|
||||||
|
bar-volume-fill-font = 2
|
||||||
|
bar-volume-empty = ─
|
||||||
|
bar-volume-empty-font = 2
|
||||||
|
bar-volume-empty-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/battery]
|
||||||
|
type = internal/battery
|
||||||
|
battery = @BATTERY@
|
||||||
|
adapter = @ADAPTER@
|
||||||
|
full-at = 98
|
||||||
|
|
||||||
|
format-charging = <animation-charging> <label-charging>
|
||||||
|
format-charging-underline = #ffb52a
|
||||||
|
format-discharging = <ramp-capacity> <label-discharging>
|
||||||
|
format-discharging-underline = ${self.format-charging-underline}
|
||||||
|
format-full = %{F#55}%{F#ff} <label-full>
|
||||||
|
format-full-underline = ${self.format-charging-underline}
|
||||||
|
|
||||||
|
ramp-capacity-0 =
|
||||||
|
ramp-capacity-1 =
|
||||||
|
ramp-capacity-2 =
|
||||||
|
ramp-capacity-foreground = #55
|
||||||
|
|
||||||
|
animation-charging-0 =
|
||||||
|
animation-charging-1 =
|
||||||
|
animation-charging-2 =
|
||||||
|
animation-charging-foreground = #55
|
||||||
|
animation-charging-framerate = 750
|
||||||
|
|
||||||
|
|
||||||
|
[module/temperature]
|
||||||
|
type = internal/temperature
|
||||||
|
thermal-zone = 0
|
||||||
|
warn-temperature = 60
|
||||||
|
|
||||||
|
format = <ramp> <label>
|
||||||
|
format-underline = #f50a4d
|
||||||
|
format-warn = <ramp> <label-warn>
|
||||||
|
format-warn-underline = ${self.format-underline}
|
||||||
|
|
||||||
|
label = %temperature%
|
||||||
|
label-warn = %temperature%
|
||||||
|
label-warn-foreground = #e60053
|
||||||
|
|
||||||
|
ramp-0 =
|
||||||
|
ramp-1 =
|
||||||
|
ramp-2 =
|
||||||
|
ramp-foreground = #55
|
||||||
|
|
||||||
|
|
||||||
|
[module/powermenu]
|
||||||
|
type = custom/menu
|
||||||
|
|
||||||
|
label-open = power
|
||||||
|
label-open-foreground = #e60053
|
||||||
|
label-close = cancel
|
||||||
|
label-close-foreground = #e60053
|
||||||
|
label-separator = |
|
||||||
|
label-separator-foreground = #55
|
||||||
|
|
||||||
|
menu-0-0 = reboot
|
||||||
|
menu-0-0-exec = menu-open-1
|
||||||
|
menu-0-1 = power off
|
||||||
|
menu-0-1-exec = menu-open-2
|
||||||
|
|
||||||
|
menu-1-0 = cancel
|
||||||
|
menu-1-0-exec = menu-open-0
|
||||||
|
menu-1-1 = reboot
|
||||||
|
menu-1-1-exec = sudo reboot
|
||||||
|
|
||||||
|
menu-2-0 = power off
|
||||||
|
menu-2-0-exec = sudo poweroff
|
||||||
|
menu-2-1 = cancel
|
||||||
|
menu-2-1-exec = menu-open-0
|
||||||
|
|
||||||
|
; vim:ft=dosini
|
@ -1,85 +0,0 @@
|
|||||||
;=====================================================
|
|
||||||
;
|
|
||||||
; To learn more about how to configure Lemonbuddy
|
|
||||||
; go to https://github.com/jaagr/lemonbuddy
|
|
||||||
;
|
|
||||||
; The README contains alot of information
|
|
||||||
;
|
|
||||||
;=====================================================
|
|
||||||
|
|
||||||
[bar/example]
|
|
||||||
;monitor = eDP-1
|
|
||||||
dock = false
|
|
||||||
width = 100%
|
|
||||||
height = 27
|
|
||||||
|
|
||||||
background = #ee222222
|
|
||||||
foreground = #ccfafafa
|
|
||||||
linecolor = #666
|
|
||||||
|
|
||||||
border-bottom = 2
|
|
||||||
border-bottom-color = #333
|
|
||||||
|
|
||||||
spacing = 1
|
|
||||||
lineheight = 1
|
|
||||||
|
|
||||||
padding-left = 0
|
|
||||||
padding-right = 2
|
|
||||||
|
|
||||||
module-margin-left = 1
|
|
||||||
module-margin-right = 2
|
|
||||||
|
|
||||||
font-0 = fixed:size=8;1
|
|
||||||
|
|
||||||
modules-left = i3
|
|
||||||
modules-right = xbacklight date
|
|
||||||
|
|
||||||
tray-position = right
|
|
||||||
tray-background = #33ffffff
|
|
||||||
tray-padding = 4
|
|
||||||
|
|
||||||
|
|
||||||
[module/i3]
|
|
||||||
type = internal/i3
|
|
||||||
format = <label-state>
|
|
||||||
index-sort = true
|
|
||||||
|
|
||||||
label-focused = %index%
|
|
||||||
label-focused-background = #ee333333
|
|
||||||
label-focused-underline= #cc333333
|
|
||||||
label-focused-padding = 2
|
|
||||||
|
|
||||||
label-unfocused = %index%
|
|
||||||
label-unfocused-padding = 2
|
|
||||||
|
|
||||||
label-urgent = %index%!
|
|
||||||
label-urgent-background = #bd2c40
|
|
||||||
label-urgent-padding = 2
|
|
||||||
|
|
||||||
label-visible = %index%
|
|
||||||
label-visible-foreground = #444
|
|
||||||
label-visible-padding = 2
|
|
||||||
|
|
||||||
|
|
||||||
[module/xbacklight]
|
|
||||||
type = internal/xbacklight
|
|
||||||
|
|
||||||
format = <label> <bar>
|
|
||||||
|
|
||||||
label = Brightness %percentage%
|
|
||||||
|
|
||||||
bar-width = 15
|
|
||||||
bar-indicator = │
|
|
||||||
bar-indicator-foreground = #bbffffff
|
|
||||||
bar-fill = ─
|
|
||||||
bar-fill-foreground = #9f78e1
|
|
||||||
bar-empty = ─
|
|
||||||
bar-empty-foreground = #44
|
|
||||||
|
|
||||||
|
|
||||||
[module/date]
|
|
||||||
type = internal/date
|
|
||||||
date = %Y-%m-%d %%{F#e60053}%H:%M%%{F#cc}
|
|
||||||
interval = 5
|
|
||||||
|
|
||||||
; vim:ft=dosini
|
|
Loading…
Reference in New Issue
Block a user