Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
arcan1s committed Sep 21, 2014
1 parent 1f9e822 commit fe82251
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ optdepends=("amarok: for music player monitor"
makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/awesome-widgets/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install
md5sums=('706c71a403b6dc058de9de31c9c2e67e')
md5sums=('21a3de6376bb7ebb779bfc927e98eb91')
backup=('usr/share/config/extsysmon.conf')

prepare() {
Expand Down
2 changes: 1 addition & 1 deletion sources/awesome-widget/awesome-widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ QStringList AwesomeWidget::getKeys()
allKeys.append(QString("netdev"));
// battery
allKeys.append(QString("ac"));
for (int i=0; i<counts[QString("bat")]; i++)
for (int i=counts[QString("bat")]-1; i>=0; i--)
allKeys.append(QString("bat") + QString::number(i));
allKeys.append(QString("bat"));
// player
Expand Down

0 comments on commit fe82251

Please sign in to comment.