├── LICENSE ├── PKGBUILD ├── README.md ├── docs ├── _config.yml └── index.html ├── notification.wav ├── patata.sh ├── pkg └── patata │ ├── .BUILDINFO │ ├── .MTREE │ ├── .PKGINFO │ └── usr │ ├── bin │ └── patata │ ├── lib │ └── patata │ │ └── notification.wav │ └── share │ └── licenses │ └── patata │ └── LICENSE └── src ├── LICENSE ├── notification.wav └── patata.sh /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Raoul René Melcer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- 1 | pkgname=patata 2 | pkgver=6 3 | pkgrel=1 4 | pkgdesc="A pomodoro timer for the shell uses Taskwarrior" 5 | arch=('any') 6 | url="https://github.com/rrmelcer/patata" 7 | license=('MIT') 8 | depends=('alsa-utils' 9 | 'task') 10 | source=('patata.sh' 11 | 'notification.wav' 12 | 'LICENSE') 13 | md5sums=('afb17063051076f016a4d64c487594a1' 14 | 'b01bacb54937c9bdd831f4d4ffd2e31c' 15 | 'a293b2ed2538166d3956653c2110cb2f') 16 | package() { 17 | install -D $srcdir/patata.sh $pkgdir/usr/bin/$pkgname 18 | install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE 19 | install -D $srcdir/notification.wav $pkgdir/usr/lib/$pkgname/notification.wav 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🥔 patata 🥔 2 | 3 | A pomodoro timer for the shell with [Taskwarrior](https://taskwarrior.org) 4 | connection. 5 | A fork from [potato.sh](https://github.com/Bladtman242/potato) with tweeks. 6 | 7 | ## How it work 8 | 9 | ```sh 10 | patata -h 11 | 12 | usage: potato [-s] [-m] [-w m] [-b m] [-p i] [-t t] [-h] 13 | -s: simple output. Intended for use in scripts 14 | When enabled, potato outputs one line for each minute, and doesn't print the bell character 15 | (ascii 007) 16 | 17 | -m: mute -- don't play sounds when work/break is over 18 | -w m: let work periods last m minutes (default is 25) 19 | -b m: let break periods last m minutes (default is 5) 20 | -p i: let iterate of pomodori bevor the big break (default is 4) 21 | -t t: let task ID from Taskwarrior to start (default is the most urgent task) 22 | -h: print this message 23 | ``` 24 | 25 | How the Pomorore Technique works read and learn it on 26 | [Wikipedia](https://en.wikipedia.org/wiki/Pomodoro_Technique). 27 | 28 | Learn also to use [Taskwarrior](https://taskwarrior.org) and you can use them 29 | until this script run. 30 | 31 | ## Credits 32 | Origin forket from the potato script from [Bladtman242](https://github.com/Bladtman242/). 33 | 34 | Notification sound (notification.wav, originally 35 | zapsplat\_mobile\_phone\_notification\_003.mp3 decoded and saved as wav with 36 | mpg123) 37 | obtained from [zapsplat.com](https://www.zapsplat.com/) under Creative Commons 38 | CC0. 39 | 40 | ## License 41 | MIT 42 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubikPixel/patata/1771855fd50269820127c9f724dd33868df90d48/notification.wav -------------------------------------------------------------------------------- /patata.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | WORK=25 4 | PAUSE=5 5 | POMODORI=4 6 | TASK=$(task next limit:1 | tail -n +4 | head -n 1 | sed 's/^ //' | cut -d ' ' -f1) 7 | INTERACTIVE=true 8 | MUTE=false 9 | 10 | show_help() { 11 | cat <<-END 12 | usage: potato [-s] [-m] [-w m] [-b m] [-p i] [-t t] [-h] 13 | -s: simple output. Intended for use in scripts 14 | When enabled, potato outputs one line for each minute, and doesn't print the bell character 15 | (ascii 007) 16 | 17 | -m: mute -- don't play sounds when work/break is over 18 | -w m: let work periods last m minutes (default is 25) 19 | -b m: let break periods last m minutes (default is 5) 20 | -p i: let iterate of pomodori bevor the big break (default is 4) 21 | -t t: let task ID from Taskwarrior to start (default is the most urgent task) 22 | -h: print this message 23 | END 24 | } 25 | 26 | play_notification() { 27 | aplay -q /usr/lib/potato/notification.wav& 28 | } 29 | 30 | while getopts :sw:b:p:t:m opt; do 31 | case "$opt" in 32 | s) 33 | INTERACTIVE=false 34 | ;; 35 | m) 36 | MUTE=true 37 | ;; 38 | w) 39 | WORK=$OPTARG 40 | ;; 41 | b) 42 | PAUSE=$OPTARG 43 | ;; 44 | p) 45 | POMODORI=$OPTARG 46 | ;; 47 | t) 48 | TASK=$OPTARG 49 | ;; 50 | h|\?) 51 | show_help 52 | exit 1 53 | ;; 54 | esac 55 | done 56 | 57 | time_left="%im left of %s " 58 | 59 | if $INTERACTIVE; then 60 | task $TASK list 61 | time_left="\r$time_left" 62 | else 63 | task $TASK list 64 | time_left="$time_left\n" 65 | fi 66 | 67 | # while true 68 | for ((p=$POMODORI; p>0; p--)) 69 | do 70 | task $TASK start 71 | 72 | for ((i=$WORK; i>0; i--)) 73 | do 74 | printf "$time_left" $i "work" 75 | sleep 1m 76 | done 77 | 78 | ! $MUTE && play_notification 79 | if $INTERACTIVE; then 80 | read -d '' -t 0.001 81 | echo -e "\a" 82 | echo "Work over" 83 | read 84 | fi 85 | 86 | task $TASK stop 87 | 88 | for ((i=$PAUSE; i>0; i--)) 89 | do 90 | printf "$time_left" $i "pause" 91 | sleep 1m 92 | done 93 | 94 | ! $MUTE && play_notification 95 | if $INTERACTIVE; then 96 | read -d '' -t 0.001 97 | echo -e "\a" 98 | echo "Pause over" 99 | read 100 | fi 101 | done 102 | 103 | echo "Take a coffee break! ☕" 104 | -------------------------------------------------------------------------------- /pkg/patata/.BUILDINFO: -------------------------------------------------------------------------------- 1 | format = 1 2 | pkgname = patata 3 | pkgbase = patata 4 | pkgver = 6-1 5 | pkgarch = any 6 | pkgbuild_sha256sum = 6cebdc8407fe264d3ca28977d728ac713b636ee9112f756adc4b4ef02f4bcf18 7 | packager = Unknown Packager 8 | builddate = 1543147317 9 | builddir = /home/rrmelcer/Develop/patata 10 | buildenv = !distcc 11 | buildenv = color 12 | buildenv = !ccache 13 | buildenv = check 14 | buildenv = !sign 15 | options = strip 16 | options = docs 17 | options = !libtool 18 | options = !staticlibs 19 | options = emptydirs 20 | options = zipman 21 | options = purge 22 | options = !debug 23 | installed = a2jmidid-8-3-x86_64 24 | installed = a52dec-0.7.4-10-x86_64 25 | installed = aalib-1.4rc5-12-x86_64 26 | installed = abook-0.6.1-2-x86_64 27 | installed = accountsservice-0.6.54+2+g204a4ab-1-x86_64 28 | installed = acl-2.2.53-1-x86_64 29 | installed = acpi-1.7-2-x86_64 30 | installed = acpid-2.0.30-1-x86_64 31 | installed = adapta-maia-theme-3.94.0.149-1-any 32 | installed = adobe-source-code-pro-fonts-2.030ro+1.050it-4-any 33 | installed = adwaita-icon-theme-3.30.0-1-any 34 | installed = agave-0.4.7-10-x86_64 35 | installed = alembic-1.7.9-1-x86_64 36 | installed = alsa-firmware-1.0.29-2-any 37 | installed = alsa-lib-1.1.7-1-x86_64 38 | installed = alsa-plugins-1.1.7-3-x86_64 39 | installed = alsa-utils-1.1.7-1-x86_64 40 | installed = android-tools-9.0.0_r3-1-x86_64 41 | installed = android-udev-20181031-1-any 42 | installed = ant-1.10.5-1-any 43 | installed = aom-1.0.0-1-x86_64 44 | installed = apache-2.4.37-1-x86_64 45 | installed = apm-2.1.3-2-x86_64 46 | installed = appstream-glib-0.7.14-1-x86_64 47 | installed = apr-1.6.5-1-x86_64 48 | installed = apr-util-1.6.1-3-x86_64 49 | installed = arc-gtk-theme-20181022-1-any 50 | installed = arc-icon-theme-20161122-3-any 51 | installed = archlinux-appstream-data-20181016-1-any 52 | installed = archlinux-keyring-20181031-1-any 53 | installed = argon2-20171227-3-x86_64 54 | installed = aribb24-1.0.3-2-x86_64 55 | installed = artwork-i3-20180516-1-any 56 | installed = asciidoc-8.6.10-1-any 57 | installed = aspell-0.60.7rc1-1-x86_64 58 | installed = aspell-de-20161207-1-x86_64 59 | installed = aspell-en-2018.04.16-1-x86_64 60 | installed = assimp-4.1.0-1-x86_64 61 | installed = at-spi2-atk-2.30.0-1-x86_64 62 | installed = at-spi2-core-2.30.0-2-x86_64 63 | installed = atk-2.30.0-1-x86_64 64 | installed = atkmm-2.28.0-1-x86_64 65 | installed = attica-5.52.0-1-x86_64 66 | installed = attr-2.4.48-1-x86_64 67 | installed = aubio-0.4.7-1-x86_64 68 | installed = audacity-2.3.0-1-x86_64 69 | installed = audit-2.8.4-2-x86_64 70 | installed = autoconf-2.69-5-any 71 | installed = automake-1.16.1-1-any 72 | installed = avahi-0.7+16+g1cc2b8e-2-x86_64 73 | installed = avidemux-cli-2.7.1-4-x86_64 74 | installed = awesome-terminal-fonts-1.1.0-1-any 75 | installed = b43-fwcutter-019-2-x86_64 76 | installed = babl-0.1.58-1-x86_64 77 | installed = bash-4.4.023-2-x86_64 78 | installed = bashrc-manjaro-4.4.023-2-any 79 | installed = bass-1.2-12-any 80 | installed = bc-1.07.1-2-x86_64 81 | installed = binutils-2.31.1-3-x86_64 82 | installed = bison-3.2-1-x86_64 83 | installed = blas-3.8.0-2-x86_64 84 | installed = blender-17:2.79.b.git3.32432d91-11-x86_64 85 | installed = blosc-1.14.4-1-x86_64 86 | installed = blueman-2.0.6-1-x86_64 87 | installed = bluez-5.50-3-x86_64 88 | installed = bluez-libs-5.50-3-x86_64 89 | installed = bmenu-0.5-3-any 90 | installed = boost-1.68.0-2-x86_64 91 | installed = boost-libs-1.68.0-2-x86_64 92 | installed = boswars-2.7-5-x86_64 93 | installed = boswars-addons-2.7-1-x86_64 94 | installed = brandr-0.2-3-any 95 | installed = breath-wallpaper-0.4.0-1-any 96 | installed = brotli-1.0.7-1-x86_64 97 | installed = btrfs-progs-4.19-1-x86_64 98 | installed = bubblewrap-0.3.1-1-x86_64 99 | installed = bumblebee-3.2.1-22-x86_64 100 | installed = bzip2-1.0.6-8-x86_64 101 | installed = c-ares-1.15.0-1-x86_64 102 | installed = c-lolcat-r40.ceb4d66-2-x86_64 103 | installed = ca-certificates-20180821-1-any 104 | installed = ca-certificates-mozilla-3.40-1-x86_64 105 | installed = ca-certificates-utils-20180821-1-any 106 | installed = cairo-1.16.0-1-x86_64 107 | installed = cairomm-1.12.2-2-x86_64 108 | installed = cantarell-fonts-1:0.111-1-any 109 | installed = catfish-1.4.6-2-any 110 | installed = cblas-3.8.0-2-x86_64 111 | installed = cdparanoia-10.2-7-x86_64 112 | installed = cef-minimal-3.3538.1850.ge710be4-1-x86_64 113 | installed = celt-0.11.3-3-x86_64 114 | installed = chromaprint-1.4.3-2-x86_64 115 | installed = chromium-70.0.3538.77-2-x86_64 116 | installed = cifs-utils-6.8-2-x86_64 117 | installed = ckbcomp-1.175-1-any 118 | installed = clang-7.0.0-1-x86_64 119 | installed = clockr-1.0-1-any 120 | installed = clonekeen-8.4-2-x86_64 121 | installed = clucene-2.3.3.4-10-x86_64 122 | installed = clutter-1.26.2-1-x86_64 123 | installed = clutter-gtk-1.8.4-1-x86_64 124 | installed = cmake-3.12.4-1-x86_64 125 | installed = cmatrix-1.2-1-x86_64 126 | installed = cogl-1.22.2+11+g811f285a-1-x86_64 127 | installed = coin-3.1.3-17-x86_64 128 | installed = colord-1.4.3-2-x86_64 129 | installed = compiler-rt-7.0.0-2-x86_64 130 | installed = composer-1.7.3-1-any 131 | installed = compton-3.0-5-x86_64 132 | installed = confuse-3.2.2-1-x86_64 133 | installed = conky-1.10.8-2-x86_64 134 | installed = conky-i3-20180507-1-any 135 | installed = convertlit-1.8-8-x86_64 136 | installed = coreutils-8.30-1-x86_64 137 | installed = cpupower-4.19-1-x86_64 138 | installed = cracklib-2.9.6-3-x86_64 139 | installed = crda-4.14-1-x86_64 140 | installed = cronie-1.5.2-1-x86_64 141 | installed = cryptsetup-2.0.5-1-x86_64 142 | installed = ctags-1:r20181015+g45968eff-1-x86_64 143 | installed = cuda-10.0.130-2-x86_64 144 | installed = cups-2.2.9-1-x86_64 145 | installed = cups-filters-1.21.3-3-x86_64 146 | installed = cups-pdf-3.0.1-4-x86_64 147 | installed = cups-pk-helper-0.2.6-1-x86_64 148 | installed = curl-7.62.0-1-x86_64 149 | installed = db-5.3.28-4-x86_64 150 | installed = dbus-1.12.10-2-x86_64 151 | installed = dbus-c++-0.9.0-8-x86_64 152 | installed = dbus-glib-0.110-1-x86_64 153 | installed = dcadec-0.2.0-1-x86_64 154 | installed = dconf-0.30.1-1-x86_64 155 | installed = ddgr-1.6-1-any 156 | installed = dep-0.5.0-1-x86_64 157 | installed = desktop-file-utils-0.23+4+g92af410-1-x86_64 158 | installed = device-mapper-2.02.182-1-x86_64 159 | installed = dhclient-4.4.1-4-x86_64 160 | installed = dhcpcd-7.0.8-1-x86_64 161 | installed = dia-0.97.3-5-x86_64 162 | installed = diffutils-3.6-2-x86_64 163 | installed = ding-libs-0.6.1-2-x86_64 164 | installed = djvulibre-3.5.27-4-x86_64 165 | installed = dmenu-manjaro-4.8-1-x86_64 166 | installed = dmidecode-3.2-1-x86_64 167 | installed = dmraid-1.0.0.rc16.3-11-x86_64 168 | installed = dnsmasq-2.80-1-x86_64 169 | installed = dnssec-anchors-20181003-1-any 170 | installed = docbook-xml-4.5-8-any 171 | installed = docbook-xsl-1.79.2-4-any 172 | installed = doom1-wad-1.9-2-any 173 | installed = doomretro-2.7.4-1-x86_64 174 | installed = dosfstools-4.1-2-x86_64 175 | installed = double-conversion-3.1.1-1-x86_64 176 | installed = doukutsu-1.2-6-x86_64 177 | installed = doxygen-1.8.14-1-x86_64 178 | installed = dssi-1.1.1-9-x86_64 179 | installed = dssi-vst-0.9.2-8-x86_64 180 | installed = dunst-1.3.2-1-x86_64 181 | installed = dvgrab-3.5-7-x86_64 182 | installed = e2fsprogs-1.44.4-1-x86_64 183 | installed = ebook-tools-0.2.2-5-x86_64 184 | installed = ecryptfs-utils-111-2-x86_64 185 | installed = editorconfig-core-c-0.12.2-1-x86_64 186 | installed = efibootmgr-16-1-x86_64 187 | installed = efivar-35-1-x86_64 188 | installed = egl-wayland-1.1.0-1-x86_64 189 | installed = eglexternalplatform-1.0+3+g7c8f8e2-1-any 190 | installed = eigen-3.3.5-3-any 191 | installed = electron-2.0.12-1-x86_64 192 | installed = elfutils-0.174-1-x86_64 193 | installed = elinks-0.13-20-x86_64 194 | installed = enca-1.19-2-x86_64 195 | installed = enchant-2.2.3-1-x86_64 196 | installed = engrampa-1.20.1-1-x86_64 197 | installed = engrampa-thunar-plugin-1.0-2-any 198 | installed = epson-inkjet-printer-workforce-635-nx625-series-1.0.1-9-x86_64 199 | installed = ethminer-bin-0.16.1-1-x86_64 200 | installed = evolution-data-server-3.30.2-2-x86_64 201 | installed = exfat-utils-1.3.0-1-x86_64 202 | installed = exiv2-0.26-2-x86_64 203 | installed = exo-0.12.3-1-x86_64 204 | installed = expac-9-1-x86_64 205 | installed = expat-2.2.6-1-x86_64 206 | installed = f2fs-tools-1.11.0-2-x86_64 207 | installed = faac-1.29.9.2-1-x86_64 208 | installed = faad2-2.8.8-1-x86_64 209 | installed = faba-icon-theme-1:4.3-1-any 210 | installed = fakeroot-1.23-1-x86_64 211 | installed = farstream-0.2.8-1-x86_64 212 | installed = ffmpeg-1:4.1-1-x86_64 213 | installed = ffmpegthumbnailer-2.2.0-2-x86_64 214 | installed = fftw-3.3.8-1-x86_64 215 | installed = figlet-2.2.5-3-x86_64 216 | installed = figlet-fonts-1.0-3-any 217 | installed = file-5.35-1-x86_64 218 | installed = filesystem-2018.9-1-x86_64 219 | installed = fim-0.5-1-x86_64 220 | installed = findutils-4.6.0-4-x86_64 221 | installed = firefox-63.0.1-1-x86_64 222 | installed = firefox-i18n-de-63.0.1-1-any 223 | installed = firefox-i18n-en-us-63.0.1-1-any 224 | installed = flac-1.3.2-1-x86_64 225 | installed = flex-2.6.4-2-x86_64 226 | installed = flowcanvas-0.7.1-5-x86_64 227 | installed = fltk-1.3.4.2-3-x86_64 228 | installed = fluidsynth-1.1.11-2-x86_64 229 | installed = folks-0.11.4+42+g5520ed9a-1-x86_64 230 | installed = fontconfig-2:2.13.1+12+g5f5ec56-1-x86_64 231 | installed = foomatic-db-engine-4:4.0.13-1-x86_64 232 | installed = fotaq-de-1.0-1-any 233 | installed = freealut-1.1.0-6-x86_64 234 | installed = freecad-0.17-8-x86_64 235 | installed = freeglut-3.0.0-2-x86_64 236 | installed = freeimage-3.18.0-2-x86_64 237 | installed = freemind-1.0.1-3-any 238 | installed = freeorion-0.4.8-1-x86_64 239 | installed = freetype2-2.9.1-1-x86_64 240 | installed = fribidi-1.0.5-1-x86_64 241 | installed = ftgl-2.1.3rc5-10-x86_64 242 | installed = fuse-common-3.2.6-1-x86_64 243 | installed = fuse2-2.9.8-1-x86_64 244 | installed = fzf-0.17.5-1-x86_64 245 | installed = galculator-gtk2-2.1.4-3-x86_64 246 | installed = gambas3-gb-gtk-3.11.4-3-x86_64 247 | installed = gambas3-gb-gtk-opengl-3.11.4-3-x86_64 248 | installed = gambas3-gb-image-3.11.4-3-x86_64 249 | installed = gambas3-gb-opengl-3.11.4-3-x86_64 250 | installed = gambas3-runtime-3.11.4-3-x86_64 251 | installed = gamin-0.1.10-9-x86_64 252 | installed = ganttproject-2.8.9-2-x86_64 253 | installed = garcon-0.6.1-1-x86_64 254 | installed = gawk-4.2.1-1-x86_64 255 | installed = gc-7.6.8-1-x86_64 256 | installed = gcab-1.0+2+gc0947f6-1-x86_64 257 | installed = gcc-8.2.1+20180831-1-x86_64 258 | installed = gcc-fortran-8.2.1+20180831-1-x86_64 259 | installed = gcc-libs-8.2.1+20180831-1-x86_64 260 | installed = gcc54-5.4.1-1-x86_64 261 | installed = gcc6-6.4.1-5-x86_64 262 | installed = gcc6-libs-6.4.1-5-x86_64 263 | installed = gcc7-7.3.1+20180814-1-x86_64 264 | installed = gcc7-libs-7.3.1+20180814-1-x86_64 265 | installed = gconf-3.2.6+11+g07808097-4-x86_64 266 | installed = gcr-3.28.0-4-x86_64 267 | installed = gd-2.2.5-1-x86_64 268 | installed = gdbm-1.18.1-1-x86_64 269 | installed = gdk-pixbuf2-2.38.0-1-x86_64 270 | installed = gegl-0.4.12-1-x86_64 271 | installed = gegl02-0.2.0-8-x86_64 272 | installed = geoclue2-2.5.1-1-x86_64 273 | installed = geocode-glib-3.26.0-1-x86_64 274 | installed = gettext-0.19.8.1-3-x86_64 275 | installed = gfbgraph-0.2.3+10+gbc03c1f-1-x86_64 276 | installed = ghostscript-9.25-4-x86_64 277 | installed = giblib-1.2.4-7-x86_64 278 | installed = giflib-5.1.4-1-x86_64 279 | installed = gifsicle-1.91-1-x86_64 280 | installed = gimp-2.10.8-1-x86_64 281 | installed = gimp-help-de-2.8.2-6-any 282 | installed = gimp-help-en-2.8.2-6-any 283 | installed = git-2.19.1-1-x86_64 284 | installed = gitflow-avh-1.11.0-1-any 285 | installed = gitflow-zshcompletion-avh-0.6.0-1-any 286 | installed = gitg-1:3.30.1-1-x86_64 287 | installed = gjs-2:1.54.3-1-x86_64 288 | installed = gksu-2.0.2-6-x86_64 289 | installed = gl2ps-1.4.0-1-x86_64 290 | installed = glade-3.22.1-2-x86_64 291 | installed = glew-2.1.0-1-x86_64 292 | installed = glib-networking-2.58.0-1-x86_64 293 | installed = glib2-2.58.1+67+g17519e039-1-x86_64 294 | installed = glibc-2.28-5-x86_64 295 | installed = glibmm-2.56.0-1-x86_64 296 | installed = glsof-2.4.1-2-x86_64 297 | installed = glu-9.0.0-5-x86_64 298 | installed = gmime-2.6.23+4+g91dcee38-2-x86_64 299 | installed = gmime3-3.2.2-1-x86_64 300 | installed = gmp-6.1.2-2-x86_64 301 | installed = gnome-autoar-0.2.3-1-x86_64 302 | installed = gnome-bluetooth-3.28.2-1-x86_64 303 | installed = gnome-desktop-1:3.30.2-1-x86_64 304 | installed = gnome-font-viewer-3.30.0-1-x86_64 305 | installed = gnome-icon-theme-3.12.0-4-any 306 | installed = gnome-icon-theme-symbolic-3.12.0-4-any 307 | installed = gnome-keyring-1:3.28.2-1-x86_64 308 | installed = gnome-maps-3.30.2.1-1-x86_64 309 | installed = gnome-menus-3.13.3+30+g510ef1c-1-x86_64 310 | installed = gnome-online-accounts-3.30.0-1-x86_64 311 | installed = gnome-panel-3.30.0-1-x86_64 312 | installed = gnome-session-3.30.1-1-x86_64 313 | installed = gnome-settings-daemon-3.30.1.2-1-x86_64 314 | installed = gnome-themes-extra-3.28-1-x86_64 315 | installed = gnu-free-fonts-20120503-4-any 316 | installed = gnupg-2.2.11-1-x86_64 317 | installed = gnutls-3.5.19-2-x86_64 318 | installed = go-2:1.11.2-1-x86_64 319 | installed = go-ipfs-0.4.17-1-x86_64 320 | installed = gobject-introspection-runtime-1.58.0+8+gfdaa3b1a-1-x86_64 321 | installed = gparted-0.32.0-1-x86_64 322 | installed = gperf-3.1-1-x86_64 323 | installed = gpgme-1.12.0-1-x86_64 324 | installed = gpm-1.20.7.r27.g1fd1941-1-x86_64 325 | installed = gptfdisk-1.0.4-1-x86_64 326 | installed = grantlee-5.1.0-1-x86_64 327 | installed = graphene-1.8.2-1-x86_64 328 | installed = graphite-1:1.3.12-1-x86_64 329 | installed = graphviz-2.40.1-13-x86_64 330 | installed = grep-3.1-2-x86_64 331 | installed = grilo-0.3.6-1-x86_64 332 | installed = groff-1.22.3-8-x86_64 333 | installed = grub-2.03.2-1-x86_64 334 | installed = gsettings-desktop-schemas-3.28.1-1-any 335 | installed = gsfonts-20180524-1-any 336 | installed = gsl-2.5-1-x86_64 337 | installed = gsm-1.0.18-1-x86_64 338 | installed = gssproxy-0.8.0-1-x86_64 339 | installed = gst-libav-1.14.4-1-x86_64 340 | installed = gst-plugins-bad-1.14.4-3-x86_64 341 | installed = gst-plugins-base-1.14.4-1-x86_64 342 | installed = gst-plugins-base-libs-1.14.4-1-x86_64 343 | installed = gst-plugins-good-1.14.4-1-x86_64 344 | installed = gst-plugins-ugly-1.14.4-1-x86_64 345 | installed = gstreamer-1.14.4-1-x86_64 346 | installed = gtk-engine-murrine-0.98.2-3-x86_64 347 | installed = gtk-theme-breath-5.9.0-1-any 348 | installed = gtk-update-icon-cache-3.24.1+33+g615fa7cfb6-0-x86_64 349 | installed = gtk-xfce-engine-2.10.1-1.1-x86_64 350 | installed = gtk2-2.24.32-1-x86_64 351 | installed = gtk3-3.24.1+33+g615fa7cfb6-0-x86_64 352 | installed = gtkglext-1.2.0-11-x86_64 353 | installed = gtkmm-2.24.5-2-x86_64 354 | installed = gtkmm3-3.24.0-1-x86_64 355 | installed = gtksourceview2-2.10.5-4-x86_64 356 | installed = gtksourceview3-3.24.9-2-x86_64 357 | installed = gtksourceview3-i386asm-20160807-1-any 358 | installed = gtkspell-2.0.16-7-x86_64 359 | installed = gtkspell3-3.0.9-3-x86_64 360 | installed = gts-0.7.6-5-x86_64 361 | installed = gufw-18.10.0-1-any 362 | installed = guile-2.2.4-1-x86_64 363 | installed = gvfs-1.38.1-1-x86_64 364 | installed = gvfs-afc-1.38.1-1-x86_64 365 | installed = gvfs-goa-1.38.1-1-x86_64 366 | installed = gvfs-google-1.38.1-1-x86_64 367 | installed = gvfs-gphoto2-1.38.1-1-x86_64 368 | installed = gvfs-mtp-1.38.1-1-x86_64 369 | installed = gvfs-nfs-1.38.1-1-x86_64 370 | installed = gvfs-smb-1.38.1-1-x86_64 371 | installed = gzip-1.9-2-x86_64 372 | installed = hacx-wad-1.2-1-any 373 | installed = harfbuzz-2.1.1-1-x86_64 374 | installed = harfbuzz-icu-2.1.1-1-x86_64 375 | installed = harmony-wad-1.1-2-any 376 | installed = haveged-1.9.4-3-x86_64 377 | installed = hdf5-1.10.4-1-x86_64 378 | installed = hdparm-9.57-1-x86_64 379 | installed = help2man-1.47.7-1-x86_64 380 | installed = heretic1-wad-1.2-1-any 381 | installed = hexen1-wad-1.1-1-any 382 | installed = hexer-1.0.4-1-x86_64 383 | installed = hicolor-icon-theme-0.17-1-any 384 | installed = hplip-1:3.18.6-2-x86_64 385 | installed = hspell-1.4-1-x86_64 386 | installed = htmlcxx-0.86-1-x86_64 387 | installed = htop-2.2.0-2-x86_64 388 | installed = http-parser-2.8.1-1-x86_64 389 | installed = hub-2.5.1-1-x86_64 390 | installed = hunspell-1.6.2-1-x86_64 391 | installed = hunspell-de-20161207-1-any 392 | installed = hunspell-en_AU-2018.04.16-5-any 393 | installed = hunspell-en_CA-2018.04.16-5-any 394 | installed = hunspell-en_GB-2018.04.16-5-any 395 | installed = hunspell-en_US-2018.04.16-5-any 396 | installed = hwids-20180518-1-any 397 | installed = hwinfo-21.58-1-x86_64 398 | installed = hwloc-1.11.11-1-x86_64 399 | installed = hyphen-2.8.8-2-x86_64 400 | installed = hyphen-de-20060120-4-any 401 | installed = hyphen-en-2.8.8-2-x86_64 402 | installed = i3-default-artwork-20180428-1-any 403 | installed = i3-gaps-4.16-1-x86_64 404 | installed = i3-help-20180110-1-any 405 | installed = i3-scripts-20180701-1-any 406 | installed = i3-scrot-2-1-any 407 | installed = i3blocks-1.4-6-x86_64 408 | installed = i3exit-20180529-1-any 409 | installed = i3lock-2.10-1-x86_64 410 | installed = i3status-manjaro-2.12-1-x86_64 411 | installed = iana-etc-20180913-1-any 412 | installed = icu-63.1-2-x86_64 413 | installed = iftop-1.0pre4-3-x86_64 414 | installed = ijs-0.35-1-x86_64 415 | installed = ilmbase-2.3.0-1-x86_64 416 | installed = imagemagick-7.0.8.14-1-x86_64 417 | installed = imlib2-1.5.1-1-x86_64 418 | installed = inetutils-1.9.4-6-x86_64 419 | installed = iniparser-4.1-1-x86_64 420 | installed = inkscape-0.92.3-6-x86_64 421 | installed = inotify-tools-3.20.1-1-x86_64 422 | installed = intel-tbb-2019-1-x86_64 423 | installed = intel-ucode-20180807.a-1-any 424 | installed = intltool-0.51.0-3-any 425 | installed = inxi-3.0.27-1-any 426 | installed = iproute2-4.19.0-1-x86_64 427 | installed = iptables-1:1.8.0-1-x86_64 428 | installed = iputils-20180629.f6aac8d-2-x86_64 429 | installed = ipw2100-fw-1.3-8-any 430 | installed = ipw2200-fw-3.1-6-any 431 | installed = ipython-6.5.0-2-any 432 | installed = irrlicht-1.8.4-1-x86_64 433 | installed = iscan-2.30.3.1-1-x86_64 434 | installed = iso-codes-3.79-1-any 435 | installed = isousb-1.5-3-any 436 | installed = iw-4.14-1-x86_64 437 | installed = jack2-dbus-1.9.12-6-x86_64 438 | installed = jansson-2.11-1-x86_64 439 | installed = jasper-2.0.14-1-x86_64 440 | installed = java-environment-common-3-1-any 441 | installed = java-runtime-common-3-1-any 442 | installed = jbig2dec-0.15-1-x86_64 443 | installed = jdk8-openjdk-8.u192-1-x86_64 444 | installed = jemalloc-1:5.1.0-1-x86_64 445 | installed = jfsutils-1.1.15-6-x86_64 446 | installed = jre8-openjdk-8.u192-1-x86_64 447 | installed = jre8-openjdk-headless-8.u192-1-x86_64 448 | installed = jrnl-1.9.8-1-any 449 | installed = js-24.2.0-4-x86_64 450 | installed = js52-52.9.0-1-x86_64 451 | installed = js60-60.2.2-1-x86_64 452 | installed = json-c-0.13.1-2-x86_64 453 | installed = json-glib-1.4.4-1-x86_64 454 | installed = jsoncpp-1.8.4-2-x86_64 455 | installed = jxrlib-0.2.1-3-x86_64 456 | installed = karchive-5.52.0-1-x86_64 457 | installed = kauth-5.52.0-1-x86_64 458 | installed = kbd-2.0.4-2-x86_64 459 | installed = kbookmarks-5.52.0-1-x86_64 460 | installed = kcmutils-5.52.0-1-x86_64 461 | installed = kcodecs-5.52.0-1-x86_64 462 | installed = kcompletion-5.52.0-1-x86_64 463 | installed = kconfig-5.52.0-1-x86_64 464 | installed = kconfigwidgets-5.52.0-1-x86_64 465 | installed = kcoreaddons-5.52.0-1-x86_64 466 | installed = kcrash-5.52.0-1-x86_64 467 | installed = kdbusaddons-5.52.0-1-x86_64 468 | installed = kdeclarative-5.52.0-1-x86_64 469 | installed = kdeconnect-1.3.3-1-x86_64 470 | installed = kded-5.52.0-1-x86_64 471 | installed = kdelibs4support-5.52.0-1-x86_64 472 | installed = kdevelop-5.3.0-1-x86_64 473 | installed = kemoticons-5.52.0-1-x86_64 474 | installed = keyutils-1.5.11-1-x86_64 475 | installed = kfilemetadata-5.52.0-1-x86_64 476 | installed = kglobalaccel-5.52.0-1-x86_64 477 | installed = kguiaddons-5.52.0-1-x86_64 478 | installed = ki18n-5.52.0-1-x86_64 479 | installed = kiconthemes-5.52.0-1-x86_64 480 | installed = kinit-5.52.0-1-x86_64 481 | installed = kio-5.52.0-1-x86_64 482 | installed = kitemmodels-5.52.0-1-x86_64 483 | installed = kitemviews-5.52.0-1-x86_64 484 | installed = kjobwidgets-5.52.0-1-x86_64 485 | installed = kmod-25-1-x86_64 486 | installed = knewstuff-5.52.0-1-x86_64 487 | installed = knotifications-5.52.0-1-x86_64 488 | installed = knotifyconfig-5.52.0-1-x86_64 489 | installed = kpackage-5.52.0-1-x86_64 490 | installed = kparts-5.52.0-1-x86_64 491 | installed = krb5-1.16.1-1-x86_64 492 | installed = kservice-5.52.0-1-x86_64 493 | installed = ktexteditor-5.52.0-1-x86_64 494 | installed = ktextwidgets-5.52.0-1-x86_64 495 | installed = kunitconversion-5.52.0-1-x86_64 496 | installed = kwallet-5.52.0-1-x86_64 497 | installed = kwayland-5.52.0-1-x86_64 498 | installed = kwidgetsaddons-5.52.0-1-x86_64 499 | installed = kwindowsystem-5.52.0-1-x86_64 500 | installed = kxmlgui-5.52.0-1-x86_64 501 | installed = kyotocabinet-1.2.76-6-x86_64 502 | installed = l-smash-2.14.5-1-x86_64 503 | installed = ladish-1-2-x86_64 504 | installed = laditools-1.1.0-1-any 505 | installed = ladspa-1.13-7-x86_64 506 | installed = lame-3.100-2-x86_64 507 | installed = lapack-3.8.0-2-x86_64 508 | installed = lcms-1.19-7-x86_64 509 | installed = lcms2-2.9-1-x86_64 510 | installed = ldb-1:1.3.6-1-x86_64 511 | installed = ldns-1.7.0-4-x86_64 512 | installed = lensfun-0.3.2-7-x86_64 513 | installed = less-530-1-x86_64 514 | installed = lib32-acl-2.2.53-1-x86_64 515 | installed = lib32-alsa-lib-1.1.7-1-x86_64 516 | installed = lib32-alsa-plugins-1.1.7-1-x86_64 517 | installed = lib32-atk-2.30.0-1-x86_64 518 | installed = lib32-attr-2.4.48-1-x86_64 519 | installed = lib32-bzip2-1.0.6-3-x86_64 520 | installed = lib32-cairo-1.16.0-1-x86_64 521 | installed = lib32-db-5.3.28-4-x86_64 522 | installed = lib32-dbus-1.12.10-1-x86_64 523 | installed = lib32-e2fsprogs-1.44.4-1-x86_64 524 | installed = lib32-expat-2.2.6-1-x86_64 525 | installed = lib32-flac-1.3.2-1-x86_64 526 | installed = lib32-flex-2.6.4-1-x86_64 527 | installed = lib32-fontconfig-2:2.13.1+12+g5f5ec56-1-x86_64 528 | installed = lib32-freetype2-2.9.1-1-x86_64 529 | installed = lib32-fribidi-1.0.5-1-x86_64 530 | installed = lib32-gcc-libs-8.2.1+20180831-1-x86_64 531 | installed = lib32-gdk-pixbuf2-2.38.0-1-x86_64 532 | installed = lib32-gettext-0.19.8.1-1-x86_64 533 | installed = lib32-glew-2.1.0-1-x86_64 534 | installed = lib32-glib2-2.58.1-1-x86_64 535 | installed = lib32-glibc-2.28-5-x86_64 536 | installed = lib32-glu-9.0.0-4-x86_64 537 | installed = lib32-gmp-6.1.2-1-x86_64 538 | installed = lib32-gnutls-3.5.19-2-x86_64 539 | installed = lib32-gst-plugins-base-libs-1.14.4-1-x86_64 540 | installed = lib32-gstreamer-1.14.4-1-x86_64 541 | installed = lib32-gtk2-2.24.32-1-x86_64 542 | installed = lib32-harfbuzz-2.1.1-1-x86_64 543 | installed = lib32-icu-63.1-2-x86_64 544 | installed = lib32-jack-0.125.0-2-x86_64 545 | installed = lib32-keyutils-1.5.11-1-x86_64 546 | installed = lib32-krb5-1.16.1-1-x86_64 547 | installed = lib32-lcms2-2.9-1-x86_64 548 | installed = lib32-libasyncns-0.8+3+g68cd5af-1-x86_64 549 | installed = lib32-libcanberra-0.30+2+gc0620e4-1-x86_64 550 | installed = lib32-libcanberra-pulse-0.30+2+gc0620e4-1-x86_64 551 | installed = lib32-libcap-2.25-1-x86_64 552 | installed = lib32-libcups-2.2.9-1-x86_64 553 | installed = lib32-libdatrie-0.2.12-1-x86_64 554 | installed = lib32-libdrm-2.4.96-1-x86_64 555 | installed = lib32-libelf-0.174-1-x86_64 556 | installed = lib32-libffi-3.2.1-2-x86_64 557 | installed = lib32-libgcrypt-1.8.4-1-x86_64 558 | installed = lib32-libglvnd-1.1.0-1-x86_64 559 | installed = lib32-libgpg-error-1.32-1-x86_64 560 | installed = lib32-libice-1.0.9-3-x86_64 561 | installed = lib32-libidn-1.35-1-x86_64 562 | installed = lib32-libjpeg-turbo-2.0.0-1-x86_64 563 | installed = lib32-libldap-2.4.46-1-x86_64 564 | installed = lib32-libltdl-2.4.6+40+g6ca5e224-4-x86_64 565 | installed = lib32-libmng-2.0.3-2-x86_64 566 | installed = lib32-libnl-3.4.0-1-x86_64 567 | installed = lib32-libogg-1.3.3-2-x86_64 568 | installed = lib32-libpcap-1.9.0-1-x86_64 569 | installed = lib32-libpciaccess-0.14-1-x86_64 570 | installed = lib32-libpng-1.6.35-1-x86_64 571 | installed = lib32-libpng12-1.2.59-1-x86_64 572 | installed = lib32-libpulse-12.2-1-x86_64 573 | installed = lib32-libsamplerate-0.1.9-1-x86_64 574 | installed = lib32-libsm-1.2.3-1-x86_64 575 | installed = lib32-libsndfile-1.0.28-1-x86_64 576 | installed = lib32-libtasn1-4.13-1-x86_64 577 | installed = lib32-libthai-0.1.27-1-x86_64 578 | installed = lib32-libtiff-4.0.9-1-x86_64 579 | installed = lib32-libtxc_dxtn-1.0.1-5-x86_64 580 | installed = lib32-libunwind-1.2.1-1-x86_64 581 | installed = lib32-libusb-1.0.22-1-x86_64 582 | installed = lib32-libvorbis-1.3.6-1-x86_64 583 | installed = lib32-libx11-1.6.7-1-x86_64 584 | installed = lib32-libxau-1.0.8-2-x86_64 585 | installed = lib32-libxcb-1.13.1-1-x86_64 586 | installed = lib32-libxcomposite-0.4.4-3-x86_64 587 | installed = lib32-libxcursor-1.1.15-1-x86_64 588 | installed = lib32-libxdamage-1.1.4-3-x86_64 589 | installed = lib32-libxdmcp-1.1.2-2-x86_64 590 | installed = lib32-libxext-1.3.3-2-x86_64 591 | installed = lib32-libxfixes-5.0.3-1-x86_64 592 | installed = lib32-libxft-2.3.2-2-x86_64 593 | installed = lib32-libxi-1.7.9-1-x86_64 594 | installed = lib32-libxinerama-1.1.4-1-x86_64 595 | installed = lib32-libxml2-2.9.8-5-x86_64 596 | installed = lib32-libxmu-1.1.2-2-x86_64 597 | installed = lib32-libxrandr-1.5.1-1-x86_64 598 | installed = lib32-libxrender-0.9.10-1-x86_64 599 | installed = lib32-libxshmfence-1.3-1-x86_64 600 | installed = lib32-libxss-1.2.3-1-x86_64 601 | installed = lib32-libxt-1.1.5-2-x86_64 602 | installed = lib32-libxtst-1.2.3-1-x86_64 603 | installed = lib32-libxv-1.0.11-1-x86_64 604 | installed = lib32-libxxf86vm-1.1.4-2-x86_64 605 | installed = lib32-llvm-libs-7.0.0-1-x86_64 606 | installed = lib32-lm_sensors-3.4.0-1-x86_64 607 | installed = lib32-mesa-18.2.5-0-x86_64 608 | installed = lib32-mesa-demos-8.4.0-1-x86_64 609 | installed = lib32-ncurses-6.1-3-x86_64 610 | installed = lib32-nettle-3.4-1-x86_64 611 | installed = lib32-nvidia-utils-1:410.73-1-x86_64 612 | installed = lib32-openssl-1:1.1.1-1-x86_64 613 | installed = lib32-orc-0.4.28-1-x86_64 614 | installed = lib32-p11-kit-0.23.14-1-x86_64 615 | installed = lib32-pango-1.42.4-1-x86_64 616 | installed = lib32-pcre-8.42-1-x86_64 617 | installed = lib32-pixman-0.34.0-1-x86_64 618 | installed = lib32-portaudio-190600_20161030-1-x86_64 619 | installed = lib32-primus-20151110-4-x86_64 620 | installed = lib32-qt4-4.8.7-13-x86_64 621 | installed = lib32-readline-7.0.005-1-x86_64 622 | installed = lib32-sdl2-2.0.9-1-x86_64 623 | installed = lib32-sqlite-3.25.2-1-x86_64 624 | installed = lib32-systemd-239.6-1-x86_64 625 | installed = lib32-tdb-1.3.16-1-x86_64 626 | installed = lib32-util-linux-2.33-1-x86_64 627 | installed = lib32-wayland-1.16.0-1-x86_64 628 | installed = lib32-xz-5.2.4-1-x86_64 629 | installed = lib32-zlib-1.2.11-1-x86_64 630 | installed = libabw-0.1.2-1-x86_64 631 | installed = libaec-1.0.2-1-x86_64 632 | installed = libaio-0.3.111-2-x86_64 633 | installed = libarchive-3.3.3-1-x86_64 634 | installed = libart-lgpl-2.3.21-4-x86_64 635 | installed = libass-0.14.0-1-x86_64 636 | installed = libassuan-2.5.1-1-x86_64 637 | installed = libasyncns-0.8+3+g68cd5af-1-x86_64 638 | installed = libatasmart-0.19-4-x86_64 639 | installed = libatomic_ops-7.6.6-1-x86_64 640 | installed = libavc1394-0.5.4-3-x86_64 641 | installed = libblockdev-2.20-1-x86_64 642 | installed = libbluray-1.0.2-2-x86_64 643 | installed = libbs2b-3.1.0-6-x86_64 644 | installed = libbsd-0.9.1-1-x86_64 645 | installed = libburn-1.5.0-1-x86_64 646 | installed = libbytesize-1.4-1-x86_64 647 | installed = libcaca-0.99.beta19-1-x86_64 648 | installed = libcanberra-0.30+2+gc0620e4-1-x86_64 649 | installed = libcanberra-pulse-0.30+2+gc0620e4-1-x86_64 650 | installed = libcap-2.25-2-x86_64 651 | installed = libcap-ng-0.7.9-1-x86_64 652 | installed = libcddb-1.3.2-5-x86_64 653 | installed = libcdio-2.0.0-1-x86_64 654 | installed = libcdio-paranoia-10.2+0.94+2-2-x86_64 655 | installed = libcdr-0.1.4-5-x86_64 656 | installed = libchamplain-0.12.16-1-x86_64 657 | installed = libcmis-0.5.1-10-x86_64 658 | installed = libconfig-1.7.2-1-x86_64 659 | installed = libcroco-0.6.12+4+g9ad7287-1-x86_64 660 | installed = libcups-2.2.9-1-x86_64 661 | installed = libdaemon-0.14-4-x86_64 662 | installed = libdatrie-0.2.12-1-x86_64 663 | installed = libdbusmenu-qt5-0.9.3+16.04.20160218-1-x86_64 664 | installed = libdc1394-2.2.5-1-x86_64 665 | installed = libdca-0.0.6-1-x86_64 666 | installed = libde265-1.0.3-1-x86_64 667 | installed = libdmx-1.1.4-1-x86_64 668 | installed = libdrm-2.4.96-1-x86_64 669 | installed = libdv-1.0.0-7-x86_64 670 | installed = libdvbpsi-1:1.3.2-1-x86_64 671 | installed = libdvdcss-1.4.2-1-x86_64 672 | installed = libdvdnav-6.0.0-1-x86_64 673 | installed = libdvdread-6.0.0-1-x86_64 674 | installed = libe-book-0.1.3-4-x86_64 675 | installed = libebml-1.3.6-1-x86_64 676 | installed = libebur128-1.2.4-1-x86_64 677 | installed = libedit-20180525_3.1-1-x86_64 678 | installed = libelf-0.174-1-x86_64 679 | installed = libepoxy-1.5.3-1-x86_64 680 | installed = libepubgen-0.1.1-1-x86_64 681 | installed = libetonyek-0.1.8-1-x86_64 682 | installed = libev-4.24-1-x86_64 683 | installed = libevdev-1.6.0-1-x86_64 684 | installed = libevent-2.1.8-2-x86_64 685 | installed = libexif-0.6.21-3-x86_64 686 | installed = libexttextcat-3.4.5-1-x86_64 687 | installed = libfakekey-0.3-1-x86_64 688 | installed = libfbclient-2.5.8.27089-3-x86_64 689 | installed = libfdk-aac-0.1.6-1-x86_64 690 | installed = libffado-2.4.1-2-x86_64 691 | installed = libffi-3.2.1-3-x86_64 692 | installed = libfontenc-1.1.3-2-x86_64 693 | installed = libfreehand-0.1.2-1-x86_64 694 | installed = libftdi-1.4-2-x86_64 695 | installed = libgadu-1.12.2-6-x86_64 696 | installed = libgcrypt-1.8.4-1-x86_64 697 | installed = libgdata-0.17.9-1-x86_64 698 | installed = libgdiplus-5.6-1-x86_64 699 | installed = libgdm-3.30.2-1-x86_64 700 | installed = libgee-0.20.1-2-x86_64 701 | installed = libgexiv2-0.10.8-2-x86_64 702 | installed = libgit2-1:0.27.7-1-x86_64 703 | installed = libgit2-glib-0.27.7-1-x86_64 704 | installed = libgksu-2.0.12-8-x86_64 705 | installed = libglade-2.6.4-6-x86_64 706 | installed = libglademm-2.6.7-5-x86_64 707 | installed = libglvnd-1.1.0-1-x86_64 708 | installed = libgme-0.6.2-1-x86_64 709 | installed = libgnome-keyring-3.12.0-3-x86_64 710 | installed = libgnomecanvas-2.30.3-4-x86_64 711 | installed = libgnomecanvasmm-2.26.0-4-x86_64 712 | installed = libgpg-error-1.32-1-x86_64 713 | installed = libgphoto2-2.5.19-1-x86_64 714 | installed = libgpod-0.8.3-5-x86_64 715 | installed = libgsf-1.14.44-1-x86_64 716 | installed = libgtop-2.38.0+13+gcab8791f-1-x86_64 717 | installed = libgudev-232-1-x86_64 718 | installed = libgusb-0.3.0-1-x86_64 719 | installed = libgweather-3.28.2-1-x86_64 720 | installed = libheif-1.3.2-2-x86_64 721 | installed = libibus-1.5.19-1-x86_64 722 | installed = libical-3.0.4-2-x86_64 723 | installed = libice-1.0.9-2-x86_64 724 | installed = libid3tag-0.15.1b-9-x86_64 725 | installed = libidn-1.35-1-x86_64 726 | installed = libidn2-2.0.5-1-x86_64 727 | installed = libiec61883-1.2.0-5-x86_64 728 | installed = libieee1284-0.2.11-7-x86_64 729 | installed = libimobiledevice-1.2.0+66+g5a85432-2-x86_64 730 | installed = libinput-1.12.3-1-x86_64 731 | installed = libisofs-1.5.0-1-x86_64 732 | installed = libixion-0.14.1-1-x86_64 733 | installed = libjpeg-turbo-2.0.0-1-x86_64 734 | installed = libkate-0.4.1-6-x86_64 735 | installed = libkeybinder3-0.3.2-1-x86_64 736 | installed = libkomparediff2-18.08.3-1-x86_64 737 | installed = libksba-1.3.5-1-x86_64 738 | installed = libksysguard-5.14.3-1-x86_64 739 | installed = liblangtag-0.6.2-1-x86_64 740 | installed = libldap-2.4.46-2-x86_64 741 | installed = liblo-1:0.29-2-x86_64 742 | installed = liblouis-3.7.0-1-x86_64 743 | installed = liblqr-0.4.2-2-x86_64 744 | installed = liblrdf-0.6.1-2-x86_64 745 | installed = libmad-0.15.1b-8-x86_64 746 | installed = libmagick-7.0.8.14-1-x86_64 747 | installed = libmagick6-6.9.10.14-1-x86_64 748 | installed = libmanette-0.2.1-1-x86_64 749 | installed = libmariadbclient-10.1.37-1-x86_64 750 | installed = libmatroska-1.4.9-1-x86_64 751 | installed = libmbim-1.16.2-1-x86_64 752 | installed = libmicrohttpd-0.9.60-1-x86_64 753 | installed = libmikmod-3.3.11.1-1-x86_64 754 | installed = libmm-glib-1.8.2-1-x86_64 755 | installed = libmms-0.6.4-2-x86_64 756 | installed = libmng-2.0.3-2-x86_64 757 | installed = libmnl-1.0.4-2-x86_64 758 | installed = libmodplug-0.8.9.0-1-x86_64 759 | installed = libmp4v2-2.0.0-5-x86_64 760 | installed = libmpc-1.1.0-1-x86_64 761 | installed = libmpcdec-1:0.1+r475-1-x86_64 762 | installed = libmpd-11.8.17-4-x86_64 763 | installed = libmpdclient-2.16-1-x86_64 764 | installed = libmpeg2-0.5.1-6-x86_64 765 | installed = libmspub-0.1.4-4-x86_64 766 | installed = libmtp-1.1.16-1-x86_64 767 | installed = libmwaw-0.3.14-1-x86_64 768 | installed = libmypaint-1.3.0-6-x86_64 769 | installed = libnautilus-extension-3.30.3-1-x86_64 770 | installed = libndp-1.7-1-x86_64 771 | installed = libnetfilter_conntrack-1.0.7-1-x86_64 772 | installed = libnewt-0.52.20-2-x86_64 773 | installed = libnfnetlink-1.0.1-3-x86_64 774 | installed = libnfs-3.0.0-2-x86_64 775 | installed = libnftnl-1.1.1-1-x86_64 776 | installed = libnghttp2-1.34.0-1-x86_64 777 | installed = libnice-0.1.14+70+gfb2f1f7-1-x86_64 778 | installed = libnl-3.4.0-1-x86_64 779 | installed = libnm-1.14.5dev+17+gba83251bb-1-x86_64 780 | installed = libnm-glib-1.14.5dev+17+gba83251bb-1-x86_64 781 | installed = libnm-gtk-1.8.19dev+21+geebf7f95-1-x86_64 782 | installed = libnma-1.8.19dev+21+geebf7f95-1-x86_64 783 | installed = libnotify-0.7.7-1-x86_64 784 | installed = libnsl-1.2.0-1-x86_64 785 | installed = liboauth-1.0.3+9+g11e9461-2-x86_64 786 | installed = libodfgen-0.1.7-1-x86_64 787 | installed = libofa-0.9.3-7-x86_64 788 | installed = libogg-1.3.3-3-x86_64 789 | installed = libomxil-bellagio-0.9.3-2-x86_64 790 | installed = libopenshot-0.2.2-1-x86_64 791 | installed = libopenshot-audio-0.1.7-1-x86_64 792 | installed = liborcus-0.14.1-1-x86_64 793 | installed = libpagemaker-0.0.4-1-x86_64 794 | installed = libpaper-1.1.24-10-x86_64 795 | installed = libpcap-1.9.0-1-x86_64 796 | installed = libpciaccess-0.14-1-x86_64 797 | installed = libpeas-1.22.0-3-x86_64 798 | installed = libpgm-5.2.122-3-x86_64 799 | installed = libphonenumber-8.9.12-3-x86_64 800 | installed = libpipeline-1.5.0-1-x86_64 801 | installed = libplacebo-0.5.0-1-x86_64 802 | installed = libplist-2.0.0+11+gec9ba8b-2-x86_64 803 | installed = libpng-1.6.35-1-x86_64 804 | installed = libproxy-0.4.15-8-x86_64 805 | installed = libpsl-0.20.2-1-x86_64 806 | installed = libpulse-12.2-2-x86_64 807 | installed = libpurple-2.13.0-5-x86_64 808 | installed = libqmi-1.20.2-1-x86_64 809 | installed = libquicktime-1.2.4-19-x86_64 810 | installed = libquvi-0.9.4-5-x86_64 811 | installed = libquvi-scripts-0.9.20131130-4-any 812 | installed = libqxp-0.0.1-4-x86_64 813 | installed = libraqm-0.5.0-1-x86_64 814 | installed = libraw-0.19.0-1-x86_64 815 | installed = libraw1394-2.1.2-1-x86_64 816 | installed = libreoffice-still-6.0.7-1-x86_64 817 | installed = libreoffice-still-de-6.0.7-1-any 818 | installed = libreoffice-still-en-gb-6.0.7-1-any 819 | installed = librevenge-0.0.4-2-x86_64 820 | installed = librsvg-2:2.44.8-1-x86_64 821 | installed = libsamplerate-0.1.9-1-x86_64 822 | installed = libsasl-2.1.26-13-x86_64 823 | installed = libseccomp-2.3.3-1-x86_64 824 | installed = libsecret-0.18.6-1-x86_64 825 | installed = libshout-1:2.4.1-4-x86_64 826 | installed = libsidplay-1.36.59-8-x86_64 827 | installed = libsigc++-2.10.1-1-x86_64 828 | installed = libsigsegv-2.12-1-x86_64 829 | installed = libsm-1.2.3-1-x86_64 830 | installed = libsndfile-1.0.28-1-x86_64 831 | installed = libsodium-1.0.16-1-x86_64 832 | installed = libsoup-2.64.2-1-x86_64 833 | installed = libsoxr-0.1.3-1-x86_64 834 | installed = libspectre-0.2.8-1-x86_64 835 | installed = libspiro-1:0.5.20150702-2-x86_64 836 | installed = libspnav-0.2.3-2-x86_64 837 | installed = libsrtp-1:2.2.0-1-x86_64 838 | installed = libssh-0.8.5-1-x86_64 839 | installed = libssh2-1.8.0-2-x86_64 840 | installed = libstaroffice-0.0.6-1-x86_64 841 | installed = libstdc++5-3.3.6-6-x86_64 842 | installed = libstemmer-0+337-3-x86_64 843 | installed = libsynctex-2018.47465-5-x86_64 844 | installed = libsystemd-239.6-1-x86_64 845 | installed = libtar-1.2.20-4-x86_64 846 | installed = libtasn1-4.13-1-x86_64 847 | installed = libteam-1.27-2-x86_64 848 | installed = libtermkey-0.20-2-x86_64 849 | installed = libthai-0.1.28-1-x86_64 850 | installed = libtheora-1.1.1-4-x86_64 851 | installed = libtiff-4.0.9-2-x86_64 852 | installed = libtiger-0.3.4-5-x86_64 853 | installed = libtirpc-1.1.4-1-x86_64 854 | installed = libtommath-1.0.1-1-x86_64 855 | installed = libtool-2.4.6+42+gb88cebd5-2-x86_64 856 | installed = libtxc_dxtn-1.0.1-6-x86_64 857 | installed = libunique-1.1.6-7-x86_64 858 | installed = libunistring-0.9.10-1-x86_64 859 | installed = libunwind-1.2.1-1-x86_64 860 | installed = libupnp-1.6.25-1-x86_64 861 | installed = libusb-1.0.22-1-x86_64 862 | installed = libusb-compat-0.1.5-2-x86_64 863 | installed = libusbmuxd-1.0.10+13+gc724e70-1-x86_64 864 | installed = libutempter-1.1.6-3-x86_64 865 | installed = libutf8proc-2.2.0-1-x86_64 866 | installed = libutil-linux-2.33-2-x86_64 867 | installed = libuv-1.23.2-1-x86_64 868 | installed = libva-2.3.0-1-x86_64 869 | installed = libvdpau-1.1.1+3+ga21bf7a-1-x86_64 870 | installed = libvisio-0.1.6-5-x86_64 871 | installed = libvisual-0.4.0-7-x86_64 872 | installed = libvoikko-4.2-1-x86_64 873 | installed = libvorbis-1.3.6-1-x86_64 874 | installed = libvpx-1.7.0-1-x86_64 875 | installed = libvterm-0.1.git1.c4317a6-3-x86_64 876 | installed = libwacom-0.31-1-x86_64 877 | installed = libwbclient-4.8.5-1-x86_64 878 | installed = libwebp-1.0.0-1-x86_64 879 | installed = libwmf-0.2.8.4-14-x86_64 880 | installed = libwnck-2.31.0-2-x86_64 881 | installed = libwnck3-3.30.0-1-x86_64 882 | installed = libwpd-0.10.2-1-x86_64 883 | installed = libwpg-0.3.2-1-x86_64 884 | installed = libwps-0.4.10-1-x86_64 885 | installed = libx11-1.6.7-1-x86_64 886 | installed = libx86emu-1.12-1-x86_64 887 | installed = libxau-1.0.8-3-x86_64 888 | installed = libxaw-1.0.13-2-x86_64 889 | installed = libxcb-1.13.1-1-x86_64 890 | installed = libxcomposite-0.4.4-3-x86_64 891 | installed = libxcursor-1.1.15-1-x86_64 892 | installed = libxdamage-1.1.4-3-x86_64 893 | installed = libxdg-basedir-1.2.0-4-x86_64 894 | installed = libxdmcp-1.1.2-2-x86_64 895 | installed = libxext-1.3.3-2-x86_64 896 | installed = libxfce4ui-4.12.1-2-x86_64 897 | installed = libxfce4util-4.13.2-1-x86_64 898 | installed = libxfixes-5.0.3-2-x86_64 899 | installed = libxfont-1.5.3-2-x86_64 900 | installed = libxfont2-2.0.3-1-x86_64 901 | installed = libxft-2.3.2-2-x86_64 902 | installed = libxi-1.7.9-1-x86_64 903 | installed = libxinerama-1.1.4-1-x86_64 904 | installed = libxkbcommon-0.8.2-1-x86_64 905 | installed = libxkbcommon-x11-0.8.2-1-x86_64 906 | installed = libxkbfile-1.0.9-2-x86_64 907 | installed = libxklavier-5.4-2-x86_64 908 | installed = libxml++-3.0.1+4+g2af973f-2-x86_64 909 | installed = libxml2-2.9.8-6-x86_64 910 | installed = libxmu-1.1.2-2-x86_64 911 | installed = libxpm-3.5.12-1-x86_64 912 | installed = libxrandr-1.5.1-2-x86_64 913 | installed = libxrender-0.9.10-1-x86_64 914 | installed = libxres-1.2.0-1-x86_64 915 | installed = libxshmfence-1.3-1-x86_64 916 | installed = libxslt-1.1.32+3+g32c88216-1-x86_64 917 | installed = libxss-1.2.3-1-x86_64 918 | installed = libxt-1.1.5-2-x86_64 919 | installed = libxtst-1.2.3-1-x86_64 920 | installed = libxv-1.0.11-1-x86_64 921 | installed = libxvmc-1.0.10-1-x86_64 922 | installed = libxxf86dga-1.1.4-2-x86_64 923 | installed = libxxf86misc-1.0.4-1-x86_64 924 | installed = libxxf86vm-1.1.4-2-x86_64 925 | installed = libyaml-0.2.1-1-x86_64 926 | installed = libzip-1.5.1-1-x86_64 927 | installed = libzmf-0.0.2-5-x86_64 928 | installed = licenses-20181104-1-any 929 | installed = light-locker-1.8.0-1-x86_64 930 | installed = lightdm-1:1.28.0-1-x86_64 931 | installed = lightdm-gtk-greeter-1:2.0.6-1-x86_64 932 | installed = lightdm-gtk-greeter-settings-1.2.2-3-any 933 | installed = lilv-0.24.4-1-x86_64 934 | installed = links-2.17-1-x86_64 935 | installed = linux-api-headers-4.17.11-1-any 936 | installed = linux-firmware-20181026.1cb4e51-0.1-any 937 | installed = linux419-4.19.2-1-x86_64 938 | installed = linux419-bbswitch-0.8-2-x86_64 939 | installed = linux419-nvidia-1:410.73-2-x86_64 940 | installed = linux419-r8168-8.045.08-2-x86_64 941 | installed = lirc-1:0.10.1-2-x86_64 942 | installed = llvm-7.0.0-1-x86_64 943 | installed = llvm-libs-7.0.0-1-x86_64 944 | installed = lm_sensors-3.4.0+5176+dcf23676-1-x86_64 945 | installed = lmdb-0.9.22-1-x86_64 946 | installed = log4cplus-2.0.2-1-x86_64 947 | installed = logrotate-3.14.0-1-x86_64 948 | installed = lpsolve-5.5.2.5-2-x86_64 949 | installed = lsb-release-1.4-12-any 950 | installed = lshw-B.02.18-2-x86_64 951 | installed = lsof-4.91-1-x86_64 952 | installed = lua-5.3.5-1-x86_64 953 | installed = lua51-5.1.5-7-x86_64 954 | installed = lua52-5.2.4-3-x86_64 955 | installed = lua52-bitop-1.0.2-8-x86_64 956 | installed = lua52-expat-1.3.0-4-x86_64 957 | installed = lua52-lpeg-1.0.1-2-x86_64 958 | installed = lua52-luajson-1.3.4-1-any 959 | installed = lua52-socket-20160311-1-x86_64 960 | installed = luajit-2.0.5-1-x86_64 961 | installed = lure-1.1-3-any 962 | installed = lv2-1.14.0-3-x86_64 963 | installed = lvm2-2.02.182-1-x86_64 964 | installed = lz4-1:1.8.3-1-x86_64 965 | installed = lzo-2.10-2-x86_64 966 | installed = m4-1.4.18-2-x86_64 967 | installed = mailcap-2.1.48+14+g5811758-1-any 968 | installed = make-4.2.1-3-x86_64 969 | installed = man-db-2.8.4-1-x86_64 970 | installed = man-pages-4.16-2-any 971 | installed = man-pages-de-2.9-1-any 972 | installed = manjaro-alsa-2012.11-1-x86_64 973 | installed = manjaro-base-skel-20171029-3-any 974 | installed = manjaro-browser-settings-20181104-1-any 975 | installed = manjaro-documentation-en-20181009-1-any 976 | installed = manjaro-firmware-20160419-1-any 977 | installed = manjaro-hello-0.6.1-1-any 978 | installed = manjaro-hotfixes-2018.08-6-any 979 | installed = manjaro-i3-settings-20181031-1-any 980 | installed = manjaro-icons-20181011-1-any 981 | installed = manjaro-keyring-20180607-1-any 982 | installed = manjaro-pulse-2012.11-1-x86_64 983 | installed = manjaro-release-18.0.0-1.1-any 984 | installed = manjaro-settings-manager-0.5.5-2-x86_64 985 | installed = manjaro-settings-manager-notifier-0.5.5-2-x86_64 986 | installed = manjaro-system-20180828-2-any 987 | installed = manjaro-wallpapers-17.0-1.3-1-any 988 | installed = mariadb-10.1.37-1-x86_64 989 | installed = mariadb-clients-10.1.37-1-x86_64 990 | installed = maven-3.6.0-1-any 991 | installed = mc-4.8.21-1-x86_64 992 | installed = mdadm-4.0-1-x86_64 993 | installed = med-3.2.0-5-x86_64 994 | installed = media-player-info-23-1-any 995 | installed = memtest86+-5.01-2-any 996 | installed = menulibre-2.2.0-2-any 997 | installed = mesa-18.2.5-0-x86_64 998 | installed = mesa-demos-8.4.0-1-x86_64 999 | installed = metacity-3.30.1-1-x86_64 1000 | installed = metis-5.1.0.p3-1-x86_64 1001 | installed = mhwd-0.6.3-1-x86_64 1002 | installed = mhwd-amdgpu-1.2.1-1-any 1003 | installed = mhwd-ati-7.7.0-1-any 1004 | installed = mhwd-catalyst-1:15.201.1151-2-any 1005 | installed = mhwd-db-0.6.3-4-x86_64 1006 | installed = mhwd-nvidia-1:410.73-1-any 1007 | installed = mhwd-nvidia-304xx-1:304.137-1-any 1008 | installed = mhwd-nvidia-340xx-340.107-1-any 1009 | installed = mhwd-nvidia-390xx-390.87-1-any 1010 | installed = mhwd-tui-0.4-1-any 1011 | installed = minetest-common-0.4.17.1-1-x86_64 1012 | installed = minizip-1:1.2.11-3-x86_64 1013 | installed = mjpegtools-2.1.0-3-x86_64 1014 | installed = mkinitcpio-25-1-any 1015 | installed = mkinitcpio-busybox-1.29.3-1-x86_64 1016 | installed = mkinitcpio-openswap-0.1.0-2-any 1017 | installed = mlocate-0.26.git.20170220-1-x86_64 1018 | installed = mlt-6.10.0-1.2-x86_64 1019 | installed = mlt-python-bindings-6.10.0-1.2-x86_64 1020 | installed = mobile-broadband-provider-info-20170310-1-any 1021 | installed = moc-1:2.5.2-2-x86_64 1022 | installed = modemmanager-1.8.2-1-x86_64 1023 | installed = moka-icon-theme-5.4.0-1-any 1024 | installed = mono-5.16.0.179-1-x86_64 1025 | installed = mozilla-common-1.4-5-any 1026 | installed = mpfr-4.0.1-1-x86_64 1027 | installed = mpg123-1.25.10-1-x86_64 1028 | installed = mplayer-38101-2-x86_64 1029 | installed = msgpack-c-3.1.1-1-x86_64 1030 | installed = mtdev-1.1.5-2-x86_64 1031 | installed = mtpfs-1.1-3-x86_64 1032 | installed = mugshot-0.4.1-1-any 1033 | installed = musl-1.1.20-1-x86_64 1034 | installed = mutagen-1.41.1-1-any 1035 | installed = mypaint-brushes-1.3.0-2-any 1036 | installed = namcap-3.2.8-3-any 1037 | installed = nano-3.1-1-x86_64 1038 | installed = nautilus-3.30.3-1-x86_64 1039 | installed = nautilus-sendto-3.8.6+14+ge8a3604-1-x86_64 1040 | installed = ncurses-6.1-4-x86_64 1041 | installed = ndctl-63-1-x86_64 1042 | installed = neofetch-5.0.0-1-any 1043 | installed = neomutt-20180716-4-x86_64 1044 | installed = neon-0.30.2-3-x86_64 1045 | installed = neovim-0.3.1-1-x86_64 1046 | installed = nerd-fonts-terminus-2.0.0-2-any 1047 | installed = net-snmp-5.8-1-x86_64 1048 | installed = net-tools-1.60.20180212git-1-x86_64 1049 | installed = netcdf-4.6.1-4-x86_64 1050 | installed = nethack-3.6.1-1-x86_64 1051 | installed = nettle-3.4-1-x86_64 1052 | installed = network-manager-applet-1.8.19dev+21+geebf7f95-1-x86_64 1053 | installed = networkmanager-1.14.5dev+17+gba83251bb-1-x86_64 1054 | installed = networkmanager-dispatcher-ntpd-1.0-7-any 1055 | installed = networkmanager-openconnect-1.2.4-3-x86_64 1056 | installed = networkmanager-openvpn-1.8.8-1-x86_64 1057 | installed = networkmanager-pptp-1.2.8-1-x86_64 1058 | installed = networkmanager-vpnc-1.2.6-1-x86_64 1059 | installed = newsboat-2.13-1-x86_64 1060 | installed = nfs-utils-2.3.3-1-x86_64 1061 | installed = nfsidmap-2.3.3-1-x86_64 1062 | installed = nghttp2-1.34.0-1-x86_64 1063 | installed = nitrogen-1.6.1-2-x86_64 1064 | installed = nm-connection-editor-1.8.19dev+21+geebf7f95-1-x86_64 1065 | installed = nnn-2.0-2-x86_64 1066 | installed = node-gyp-3.8.0-1-any 1067 | installed = nodejs-11.1.0-1-x86_64 1068 | installed = notmuch-mutt-0.28-1-x86_64 1069 | installed = notmuch-runtime-0.28-1-x86_64 1070 | installed = noto-fonts-20181024-1-any 1071 | installed = npm-6.4.1-1-any 1072 | installed = npth-1.6-1-x86_64 1073 | installed = nspr-4.20-1-x86_64 1074 | installed = nss-3.40-1-x86_64 1075 | installed = nss-mdns-0.14.1-1-x86_64 1076 | installed = ntfs-3g-2017.3.23-3-x86_64 1077 | installed = ntp-4.2.8.p12-2-x86_64 1078 | installed = numactl-2.0.12-1-x86_64 1079 | installed = numlockx-1.2-4-x86_64 1080 | installed = nvidia-utils-1:410.73-1-x86_64 1081 | installed = obs-linuxbrowser-0.3.1-2-x86_64 1082 | installed = obs-studio-git-21.1.1.r133.g396c05e2-1-x86_64 1083 | installed = ocl-icd-2.2.12-3-x86_64 1084 | installed = openal-1.19.1-1-x86_64 1085 | installed = opencascade-7.3.0-4-x86_64 1086 | installed = opencl-headers-2:2.2.20170516-1-any 1087 | installed = opencl-nvidia-1:410.73-1-x86_64 1088 | installed = opencollada-1:1.6.63-1-x86_64 1089 | installed = opencolorio-1.1.0-3-x86_64 1090 | installed = openconnect-1:7.08-1-x86_64 1091 | installed = opencore-amr-0.1.5-1-x86_64 1092 | installed = openexr-2.3.0-1-x86_64 1093 | installed = opengl-man-pages-20180321-1-any 1094 | installed = openimageio-1.8.15-1-x86_64 1095 | installed = openjpeg-1.5.2-2-x86_64 1096 | installed = openjpeg2-2.3.0-3-x86_64 1097 | installed = openmpi-3.1.3-1-x86_64 1098 | installed = openresolv-3.9.0-1-any 1099 | installed = openshadinglanguage-1.9.10-3-x86_64 1100 | installed = openshot-2.4.3-1-any 1101 | installed = openssh-7.9p1-1-x86_64 1102 | installed = openssl-1.1.1-1-x86_64 1103 | installed = openssl-1.0-1.0.2.p-1-x86_64 1104 | installed = opensubdiv-3.3.3-1-x86_64 1105 | installed = openvdb-5.2.0-1-x86_64 1106 | installed = openvpn-2.4.6-1-x86_64 1107 | installed = opus-1.3-1-x86_64 1108 | installed = orc-0.4.28-1-x86_64 1109 | installed = os-prober-1.76-2-x86_64 1110 | installed = otf-font-awesome-5.5.0-1-any 1111 | installed = p11-kit-0.23.14-1-x86_64 1112 | installed = p7zip-16.02-5-x86_64 1113 | installed = pa-applet-1.0.2-3-x86_64 1114 | installed = package-query-1.9-2-x86_64 1115 | installed = pacman-5.1.1-3-x86_64 1116 | installed = pacman-mirrors-4.14.0-3-any 1117 | installed = pacui-1.11-1-any 1118 | installed = pam-1.3.1-1-x86_64 1119 | installed = pamac-7.2.2-1-x86_64 1120 | installed = pambase-20171006-1-any 1121 | installed = pango-1.42.4-1-x86_64 1122 | installed = pangomm-2.42.0-1-x86_64 1123 | installed = pangox-compat-0.0.2+2+gedb9e09-2-x86_64 1124 | installed = papirus-icon-theme-20181007-1-any 1125 | installed = papirus-maia-icon-theme-20181011-1-any 1126 | installed = parted-3.2-7-x86_64 1127 | installed = patch-2.7.6-6-x86_64 1128 | installed = patchutils-0.3.4-3-x86_64 1129 | installed = pavucontrol-1:3.0+23+g335c26c-1-x86_64 1130 | installed = pciutils-3.6.1-1-x86_64 1131 | installed = pcmciautils-018-7-x86_64 1132 | installed = pcre-8.42-1-x86_64 1133 | installed = pcre2-10.32-1-x86_64 1134 | installed = pcsclite-1.8.24-1-x86_64 1135 | installed = pdcurses-3.4-8-x86_64 1136 | installed = perl-5.28.0-1-x86_64 1137 | installed = perl-clone-0.41-1-x86_64 1138 | installed = perl-data-optlist-0.110-4-any 1139 | installed = perl-dbi-1.642-1-x86_64 1140 | installed = perl-devel-globaldestruction-0.14-4-any 1141 | installed = perl-digest-hmac-1.03-6-any 1142 | installed = perl-digest-sha1-2.13-11-x86_64 1143 | installed = perl-error-0.17027-1-any 1144 | installed = perl-file-basedir-0.08-2-any 1145 | installed = perl-file-desktopentry-0.22-4-any 1146 | installed = perl-file-mimeinfo-0.29-1-any 1147 | installed = perl-file-remove-1.58-1-any 1148 | installed = perl-file-which-1.22-2-any 1149 | installed = perl-io-stringy-2.111-3-any 1150 | installed = perl-ipc-system-simple-1.25-4-any 1151 | installed = perl-locale-gettext-1.07-6-x86_64 1152 | installed = perl-mail-box-3.005-1-any 1153 | installed = perl-mail-message-3.007-1-any 1154 | installed = perl-mailtools-2.20-2-any 1155 | installed = perl-mime-types-2.17-2-any 1156 | installed = perl-object-realize-later-0.21-1-any 1157 | installed = perl-params-util-1.07-9-x86_64 1158 | installed = perl-parse-yapp-1.21-1-any 1159 | installed = perl-string-shellquote-1.04-4-any 1160 | installed = perl-sub-exporter-0.987-4-any 1161 | installed = perl-sub-exporter-progressive-0.001013-4-any 1162 | installed = perl-sub-install-0.928-4-any 1163 | installed = perl-term-readline-gnu-1.35-5-x86_64 1164 | installed = perl-timedate-2.30-5-any 1165 | installed = perl-uri-1.74-2-any 1166 | installed = perl-user-identity-0.99-1-any 1167 | installed = perl-xml-libxml-2.0132-2-x86_64 1168 | installed = perl-xml-namespacesupport-1.12-2-any 1169 | installed = perl-xml-parser-2.44-7-x86_64 1170 | installed = perl-xml-sax-1.00-1-any 1171 | installed = perl-xml-sax-base-1.09-2-any 1172 | installed = pgadmin4-3.5-1-x86_64 1173 | installed = phonon-qt5-4.10.1-2-x86_64 1174 | installed = phonon-qt5-gstreamer-4.9.0-5-x86_64 1175 | installed = php-7.2.12-1-x86_64 1176 | installed = php-apache-7.2.12-1-x86_64 1177 | installed = pinentry-1.1.0-4-x86_64 1178 | installed = piu-piu-sh-git-r241.a2fcae4-1-any 1179 | installed = pixman-0.34.0-1-x86_64 1180 | installed = pkcs11-helper-1.25.1-1-x86_64 1181 | installed = pkgconf-1.5.4-1-x86_64 1182 | installed = playerctl-0.6.1-1-x86_64 1183 | installed = polkit-0.114-1.1-x86_64 1184 | installed = polkit-gnome-0.105-4-x86_64 1185 | installed = polkit-qt5-0.112.0+git20180107-2-x86_64 1186 | installed = polybar-3.2.1-2.2-x86_64 1187 | installed = poppler-0.71.0-1-x86_64 1188 | installed = poppler-data-0.4.9-1-any 1189 | installed = poppler-glib-0.71.0-1-x86_64 1190 | installed = poppler-qt5-0.71.0-1-x86_64 1191 | installed = popt-1.16-9-x86_64 1192 | installed = portaudio-190600_20161030-1-x86_64 1193 | installed = portsmf-228-3-x86_64 1194 | installed = postgresql-10.5-3-x86_64 1195 | installed = postgresql-libs-10.5-3-x86_64 1196 | installed = potato-6-1-any 1197 | installed = potrace-1.15-1-x86_64 1198 | installed = powerline-common-2.7-2-x86_64 1199 | installed = powerline-fonts-2.7-2-x86_64 1200 | installed = powerline2-2.7-2-x86_64 1201 | installed = powertop-2.9-2-x86_64 1202 | installed = ppp-2.4.7-5-x86_64 1203 | installed = pptpclient-1.10.0-1-x86_64 1204 | installed = primus-20151110-7-x86_64 1205 | installed = procps-ng-3.3.15-1.2-x86_64 1206 | installed = progress-0.14-1-x86_64 1207 | installed = protobuf-3.6.1-1-x86_64 1208 | installed = protobuf-c-1.3.1-1-x86_64 1209 | installed = psmisc-23.2-1-x86_64 1210 | installed = ptex-2.3.0-1-x86_64 1211 | installed = pulseaudio-12.2-2-x86_64 1212 | installed = pulseaudio-alsa-2-4-any 1213 | installed = pulseaudio-bluetooth-12.2-2-x86_64 1214 | installed = pulseaudio-ctl-1.66-1-any 1215 | installed = pulseaudio-equalizer-12.2-2-x86_64 1216 | installed = pulseaudio-equalizer-ladspa-3.0.1-1-any 1217 | installed = pulseaudio-jack-12.2-2-x86_64 1218 | installed = pulseaudio-lirc-12.2-2-x86_64 1219 | installed = pulseaudio-zeroconf-12.2-2-x86_64 1220 | installed = pyalpm-0.8.4-2-x86_64 1221 | installed = pygobject-devel-3.30.2-1-x86_64 1222 | installed = pygobject2-devel-2.28.7-2-x86_64 1223 | installed = pygtk-2.24.0-8-x86_64 1224 | installed = pyqt4-common-4.12.1-1-x86_64 1225 | installed = pyqt5-common-5.11.3-1-x86_64 1226 | installed = pyside-tools-common-0.2.15-4-x86_64 1227 | installed = pyside2-5.11.2-1-x86_64 1228 | installed = pyside2-tools-5.11.2-1-x86_64 1229 | installed = python-3.7.1-1-x86_64 1230 | installed = python-appdirs-1.4.3-2-any 1231 | installed = python-asn1crypto-0.24.0-2-any 1232 | installed = python-beautifulsoup4-4.6.3-1-any 1233 | installed = python-cachecontrol-0.12.5-4-any 1234 | installed = python-cairo-1.17.0-2-x86_64 1235 | installed = python-cffi-1.11.5-2-x86_64 1236 | installed = python-chardet-3.0.4-2-any 1237 | installed = python-click-7.0-1-any 1238 | installed = python-colorama-0.4.0-1-any 1239 | installed = python-cryptography-2.4.1-1-x86_64 1240 | installed = python-dateutil-2.7.5-1-any 1241 | installed = python-dbus-1.2.8-2-x86_64 1242 | installed = python-dbus-common-1.2.8-2-x86_64 1243 | installed = python-decorator-4.3.0-2-any 1244 | installed = python-distlib-0.2.8-1-any 1245 | installed = python-distro-1.3.0-2-any 1246 | installed = python-distutils-extra-2.39-3-any 1247 | installed = python-docopt-0.6.2-5-any 1248 | installed = python-dogpile.cache-0.6.7-1-any 1249 | installed = python-entrypoints-0.2.3-3-any 1250 | installed = python-future-0.17.1-1-any 1251 | installed = python-gobject-3.30.2-1-x86_64 1252 | installed = python-greenlet-0.4.15-1-x86_64 1253 | installed = python-html5lib-1.0.1-3-any 1254 | installed = python-httplib2-0.11.3-2-any 1255 | installed = python-idna-2.7-3-any 1256 | installed = python-jedi-0.13.1-1-any 1257 | installed = python-jeepney-0.4-1-any 1258 | installed = python-jinja-2.10-2-any 1259 | installed = python-kaptan-0.5.10-2-any 1260 | installed = python-keyring-16.0.2-1-any 1261 | installed = python-keyutils-0.5-3-x86_64 1262 | installed = python-kitchen-1.2.5-2-any 1263 | installed = python-libtmux-0.8.0-2-any 1264 | installed = python-lockfile-0.12.2-3-any 1265 | installed = python-markupsafe-1.1.0-1-x86_64 1266 | installed = python-msgpack-0.5.6-2-x86_64 1267 | installed = python-neovim-0.3.0-1-any 1268 | installed = python-npyscreen-4.10.5-2-any 1269 | installed = python-numpy-1.15.4-1-x86_64 1270 | installed = python-offtrac-0.1.0-1-any 1271 | installed = python-olefile-0.46-1-any 1272 | installed = python-packaging-18.0-1-any 1273 | installed = python-parsedatetime-2.4-2-any 1274 | installed = python-parso-0.3.1-2-any 1275 | installed = python-pexpect-4.6.0-2-any 1276 | installed = python-pickleshare-0.7.5-1-any 1277 | installed = python-pillow-5.3.0-1-x86_64 1278 | installed = python-pip-18.0-1-any 1279 | installed = python-ply-3.11-2-any 1280 | installed = python-progress-1.4-2-any 1281 | installed = python-prompt_toolkit-1.0.15-2-any 1282 | installed = python-psutil-5.4.7-1-x86_64 1283 | installed = python-psycopg2-2.7.5-2-x86_64 1284 | installed = python-ptyprocess-0.6.0-2-any 1285 | installed = python-pycparser-2.19-1-any 1286 | installed = python-pyelftools-0.25-1-any 1287 | installed = python-pygments-2.2.0-2-any 1288 | installed = python-pyparsing-2.3.0-1-any 1289 | installed = python-pyqt4-4.12.1-1-x86_64 1290 | installed = python-pyqt5-5.11.3-1-x86_64 1291 | installed = python-pyside-common-1.2.4-8-x86_64 1292 | installed = python-pytoml-0.1.20-1-any 1293 | installed = python-pytz-2018.7-1-any 1294 | installed = python-pyzmq-17.1.0-1-x86_64 1295 | installed = python-reportlab-3.5.9-1-x86_64 1296 | installed = python-requests-2.20.1-1-any 1297 | installed = python-retrying-1.3.3-4-any 1298 | installed = python-secretstorage-3.1.0-1-any 1299 | installed = python-setuptools-1:40.5.0-1-any 1300 | installed = python-shiboken2-5.11.2-2-x86_64 1301 | installed = python-sip-4.19.13-1-x86_64 1302 | installed = python-sip-pyqt5-4.19.13-1-x86_64 1303 | installed = python-six-1.11.0-3-any 1304 | installed = python-traitlets-4.3.2-2-any 1305 | installed = python-tzlocal-1.5.1-4-any 1306 | installed = python-urllib3-1.24.1-1-any 1307 | installed = python-wcwidth-0.1.7-3-any 1308 | installed = python-webencodings-0.5.1-2-any 1309 | installed = python-xdg-0.26-2-any 1310 | installed = python-yaml-3.13-2-x86_64 1311 | installed = python2-2.7.15-2-x86_64 1312 | installed = python2-appdirs-1.4.3-2-any 1313 | installed = python2-asn1crypto-0.24.0-2-any 1314 | installed = python2-backports-1.0-1-any 1315 | installed = python2-backports.functools_lru_cache-1.5-1-any 1316 | installed = python2-bugzilla-2.1.0-2-any 1317 | installed = python2-cairo-1.17.0-2-x86_64 1318 | installed = python2-cffi-1.11.5-2-x86_64 1319 | installed = python2-chardet-3.0.4-2-any 1320 | installed = python2-click-7.0-1-any 1321 | installed = python2-configparser-3.5.0-1-any 1322 | installed = python2-cryptography-2.4.1-1-x86_64 1323 | installed = python2-cycler-0.10.0-3-any 1324 | installed = python2-dateutil-2.7.5-1-any 1325 | installed = python2-dbus-1.2.8-2-x86_64 1326 | installed = python2-distutils-extra-2.39-3-any 1327 | installed = python2-dogpile.cache-0.6.7-1-any 1328 | installed = python2-entrypoints-0.2.3-3-any 1329 | installed = python2-enum-0.4.6-1-any 1330 | installed = python2-enum34-1.1.6-1-any 1331 | installed = python2-future-0.17.1-1-any 1332 | installed = python2-gobject2-2.28.7-2-x86_64 1333 | installed = python2-idna-2.7-3-any 1334 | installed = python2-ipaddress-1.0.22-1-any 1335 | installed = python2-keyring-16.0.2-1-any 1336 | installed = python2-kiwisolver-1.0.1-2-x86_64 1337 | installed = python2-lockfile-0.12.2-3-any 1338 | installed = python2-magic-5.34-1-any 1339 | installed = python2-matplotlib-2.2.3-3-x86_64 1340 | installed = python2-numpy-1.15.4-1-x86_64 1341 | installed = python2-offtrac-0.1.0-1-any 1342 | installed = python2-packaging-18.0-1-any 1343 | installed = python2-pivy-20101207-2-x86_64 1344 | installed = python2-ply-3.11-2-any 1345 | installed = python2-powerline-2.7-2-x86_64 1346 | installed = python2-pycparser-2.19-1-any 1347 | installed = python2-pyparsing-2.3.0-1-any 1348 | installed = python2-pyqt5-5.11.3-1-x86_64 1349 | installed = python2-pyside-1.2.4-8-x86_64 1350 | installed = python2-pyside-tools-0.2.15-4-x86_64 1351 | installed = python2-pyside2-5.11.2-1-x86_64 1352 | installed = python2-pytz-2018.7-1-any 1353 | installed = python2-requests-2.20.1-1-any 1354 | installed = python2-secretstorage-1:2.3.1-1-any 1355 | installed = python2-setuptools-1:40.5.0-1-any 1356 | installed = python2-shiboken-1.2.4-3-x86_64 1357 | installed = python2-shiboken2-5.11.2-1-x86_64 1358 | installed = python2-sip-4.19.13-1-x86_64 1359 | installed = python2-sip-pyqt5-4.19.13-1-x86_64 1360 | installed = python2-six-1.11.0-3-any 1361 | installed = python2-subprocess32-3.5.3-1-x86_64 1362 | installed = python2-urllib3-1.24.1-1-any 1363 | installed = python2-xdg-0.26-2-any 1364 | installed = python2-yaml-3.13-2-x86_64 1365 | installed = qca-2.1.3-2-x86_64 1366 | installed = qmltermwidget-0.1.0-3-x86_64 1367 | installed = qpdf-8.2.1-1-x86_64 1368 | installed = qpdfview-0.4.17beta1-7-x86_64 1369 | installed = qrencode-4.0.2-1-x86_64 1370 | installed = qt4-4.8.7-26-x86_64 1371 | installed = qt5-3d-5.11.2-1-x86_64 1372 | installed = qt5-base-5.11.2-3-x86_64 1373 | installed = qt5-charts-5.11.2-1-x86_64 1374 | installed = qt5-datavis3d-5.11.2-1-x86_64 1375 | installed = qt5-declarative-5.11.2-1-x86_64 1376 | installed = qt5-graphicaleffects-5.11.2-1-x86_64 1377 | installed = qt5-location-5.11.2-2-x86_64 1378 | installed = qt5-multimedia-5.11.2-1-x86_64 1379 | installed = qt5-quickcontrols-5.11.2-1-x86_64 1380 | installed = qt5-script-5.11.2-1-x86_64 1381 | installed = qt5-scxml-5.11.2-1-x86_64 1382 | installed = qt5-sensors-5.11.2-1-x86_64 1383 | installed = qt5-serialport-5.11.2-1-x86_64 1384 | installed = qt5-speech-5.11.2-1-x86_64 1385 | installed = qt5-styleplugins-5.0.0.20170311-8-x86_64 1386 | installed = qt5-svg-5.11.2-1-x86_64 1387 | installed = qt5-tools-5.11.2-2-x86_64 1388 | installed = qt5-translations-5.11.2-1-any 1389 | installed = qt5-webchannel-5.11.2-1-x86_64 1390 | installed = qt5-webengine-5.11.2-2-x86_64 1391 | installed = qt5-webkit-5.212.0alpha2-21-x86_64 1392 | installed = qt5-websockets-5.11.2-1-x86_64 1393 | installed = qt5-x11extras-5.11.2-1-x86_64 1394 | installed = qt5-xmlpatterns-5.11.2-1-x86_64 1395 | installed = qt5ct-0.36-1-x86_64 1396 | installed = qtwebkit-2.3.4-6-x86_64 1397 | installed = rainbarf-git-20140404-1-x86_64 1398 | installed = ranger-1.9.2-0-any 1399 | installed = raptor-2.0.15-10-x86_64 1400 | installed = rasqal-1:0.9.33-2-x86_64 1401 | installed = re2-20181001-1-x86_64 1402 | installed = readline-7.0.005-1-x86_64 1403 | installed = recode-3.7.1-1-x86_64 1404 | installed = redland-1:1.0.17-4-x86_64 1405 | installed = reiserfsprogs-3.6.27-2-x86_64 1406 | installed = rest-0.8.1-1-x86_64 1407 | installed = retro-gtk-0.16.0-1-x86_64 1408 | installed = rhash-1.3.6-1-x86_64 1409 | installed = rpcbind-1.2.5-2-x86_64 1410 | installed = rsync-3.1.3-1-x86_64 1411 | installed = rtkit-0.11+8+ge0a51fe-1-x86_64 1412 | installed = rtmpdump-1:2.4.r96.fa8646d-3-x86_64 1413 | installed = rtv-1.24.0-2-any 1414 | installed = rubberband-1.8.2-1-x86_64 1415 | installed = ruby-2.5.3-1-x86_64 1416 | installed = ruby-docs-2.5.3-1-x86_64 1417 | installed = ruby-ncurses-1.3.1-11-x86_64 1418 | installed = rubygems-2.7.7-1-any 1419 | installed = run-parts-4.8.6-1-x86_64 1420 | installed = rxvt-unicode-9.22-7-x86_64 1421 | installed = rxvt-unicode-terminfo-9.22-7-x86_64 1422 | installed = s-nail-14.9.11-1-x86_64 1423 | installed = samba-4.8.5-1-x86_64 1424 | installed = sane-1.0.27-2-x86_64 1425 | installed = sbc-1.4-1-x86_64 1426 | installed = sc-im-0.7.0-2-x86_64 1427 | installed = schroedinger-1.0.11-5-x86_64 1428 | installed = screenfetch-3.8.0.r107.g522c9c0-1-any 1429 | installed = screenkey-0.9-1-any 1430 | installed = scrot-0.8.18-1-x86_64 1431 | installed = scummvm-2.0.0-1-x86_64 1432 | installed = sdl-1.2.15-9-x86_64 1433 | installed = sdl2-2.0.9-1-x86_64 1434 | installed = sdl2_image-2.0.4-1-x86_64 1435 | installed = sdl2_mixer-2.0.4-1-x86_64 1436 | installed = sdl2_net-1:2.0.1-1-x86_64 1437 | installed = sdl2_ttf-2.0.14-1-x86_64 1438 | installed = sdl_image-1.2.12-4-x86_64 1439 | installed = sdl_mixer-1.2.12-5-x86_64 1440 | installed = sdl_sound-1.0.3-6-x86_64 1441 | installed = sdl_ttf-2.0.11-4-x86_64 1442 | installed = sed-4.5-1-x86_64 1443 | installed = semver-5.6.0-1-any 1444 | installed = serd-0.30.0-1-x86_64 1445 | installed = serf-1.3.9-2-x86_64 1446 | installed = sg3_utils-1.44-1-x86_64 1447 | installed = shadow-4.6-1-x86_64 1448 | installed = shared-mime-info-1.10-1-x86_64 1449 | installed = shiboken-1.2.4-3-x86_64 1450 | installed = shiboken2-5.11.2-2-x86_64 1451 | installed = sip-4.19.13-1-x86_64 1452 | installed = slang-2.3.2-1-x86_64 1453 | installed = smbclient-4.8.5-1-x86_64 1454 | installed = smpeg-0.4.5-3-x86_64 1455 | installed = snappy-1.1.7-1-x86_64 1456 | installed = solid-5.52.0-1-x86_64 1457 | installed = sonnet-5.52.0-1-x86_64 1458 | installed = soqt-1.5.0-9-x86_64 1459 | installed = sord-0.16.2-1-x86_64 1460 | installed = sound-theme-freedesktop-0.8-3-any 1461 | installed = soundtouch-2.1.0-1-x86_64 1462 | installed = sox-14.4.2-4-x86_64 1463 | installed = spandsp-0.0.6-2-x86_64 1464 | installed = speex-1.2.0-1-x86_64 1465 | installed = speexdsp-1.2rc3-3-x86_64 1466 | installed = splix-2.0.0-14-x86_64 1467 | installed = sqlite-3.25.3-1-x86_64 1468 | installed = sratom-0.6.2-2-x86_64 1469 | installed = srt-1.3.1-1-x86_64 1470 | installed = startup-notification-0.12-5-x86_64 1471 | installed = stfl-0.24-4-x86_64 1472 | installed = subversion-1.11.0-1-x86_64 1473 | installed = sudo-1.8.25.p1-1-x86_64 1474 | installed = suil-0.10.0-3-x86_64 1475 | installed = suitesparse-5.3.0-1-x86_64 1476 | installed = supertuxkart-0.9.3-1-x86_64 1477 | installed = swh-plugins-0.4.17-3-x86_64 1478 | installed = swig-3.0.12-2-x86_64 1479 | installed = sword25-1.0-1-any 1480 | installed = syntax-highlighting-5.52.0-1-x86_64 1481 | installed = sysfsutils-2.1.0-10-x86_64 1482 | installed = systemd-239.6-1-x86_64 1483 | installed = systemd-sysvcompat-239.6-1-x86_64 1484 | installed = t1lib-5.1.2-6-x86_64 1485 | installed = taglib-1.11.1-1-x86_64 1486 | installed = talloc-2.1.14-1-x86_64 1487 | installed = tar-1.30-2-x86_64 1488 | installed = task-2.5.1-1-x86_64 1489 | installed = tcl-8.6.8-3-x86_64 1490 | installed = tdb-1.3.16-1-x86_64 1491 | installed = telepathy-glib-0.24.1-2-x86_64 1492 | installed = terminus-font-4.46-1.1-any 1493 | installed = tevent-1:0.9.37-1-x86_64 1494 | installed = texinfo-6.5-2-x86_64 1495 | installed = texlive-bin-2018.47465-5-x86_64 1496 | installed = thin-provisioning-tools-0.7.6-1-x86_64 1497 | installed = threadweaver-5.52.0-1-x86_64 1498 | installed = thunar-1.8.2-1-x86_64 1499 | installed = thunar-archive-plugin-0.4.0-1-x86_64 1500 | installed = thunar-media-tags-plugin-0.3.0-1-x86_64 1501 | installed = thunar-volman-0.8.1-2-x86_64 1502 | installed = tig-2.4.1-1-x86_64 1503 | installed = tinyxml-2.6.2-6-x86_64 1504 | installed = tinyxml2-7.0.0-2-x86_64 1505 | installed = tk-8.6.8-3-x86_64 1506 | installed = tlp-1.1-1.0-any 1507 | installed = tmux-2.8-1-x86_64 1508 | installed = tmuxp-1.5.0a-2-any 1509 | installed = totem-plparser-3.26.1+2+gb7f36dd-1-x86_64 1510 | installed = tpp-1.3.1-3-any 1511 | installed = tracker-2.1.6-2-x86_64 1512 | installed = tre-0.8.0-4-x86_64 1513 | installed = tree-1.7.0-2-x86_64 1514 | installed = tslib-1.17-1-x86_64 1515 | installed = ttf-bitstream-vera-1.10-11-any 1516 | installed = ttf-dejavu-2.37-2-any 1517 | installed = ttf-devicons-1.8.0-1-any 1518 | installed = ttf-droid-20121017-5-any 1519 | installed = ttf-font-awesome-5.5.0-1-any 1520 | installed = ttf-font-icons-1.1-3-any 1521 | installed = ttf-hack-3.003-1-any 1522 | installed = ttf-inconsolata-1:2.0.0.1-3-any 1523 | installed = ttf-indic-otf-0.2-9-any 1524 | installed = ttf-liberation-2.00.1-7-any 1525 | installed = ttf-polybar-icons-1.0-1-any 1526 | installed = ttf-roboto-2.138-1-any 1527 | installed = tumbler-0.2.3-1-x86_64 1528 | installed = twolame-0.3.13-8-x86_64 1529 | installed = tzdata-2018g-1-x86_64 1530 | installed = udiskie-1.7.5-2-any 1531 | installed = udisks2-2.8.1-1-x86_64 1532 | installed = ufoai-2.5.0-4-x86_64 1533 | installed = ufoai-data-2.5.0-4-any 1534 | installed = ufw-0.35-5-any 1535 | installed = umbrello-18.08.3-1-x86_64 1536 | installed = unace-2.5-10-x86_64 1537 | installed = unibilium-2.0.0-1-x86_64 1538 | installed = unoconv-0.8.2-1-any 1539 | installed = unrar-1:5.6.8-1-x86_64 1540 | installed = unzip-6.0-13-x86_64 1541 | installed = upower-0.99.9-1-x86_64 1542 | installed = urxvt-perls-2.2-2-any 1543 | installed = usbmuxd-1.1.0+48+g1cc8b34-1-x86_64 1544 | installed = usbutils-010-1-x86_64 1545 | installed = util-linux-2.33-2-x86_64 1546 | installed = v4l-utils-1.16.1-1-x86_64 1547 | installed = v86d-0.1.10-5.1-x86_64 1548 | installed = vamp-plugin-sdk-2.7.1-2-x86_64 1549 | installed = vertex-maia-icon-theme-20180118-1-any 1550 | installed = vertex-maia-themes-20180519-4-any 1551 | installed = vid.stab-1.1-2-x86_64 1552 | installed = vim-8.1.0519-1-x86_64 1553 | installed = vim-runtime-8.1.0519-1-x86_64 1554 | installed = vimiv-0.9.1-2-x86_64 1555 | installed = visidata-1.2-1-any 1556 | installed = vlc-3.0.4-6-x86_64 1557 | installed = volume_key-0.3.11-2-x86_64 1558 | installed = vpnc-0.5.3.svn550-2-x86_64 1559 | installed = vte-common-0.54.2-1-x86_64 1560 | installed = vte3-0.54.2-1-x86_64 1561 | installed = vtk-8.1.1-3-x86_64 1562 | installed = vtk6-6.3.0-11-x86_64 1563 | installed = vulkan-icd-loader-1.1.85+2969+5abee6173-1-x86_64 1564 | installed = wavpack-5.1.0-2-x86_64 1565 | installed = wayland-1.16.0-1-x86_64 1566 | installed = wayland-protocols-1.16-1-any 1567 | installed = weather-bar-1.1-2-x86_64 1568 | installed = webkit2gtk-2.22.3-1-x86_64 1569 | installed = webrtc-audio-processing-0.3.1-1-x86_64 1570 | installed = weechat-2.3-1-x86_64 1571 | installed = wget-1.19.5-1-x86_64 1572 | installed = which-2.21-3-x86_64 1573 | installed = whois-5.3.2-2-x86_64 1574 | installed = wildmidi-0.4.2-1-x86_64 1575 | installed = wine-3.20-1-x86_64 1576 | installed = wireless-regdb-2018.05.31-2-any 1577 | installed = wireless_tools-30.pre9-2-x86_64 1578 | installed = woff2-1.0.2-1-x86_64 1579 | installed = wpa_supplicant-1:2.6-12-x86_64 1580 | installed = wxgtk-common-3.0.4-2-x86_64 1581 | installed = wxgtk2-3.0.4-2-x86_64 1582 | installed = wxgtk3-3.0.4-2-x86_64 1583 | installed = wxsqlite3-4.2.0-1-x86_64 1584 | installed = x264-2:155.r0a84d986-2-x86_64 1585 | installed = x265-2.9-1-x86_64 1586 | installed = xapian-core-1:1.4.8-1-x86_64 1587 | installed = xaw3d-1.6.3-1-x86_64 1588 | installed = xbitmaps-1.1.2-1-any 1589 | installed = xcb-proto-1.13-2-any 1590 | installed = xcb-util-0.4.0-2-x86_64 1591 | installed = xcb-util-cursor-0.1.3-1-x86_64 1592 | installed = xcb-util-image-0.4.0-2-x86_64 1593 | installed = xcb-util-keysyms-0.4.0-2-x86_64 1594 | installed = xcb-util-renderutil-0.3.9-2-x86_64 1595 | installed = xcb-util-wm-0.4.1-2-x86_64 1596 | installed = xcb-util-xrm-1.3-1-x86_64 1597 | installed = xclip-0.13-2-x86_64 1598 | installed = xcursor-breeze-5.11.5-1-any 1599 | installed = xcursor-simpleandsoft-0.2-8-any 1600 | installed = xcursor-vanilla-dmz-aa-0.4.5-1-any 1601 | installed = xdg-su-1.2.3-1-any 1602 | installed = xdg-user-dirs-0.17-1-x86_64 1603 | installed = xdg-utils-1.1.3-3-any 1604 | installed = xerces-c-3.2.2-1-x86_64 1605 | installed = xf86-input-elographics-1.4.1-7-x86_64 1606 | installed = xf86-input-evdev-2.10.6-1-x86_64 1607 | installed = xf86-input-keyboard-1.9.0-2-x86_64 1608 | installed = xf86-input-libinput-0.28.1-1-x86_64 1609 | installed = xf86-input-mouse-1.9.3-1-x86_64 1610 | installed = xf86-input-void-1.4.1-3-x86_64 1611 | installed = xf86-video-intel-1:2.99.917+853+g0932a6b3-1-x86_64 1612 | installed = xfburn-0.5.5-1-x86_64 1613 | installed = xfce4-appfinder-4.12.0-4-x86_64 1614 | installed = xfce4-battery-plugin-1.1.1-1-x86_64 1615 | installed = xfce4-clipman-plugin-1.4.3-1-x86_64 1616 | installed = xfce4-cpufreq-plugin-1.2.1-1-x86_64 1617 | installed = xfce4-cpugraph-plugin-1.0.5-4-x86_64 1618 | installed = xfce4-dict-0.8.1-1-x86_64 1619 | installed = xfce4-diskperf-plugin-2.6.1-1-x86_64 1620 | installed = xfce4-fsguard-plugin-1.1.0-1-x86_64 1621 | installed = xfce4-genmon-plugin-4.0.1-1-x86_64 1622 | installed = xfce4-mailwatch-plugin-1.2.0-7-x86_64 1623 | installed = xfce4-mount-plugin-1.1.3-1-x86_64 1624 | installed = xfce4-mpc-plugin-0.5.0-1-x86_64 1625 | installed = xfce4-netload-plugin-1.3.1-1-x86_64 1626 | installed = xfce4-notes-plugin-1.8.1-2-x86_64 1627 | installed = xfce4-notifyd-0.4.3-1-x86_64 1628 | installed = xfce4-panel-4.12.2-1-x86_64 1629 | installed = xfce4-power-manager-1.6.1-1-x86_64 1630 | installed = xfce4-pulseaudio-plugin-0.4.1-1.2-x86_64 1631 | installed = xfce4-screenshooter-1.9.3-1-x86_64 1632 | installed = xfce4-sensors-plugin-1.3.0-1-x86_64 1633 | installed = xfce4-session-4.12.1-8.1-x86_64 1634 | installed = xfce4-settings-4.12.4-1-x86_64 1635 | installed = xfce4-smartbookmark-plugin-0.5.0-1-x86_64 1636 | installed = xfce4-systemload-plugin-1.2.1-1-x86_64 1637 | installed = xfce4-taskmanager-1.2.1-1-x86_64 1638 | installed = xfce4-terminal-0.8.7.4-1-x86_64 1639 | installed = xfce4-time-out-plugin-1.0.2-2-x86_64 1640 | installed = xfce4-timer-plugin-1.7.0-1-x86_64 1641 | installed = xfce4-verve-plugin-2.0.0-1-x86_64 1642 | installed = xfce4-wavelan-plugin-0.6.0-1-x86_64 1643 | installed = xfce4-weather-plugin-0.8.10-1-x86_64 1644 | installed = xfce4-whiskermenu-plugin-2.3.0-1-x86_64 1645 | installed = xfce4-xkb-plugin-0.8.1-1-x86_64 1646 | installed = xfconf-4.12.1-5-x86_64 1647 | installed = xfdesktop-4.12.4-2-x86_64 1648 | installed = xfsprogs-4.18.0-1-x86_64 1649 | installed = xfwm4-4.12.5-1-x86_64 1650 | installed = xfwm4-themes-4.10.0-3-any 1651 | installed = xkeyboard-config-2.25-1-any 1652 | installed = xmlsec-1.2.27-1-x86_64 1653 | installed = xmr-stak-git-r618.2ae7260-1-x86_64 1654 | installed = xonotic-data-0.8.2-1-any 1655 | installed = xorg-bdftopcf-1.1-1-x86_64 1656 | installed = xorg-font-util-1.3.1-2-x86_64 1657 | installed = xorg-font-utils-7.6-5-any 1658 | installed = xorg-fonts-alias-1.0.3-2-any 1659 | installed = xorg-fonts-encodings-1.0.4-5-any 1660 | installed = xorg-fonts-misc-1.0.3-5-any 1661 | installed = xorg-iceauth-1.0.8-1-x86_64 1662 | installed = xorg-luit-1.1.1-3-x86_64 1663 | installed = xorg-mkfontdir-1.0.7-9-any 1664 | installed = xorg-mkfontscale-1.1.3-1-x86_64 1665 | installed = xorg-server-1.20.3-1-x86_64 1666 | installed = xorg-server-common-1.20.3-1-x86_64 1667 | installed = xorg-server-utils-7.6-4-any 1668 | installed = xorg-sessreg-1.1.1-1-x86_64 1669 | installed = xorg-setxkbmap-1.3.1-2-x86_64 1670 | installed = xorg-twm-1.0.10-1-x86_64 1671 | installed = xorg-utils-7.6-9-any 1672 | installed = xorg-xauth-1.0.10-1-x86_64 1673 | installed = xorg-xbacklight-1.2.2-1-x86_64 1674 | installed = xorg-xcmsdb-1.0.5-2-x86_64 1675 | installed = xorg-xdpyinfo-1.3.2-2-x86_64 1676 | installed = xorg-xdriinfo-1.0.6-1-x86_64 1677 | installed = xorg-xev-1.2.2-2-x86_64 1678 | installed = xorg-xgamma-1.0.6-2-x86_64 1679 | installed = xorg-xhost-1.0.7-2-x86_64 1680 | installed = xorg-xinit-1.4.0-3-x86_64 1681 | installed = xorg-xinput-1.6.2-2-x86_64 1682 | installed = xorg-xkbcomp-1.4.2-1-x86_64 1683 | installed = xorg-xkill-1.0.5-1-x86_64 1684 | installed = xorg-xlsatoms-1.1.2-2-x86_64 1685 | installed = xorg-xlsclients-1.1.4-1-x86_64 1686 | installed = xorg-xmodmap-1.0.9-2-x86_64 1687 | installed = xorg-xprop-1.2.3-1-x86_64 1688 | installed = xorg-xrandr-1.5.0-1-x86_64 1689 | installed = xorg-xrdb-1.1.1-1-x86_64 1690 | installed = xorg-xrefresh-1.0.6-1-x86_64 1691 | installed = xorg-xset-1.2.4-1-x86_64 1692 | installed = xorg-xsetroot-1.1.2-1-x86_64 1693 | installed = xorg-xvinfo-1.1.3-2-x86_64 1694 | installed = xorg-xwininfo-1.1.4-1-x86_64 1695 | installed = xorgproto-2018.4-1-any 1696 | installed = xsel-1.2.0.20160929-1-x86_64 1697 | installed = xterm-337-1-x86_64 1698 | installed = xvidcore-1.3.5-1-x86_64 1699 | installed = xz-5.2.4-1-x86_64 1700 | installed = yajl-2.1.0-2-x86_64 1701 | installed = yaml-cpp-0.6.2-1-x86_64 1702 | installed = yaourt-1.9-2-any 1703 | installed = yaourt-gui-manjaro-1.4.5-2-any 1704 | installed = yarn-1.12.3-1-any 1705 | installed = yasm-1.3.0-2-x86_64 1706 | installed = yelp-3.30.0-1-x86_64 1707 | installed = yelp-xsl-3.30.1-1-any 1708 | installed = zd1211-firmware-1.5-1-any 1709 | installed = zenity-3.30.0-1-x86_64 1710 | installed = zeromq-4.2.5-1-x86_64 1711 | installed = zip-3.0-8-x86_64 1712 | installed = zita-alsa-pcmi-0.3.2-1-x86_64 1713 | installed = zita-convolver-4.0.3-1-x86_64 1714 | installed = zita-resampler-1.6.2-1-x86_64 1715 | installed = zlib-1:1.2.11-3-x86_64 1716 | installed = zsh-5.6.2-1-x86_64 1717 | installed = zstd-1.3.7-1-x86_64 1718 | installed = zsync-0.6.2-4-x86_64 1719 | installed = zvbi-0.2.35-3-x86_64 1720 | installed = zziplib-0.13.69-1-x86_64 1721 | -------------------------------------------------------------------------------- /pkg/patata/.MTREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubikPixel/patata/1771855fd50269820127c9f724dd33868df90d48/pkg/patata/.MTREE -------------------------------------------------------------------------------- /pkg/patata/.PKGINFO: -------------------------------------------------------------------------------- 1 | # Generated by makepkg 5.1.1 2 | # using fakeroot version 1.23 3 | pkgname = patata 4 | pkgbase = patata 5 | pkgver = 6-1 6 | pkgdesc = A pomodoro timer for the shell uses Taskwarrior 7 | url = https://github.com/rrmelcer/patata 8 | builddate = 1543147317 9 | packager = Unknown Packager 10 | size = 115712 11 | arch = any 12 | license = MIT 13 | depend = alsa-utils 14 | depend = task 15 | -------------------------------------------------------------------------------- /pkg/patata/usr/bin/patata: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | WORK=25 4 | PAUSE=5 5 | POMODORI=4 6 | TASK=$(task next limit:1 | tail -n +4 | head -n 1 | sed 's/^ //' | cut -d ' ' -f1) 7 | INTERACTIVE=true 8 | MUTE=false 9 | 10 | show_help() { 11 | cat <<-END 12 | usage: potato [-s] [-m] [-w m] [-b m] [-h] 13 | -s: simple output. Intended for use in scripts 14 | When enabled, potato outputs one line for each minute, and doesn't print the bell character 15 | (ascii 007) 16 | 17 | -m: mute -- don't play sounds when work/break is over 18 | -w m: let work periods last m minutes (default is 25) 19 | -b m: let break periods last m minutes (default is 5) 20 | -p c: let counts of pomodori bevor the big break (default is 4) 21 | -t t: let task ID from Taskwarrior to start (default is the most urgent task) 22 | -h: print this message 23 | END 24 | } 25 | 26 | play_notification() { 27 | aplay -q /usr/lib/potato/notification.wav& 28 | } 29 | 30 | while getopts :sw:b:p:t:m opt; do 31 | case "$opt" in 32 | s) 33 | INTERACTIVE=false 34 | ;; 35 | m) 36 | MUTE=true 37 | ;; 38 | w) 39 | WORK=$OPTARG 40 | ;; 41 | b) 42 | PAUSE=$OPTARG 43 | ;; 44 | p) 45 | POMODORI=$OPTARG 46 | ;; 47 | t) 48 | TASK=$OPTARG 49 | ;; 50 | h|\?) 51 | show_help 52 | exit 1 53 | ;; 54 | esac 55 | done 56 | 57 | time_left="%im left of %s " 58 | 59 | if $INTERACTIVE; then 60 | task $TASK list 61 | time_left="\r$time_left" 62 | else 63 | task $TASK list 64 | time_left="$time_left\n" 65 | fi 66 | 67 | # while true 68 | for ((p=$POMODORI; p>0; p--)) 69 | do 70 | task $TASK start 71 | 72 | for ((i=$WORK; i>0; i--)) 73 | do 74 | printf "$time_left" $i "work" 75 | sleep 1m 76 | done 77 | 78 | ! $MUTE && play_notification 79 | if $INTERACTIVE; then 80 | read -d '' -t 0.001 81 | echo -e "\a" 82 | echo "Work over" 83 | read 84 | fi 85 | 86 | task $TASK stop 87 | 88 | for ((i=$PAUSE; i>0; i--)) 89 | do 90 | printf "$time_left" $i "pause" 91 | sleep 1m 92 | done 93 | 94 | ! $MUTE && play_notification 95 | if $INTERACTIVE; then 96 | read -d '' -t 0.001 97 | echo -e "\a" 98 | echo "Pause over" 99 | read 100 | fi 101 | done 102 | 103 | echo "Take a coffee break! ☕" 104 | -------------------------------------------------------------------------------- /pkg/patata/usr/lib/patata/notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubikPixel/patata/1771855fd50269820127c9f724dd33868df90d48/pkg/patata/usr/lib/patata/notification.wav -------------------------------------------------------------------------------- /pkg/patata/usr/share/licenses/patata/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Raoul René Melcer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- 1 | /home/rrmelcer/Develop/patata/LICENSE -------------------------------------------------------------------------------- /src/notification.wav: -------------------------------------------------------------------------------- 1 | /home/rrmelcer/Develop/patata/notification.wav -------------------------------------------------------------------------------- /src/patata.sh: -------------------------------------------------------------------------------- 1 | /home/rrmelcer/Develop/patata/patata.sh --------------------------------------------------------------------------------