Any conky guru know why conky has suddenly decided I need to displays of mpd_elapsed
and mpd_length
showing? Only one actually works, the other one just sits at 0:00 - 0:00
.
My Config:
conky.config = {
--## Begin Window Settings #####################
own_window = true,
own_window_type = 'override',
own_window_transparent = true,
own_window_argb_visual = false,
own_window_class = 'conky',
own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',
--## ARGB can be used for real transparency
--## NOTE that a composite manager is required for real transparency.
--## This option will not work as desired (in most cases) in conjunction with
--## own_window_type normal
--## When ARGB visuals are enabled, this use this to modify the alpha value
--## Use: own_window_type normal
--## Use: own_window_transparent no
--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity.
--own_window_argb_value 255
alignment = bottom_right,
minimum_width = 1683,
maximum_width = 1683,
minimum_height = 280,
gap_x = 3900,--## left | right
gap_y = 10,--## up | down
--###################### End Window Settings ###
--## Font Settings #############################
-- Use Xft (anti-aliased font and stuff)
use_xft = true,
font = 'Segoe UI Regular:size=8',
-- Alpha of Xft font. Must be a value at or between 1 and 0 ###
xftalpha = 1,
-- Force UTF8? requires XFT ###
override_utf8_locale = true,
uppercase = false,
--######################## End Font Settings ###
--## Colour Settings ###########################
draw_shades = false,--yes
default_shade_color = '#1c2023',
draw_outline = false,-- amplifies text if yes
default_outline_color = 'black',
default_color = '#26211F',-- Black
color0 = '#282A2E',-- Grey
color1 = '#bf616a',-- Red
color2 = '#FDFDFF',-- Green
color3 = '#ebcb8b',-- Yellow
color4 = '#81a1c1',-- Blue
color5 = '#C0C0C0',-- White
color6 = '#4f4f4f', -- Grey
color7 = '#535c5c', -- Nixie Blue Grey
color8 = '#E6EBF0', -- White
color9 = '#1c2023', -- Blue
--###################### End Colour Settings ###
--## Borders Section ###########################
draw_borders = false,
-- Stippled borders?
stippled_borders = 0,
-- border margins
border_inner_margin = 0,
border_outer_margin = 0,
-- border width
border_width = 0,
-- graph borders
draw_graph_borders = true,--no
--default_graph_size 15 40
--####################### End Borders Secton ###
--## Miscellaneous Section #####################
-- Boolean value, if true, Conky will be forked to background when started.
background = true,
-- Adds spaces around certain objects to stop them from moving other things
-- around, this only helps if you are using a mono font
-- Options: right, left or none
use_spacer = 'none',
-- Default and Minimum size is 256 - needs more for single commands that
-- "call" a lot of text IE: bash scripts
--text_buffer_size 6144
-- Subtract (file system) buffers from used memory?
no_buffers = true,
-- change GiB to G and MiB to M
short_units = true,
-- Like it says, ot pads the decimals on % values
-- doesn't seem to work since v1.7.1
pad_percents = 2,
-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use
-- $image lots. Set to 0 to disable the image cache.
imlib_cache_size = 0,
-- Use the Xdbe extension? (eliminates flicker)
-- It is highly recommended to use own window with this one
-- so double buffer won't be so big.
double_buffer = true,
-- Maximum size of user text buffer, i.e. layout below TEXT line in config file
-- (default is 16384 bytes)
-- max_user_text 16384
-- Desired output unit of all objects displaying a temperature. Parameters are
-- either "fahrenheit" or "celsius". The default unit is degree Celsius.
-- temperature_unit Fahrenheit
--################ End Miscellaneous Section ###
update_interval = 1,
};
conky.text = [[
${color5}${voffset 50}
${offset 270} ${font SF Pro Display:size=7:regular}$mpd_title
${offset 270} ${font SF Pro Display:size=7:bold}$mpd_artist
${offset 270} ${font SF Pro Display:size=7:regular}$mpd_album
${offset 270} ${font SF Pro Display:size=5:regular}$mpd_elapsed - $mpd_length
]];
I’m using conky-git from the AUR. I tried a different version of conky to see if it was the conky-arch-luas version that was an issue but no luck, same prob.
Any help will be really appreciated.