summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 068d9c18fe0c28a64b61b92715e27a3d2e73607a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Maintainer: Philip Wellnitz

pkgname=powerline-i3-git
pkgver=1.7.10
pkgrel=1
pkgdesc="The ultimate statusline/prompt utility. A fork containing more features for the i3 window manager."
arch=('i686' 'x86_64')
url="https://github.com/ph111p/powerline"
license=('MIT')
depends=(
  'python'
  'powerline-fonts'
  'ttf-font-awesome-4'
  'lemonbar-xft-git'
  'i3ipc-python-git'
  'python-xlib'
)
optdepends=(
  'python-iwlib: wireless segment'
  'python-pyalsaaudio: volume segment'
  'python-psutil: cpu load segment'
  'python-pygit2: better git performance of the vcs segment'
  'python-google-api-python-client: Google Calendar support for the appoints segment'
  'xorg-xinput: screen rotation segment'
)
makedepends=(
  'python-setuptools'
)
provides=('powerline-i3')
conflicts=('powerline' 'python-powerline')

source=("git://github.com/ph111p/powerline.git")
sha512sums=('SKIP')

package() {
    cd powerline

    python setup.py install --root="${pkgdir}" --optimize=1

    echo ">>> To use powerline instead of i3bar, replace"
    echo ">>>   bar {"
    echo ">>>      status_command i3status"
    echo ">>>   }"
    echo ">>> in your i3/config with this line:"
    echo ">>> exec_always \"killall powerline-lemonbar; powerline-lemonbar --i3 --height 16 -- -a 40 -b -f \'DejaVu Sans Mono-11\' -f \'PowerlineSymbols-12\' -f \'FontAwesome-11\'\""
}