all repos — tint2 @ c66f9a0fd42315d3ba96c1e593330267d217a2aa

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

tint2conf: Support for loading themes from /usr/share/tint2
o9000 mrovi9000@gmail.com
commit

c66f9a0fd42315d3ba96c1e593330267d217a2aa

parent

38ef80637fba5c8d24a0d08e53980fd4ea5ebd14

M CMakeLists.txtCMakeLists.txt

@@ -3,7 +3,7 @@ cmake_minimum_required( VERSION 2.6 )

option( ENABLE_BATTERY "Enable battery status plugin" ON ) option( ENABLE_TINT2CONF "Enable tint2conf build, a GTK+2 theme configurator for tint2" ON ) -option( ENABLE_EXAMPLES "Install additional tin2rc examples" ON ) +option( ENABLE_EXTRA_THEMES "Install additional tint2 themes" ON ) option( ENABLE_RSVG "Rsvg support (launcher only)" ON ) option( ENABLE_SN "Startup notification support" ON ) option( ENABLE_ASAN "Build tint2 with AddressSanitizer" OFF )

@@ -242,11 +242,11 @@ install( TARGETS tint2 DESTINATION bin )

install( FILES tint2.svg DESTINATION ${DATADIR}/icons/hicolor/scalable/apps ) install( FILES tint2.desktop DESTINATION ${DATADIR}/applications ) install( CODE "execute_process(COMMAND gtk-update-icon-cache -f -t ${DATADIR}/icons/hicolor WORKING_DIRECTORY ${CMAKE_INSTALL_PREFIX})" ) -install( FILES sample/tint2rc DESTINATION ${SYSCONFDIR}/xdg/tint2 ) +install( FILES themes/tint2rc DESTINATION ${SYSCONFDIR}/xdg/tint2 ) install( FILES default_icon.png DESTINATION ${DATADIR}/tint2 ) install( FILES AUTHORS ChangeLog README.md DESTINATION ${DOCDIR} ) install( FILES doc/tint2.1 DESTINATION ${MANDIR}/man1 ) -if( ENABLE_EXAMPLES ) - file( GLOB SAMPLEFILES sample/*.tint2rc ) - install( FILES ${SAMPLEFILES} DESTINATION ${DATADIR}/tint2 ) +if( ENABLE_EXTRA_THEMES ) + file( GLOB EXTRATHEMEFILES themes/*.tint2rc ) + install( FILES ${EXTRATHEMEFILES} DESTINATION ${DATADIR}/tint2 ) endif( ENABLE_EXAMPLES )