all repos — tint2 @ ed9857e10ce2b425b1a5ec8c0f850b88e9427e41

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

new patch by Christian

git-svn-id: http://tint2.googlecode.com/svn/trunk@116 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
lorthiois@bbsoft.fr lorthiois@bbsoft.fr@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

ed9857e10ce2b425b1a5ec8c0f850b88e9427e41

parent

ce50e9c159bb9c8ca9d3e8ec91228e693541b74c

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M configure.acconfigure.ac

@@ -61,16 +61,16 @@ AC_FUNC_MALLOC

AC_CHECK_FUNCS([gettimeofday memset select setlocale strcasecmp strchr strdup]) AC_ARG_ENABLE([battery], - [AS_HELP_STRING([--enable-battery=no], [Disable battery status, only useful for notebooks [default=yes]])], + [AS_HELP_STRING([--disable-battery], [Disable battery status plugin])], [case "${enableval}" in yes) battery=true ;; no) battery=false ;; - *) AC_MSG_ERROR([bad value ${enableval} for --enable-battery]) ;; + *) AC_MSG_ERROR([bad value ${enableval} for --disable-battery]) ;; esac], [battery=true]) AM_CONDITIONAL([ENABLE_BATTERY], [test x$battery = xtrue]) AC_ARG_ENABLE([examples], - [AS_HELP_STRING([--enable-examples], [Install additional $(PACKAGE_NAME)rc examples])], + [AS_HELP_STRING([--enable-examples], [Install additional tin2rc examples])], [case "${enableval}" in yes) examples=true ;; no) examples=false ;;