You are not logged in.

#1 2014-02-26 15:36:57

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

candybar - new WebKit-based status bar for tiling window managers

I posted this on reddit a couple of days ago, but I figured I'd post it here as well. I've been wanting to take the Powerline concept a bit further, and started this project. candybar (formerly known as wkline) is a standalone status bar that uses WebKit to render its contents, which means it's super easy to design and develop new features and themes that look much better than the current flat, plain text-based status bars that are usually available for tiling WMs.

candybar works by creating a window with a WebKit WebView in it, docking it to the top of the screen and spawning a bunch of child threads that fetch system information and pass it back to the WebView. Some of the widgets wait for changes instead of running on a timer like many other statuslines, making updates to e.g. volume or mpd songs near-instant without consuming resources when idle. The tag/window list widget should work on any EWMH-compliant window manager. candybar is written in C, the themes are plain, static HTML files.

Check out the code on GitHub: https://github.com/Lokaltog/candybar - screenshots available here

Also available as candybar-git on the AUR.

Last edited by Lokaltog (2014-04-30 14:33:27)

Offline

#2 2014-02-27 18:05:07

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Screenshot of the default theme after the latest design update:

Jy2o9qA.png

Last edited by Lokaltog (2014-02-27 18:08:15)

Offline

#3 2014-02-28 22:47:08

angelic_sedition
Member
Registered: 2014-01-20
Posts: 124
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Looks very nice. I love trying out new bars/panels, and this looks like a good candidate for my top bar. Thank you.

Offline

#4 2014-03-01 07:13:25

Iao
Member
Registered: 2012-11-09
Posts: 20

Re: candybar - new WebKit-based status bar for tiling window managers

I've been waiting for deep customizability to come to panel designs for awhile, but you've exceeded my expectations and fulfilled my hopes by making it HTML and CSS based!

I'll be waiting for the C port to begin designing my own theme, but I just wanted to come by and give my thanks for developing this project. It seems very promising.

Offline

#5 2014-03-01 09:31:11

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Thanks, glad you like it so far!

The C port is working and pretty stable (I'm using it as my new top bar), and everything except the notification daemon has been ported to C now. I've also added a couple of new widgets (external IP address and battery status) and more are coming. The JSON data communication with the webview is likely to change, but you can safely start designing your own top bar with only HTML/CSS, and add dynamic data updates with JS later on.

Offline

#6 2014-03-01 16:45:30

shmibs
Member
Registered: 2012-09-11
Posts: 93
Website

Re: candybar - new WebKit-based status bar for tiling window managers

this is rather attractive big_smile.
is it/will it be possible to make an integrated system tray with this bar?


[site] | [dotfiles] | あたしたち、人間じゃないの?

Offline

#7 2014-03-01 16:54:13

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Yep, it should be possible to integrate a system tray, but we need to find a way to implement two-way communication with the webview first. We're working on it and have a couple of ideas regarding how it can be implemented, and when it's ready a system tray and window list will be implemented so the bar can be used with any window manager.

Offline

#8 2014-03-01 21:16:20

progandy
Member
Registered: 2012-05-17
Posts: 5,263

Re: candybar - new WebKit-based status bar for tiling window managers

Lokaltog wrote:

Yep, it should be possible to integrate a system tray, but we need to find a way to implement two-way communication with the webview first. We're working on it and have a couple of ideas regarding how it can be implemented, and when it's ready a system tray and window list will be implemented so the bar can be used with any window manager.

Maybe you could build upon seed, or does this only work outside of a webview? https://wiki.gnome.org/action/show/Projects/Seed

Last edited by progandy (2014-03-01 21:20:15)


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' |

Offline

#9 2014-03-01 21:49:16

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

I didn't know about seed (wkline is my first C project), but after skimming through some of the examples I feel it's a bit overkill for this use case. I'm not really looking to communicate directly with Gnome via JS, as it currently doesn't require a lot of code to write new widgets in C. I'm not sure if seed would make it a lot simpler to create new widgets, but if we were going for "as little C as possible" then it might be a better fit.

Offline

#10 2014-03-02 09:48:45

Sirsurthur
Member
Registered: 2009-02-02
Posts: 124

Re: candybar - new WebKit-based status bar for tiling window managers

Thanks for your work on this panel that I find interesting !

Is it (or will it be) possible to define an other font (like for example : terminus) ?

Thanks,

Offline

#11 2014-03-02 10:48:47

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Absolutely, the font is defined in the theme CSS file, and font and background customization through a config file is on the todo list. In the meantime you can clone the theme locally, set terminus as your font here, then recompile the theme. A bit of manual work is required now, but this is going to be improved when a proper config system is in place.

Offline

#12 2014-03-02 13:27:03

easysid
Member
From: India
Registered: 2013-01-01
Posts: 256

Re: candybar - new WebKit-based status bar for tiling window managers

Notification daemon and system tray support. This will be very interesting indeed.

Offline

#13 2014-03-04 20:46:11

GE
Member
Registered: 2014-01-04
Posts: 41

Re: candybar - new WebKit-based status bar for tiling window managers

$ git clone https://github.com/Lokaltog/wkline.git
Cloning into 'wkline'...
remote: Reusing existing pack: 658, done.
remote: Counting objects: 39, done.
remote: Compressing objects: 100% (39/39), done.
remote: Total 697 (delta 17), reused 0 (delta 0)
Receiving objects: 100% (697/697), 112.15 KiB | 151.00 KiB/s, done.
Resolving deltas: 100% (385/385), done.
Checking connectivity... done.
$ cd wkline/
$ autoreconf --install
configure.ac:3: installing './compile'
configure.ac:2: installing './install-sh'
configure.ac:2: installing './missing'
Makefile.am: installing './depcomp'
$ ./configure 
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for ALSA... yes
checking for CURL... yes
checking for DBUS... yes
checking for MPD... no
checking whether make supports nested variables... (cached) yes
checking for GTK3... yes
checking for WEBKIT... yes
checking for XCB... yes
checking for JSON_GLIB... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
$ make
make  all-am
make[1]: Entering directory '/home/user/Downloads/wkline'
  CC       util/wkline-copy_prop.o
  CC       util/wkline-log.o
  CC       src/wkline-wkline.o
  CC       src/widgets/wkline-widgets.o
  CC       src/widgets/wkline-desktops.o
  CC       src/widgets/wkline-window_title.o
  CC       util/wkline-curl.o
  CC       src/widgets/wkline-weather.o
  CC       src/widgets/wkline-external_ip.o
  CC       util/wkline-dbus_helpers.o
  CC       src/widgets/wkline-notifications.o
  CC       src/widgets/wkline-battery.o
  CC       src/widgets/wkline-volume.o
  CCLD     wkline
src/widgets/wkline-widgets.o:(.rodata+0xa0): undefined reference to `widget_now_playing_mpd'
collect2: error: ld returned 1 exit status
Makefile:518: recipe for target 'wkline' failed
make[1]: *** [wkline] Error 1
make[1]: Leaving directory '/home/user/Downloads/wkline'
Makefile:372: recipe for target 'all' failed
make: *** [all] Error 2

hmm


• WM: Openbox
• Resolution: 1366x768
• CPU: CPU: Intel Pentium CPU B980 @ 2.4GHz
• RAM: 2931MB

Offline

#14 2014-03-04 20:54:59

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Crap, I did some refactoring earlier today that caused this error. I've committed a fix, check it out!

Offline

#15 2014-03-04 21:05:00

GE
Member
Registered: 2014-01-04
Posts: 41

Re: candybar - new WebKit-based status bar for tiling window managers

Lokaltog wrote:

Crap, I did some refactoring earlier today that caused this error. I've committed a fix, check it out!

Thank you, but .. you've got another one to solve.

$ wkline 
*** Error in `wkline': munmap_chunk(): invalid pointer: 0xb0b11cd0 ***
======= Backtrace: =========
/usr/lib/libc.so.6(+0x6d833)[0xb4652833]
/usr/lib/libc.so.6(+0x7391a)[0xb465891a]
/usr/lib/libc.so.6(+0x739e8)[0xb46589e8]
wkline[0x804b35c]
wkline[0x804b49f]
/usr/lib/libglib-2.0.so.0(+0x6c96a)[0xb6d1096a]
/usr/lib/libpthread.so.0(+0x6f20)[0xb4798f20]
/usr/lib/libc.so.6(clone+0x5e)[0xb46d094e]
======= Memory map: ========
08048000-0804e000 r-xp 00000000 08:06 2262382    /usr/local/bin/wkline
0804e000-0804f000 rw-p 00006000 08:06 2262382    /usr/local/bin/wkline
08b62000-08d66000 rw-p 00000000 00:00 0          [heap]
a7d3d000-a7e3f000 rw-p 00000000 00:00 0 
a7e3f000-a7e40000 ---p 00000000 00:00 0 
a7e40000-a7e50000 rw-p 00000000 00:00 0 
a7e50000-a7e60000 ---p 00000000 00:00 0 
a7e60000-a7e70000 rw-p 00000000 00:00 0 
a7e70000-a7e7d000 ---p 00000000 00:00 0 
a7e7d000-a7e7e000 ---p 00000000 00:00 0 
a7e7e000-a867e000 rw-p 00000000 00:00 0          [stack:5909]
a867e000-a867f000 ---p 00000000 00:00 0 
a867f000-a8e7f000 rw-p 00000000 00:00 0          [stack:5908]
a8e7f000-a8e80000 ---p 00000000 00:00 0 
a8e80000-a9680000 rw-p 00000000 00:00 0          [stack:5907]
a9680000-a9681000 ---p 00000000 00:00 0 
a9681000-a9e81000 rw-p 00000000 00:00 0          [stack:5906]
a9e81000-a9e82000 ---p 00000000 00:00 0 
a9e82000-aa682000 rw-p 00000000 00:00 0          [stack:5905]
aa682000-aa683000 ---p 00000000 00:00 0 
aa683000-aae83000 rw-p 00000000 00:00 0          [stack:5904]
aae83000-aae84000 ---p 00000000 00:00 0 
aae84000-ab684000 rw-p 00000000 00:00 0 
ab684000-ab690000 ---p 00000000 00:00 0 
ab690000-ab6a0000 rw-p 00000000 00:00 0 
ab6a0000-ab6b0000 ---p 00000000 00:00 0 
ab6b0000-ab6c0000 rw-p 00000000 00:00 0 
ab6c0000-ab6d0000 ---p 00000000 00:00 0 
ab6d0000-ab6e0000 rw-p 00000000 00:00 0 
ab6e0000-ab6f0000 ---p 00000000 00:00 0 
ab6f0000-ab710000 rw-p 00000000 00:00 0 
ab710000-ab720000 ---p 00000000 00:00 0 
ab720000-ab730000 rw-p 00000000 00:00 0 
ab730000-ab740000 ---p 00000000 00:00 0 
ab740000-ab750000 rw-p 00000000 00:00 0 
ab750000-ab760000 ---p 00000000 00:00 0 
ab760000-ab770000 rw-p 00000000 00:00 0 
ab770000-ab780000 ---p 00000000 00:00 0 
ab780000-ab790000 rw-p 00000000 00:00 0 
ab790000-ab7a0000 ---p 00000000 00:00 0 
ab7a0000-ab7b0000 rw-p 00000000 00:00 0 
ab7b0000-ab7c0000 ---p 00000000 00:00 0 
ab7c0000-ab7d0000 rw-p 00000000 00:00 0 
ab7d0000-ab7d9000 ---p 00000000 00:00 0 
ab7d9000-ab7de000 r-xp 00000000 08:06 2231562    /usr/lib/libnss_dns-2.19.so
ab7de000-ab7df000 r--p 00004000 08:06 2231562    /usr/lib/libnss_dns-2.19.so
ab7df000-ab7e0000 rw-p 00005000 08:06 2231562    /usr/lib/libnss_dns-2.19.so
ab7f4000-ab7f5000 rw-p 00000000 00:00 0 
ab7f5000-ab7f6000 rwxp 00000000 00:00 0 
ab7f6000-ab7f7000 ---p 00000000 00:00 0 
ab7f7000-ab7f9000 rwxp 00000000 00:00 0 
ab7f9000-ab815000 r--p 00000000 08:06 2496856    /usr/share/fonts/TTF/RobotoCondensed-Regular.ttf
ab815000-ab818000 r--s 00000000 08:06 2497159    /var/cache/fontconfig/292dac0d9f8ea9ba9dff1373f47692a1-le32d4.cache-4
ab818000-ab81e000 r--s 00000000 08:06 2497158    /var/cache/fontconfig/7eb132327a9949029283cb11251ad588-le32d4.cache-4
ab81e000-ab822000 r--s 00000000 08:06 2497157    /var/cache/fontconfig/6d78b720ace5d3bb3fea22ee600d50bf-le32d4.cache-4
ab822000-ab823000 r--s 00000000 08:06 2497156    /var/cache/fontconfig/79e53368b3ef71e0079bb9500e71ab9c-le32d4.cache-4
ab823000-ab825000 r--s 00000000 08:06 2497155    /var/cache/fontconfig/d29f4bd7411f192ce3910056e8757bcd-le32d4.cache-4
ab825000-ab828000 r--s 00000000 08:06 2497154    /var/cache/fontconfig/fcfe089f9f2b91ee93385ea2760ec4d8-le32d4.cache-4
ab828000-ab82c000 r--s 00000000 08:06 2497153    /var/cache/fontconfig/35045e7431f4b007379fc5bbc2da2f51-le32d4.cache-4
ab82c000-ab82f000 r--s 00000000 08:06 2497152    /var/cache/fontconfig/7ad0a0727c7035623e6daa793b4d5c26-le32d4.cache-4
ab82f000-ab831000 r--s 00000000 08:06 2497151    /var/cache/fontconfig/454d9de078a2a491bab4e6046d726b00-le32d4.cache-4
ab831000-ab844000 r--s 00000000 08:06 2497150    /var/cache/fontconfig/0569adf034fb802cae75fa95f830d8fa-le32d4.cache-4
ab844000-ab847000 r--s 00000000 08:06 2497149    /var/cache/fontconfig/79449df53fb50ba122ae4c4c10c5c8e5-le32d4.cache-4
ab847000-ab848000 r--s 00000000 08:06 2497148    /var/cache/fontconfig/4456c9a12b511713c143ccd8f6d69933-le32d4.cache-4
ab848000-ab849000 r--s 00000000 08:06 2497147    /var/cache/fontconfig/0473d9f537f8b43f747951660ecd5dda-le32d4.cache-4
ab849000-ab84c000 r--s 00000000 08:06 2497146    /var/cache/fontconfig/6e8f39ac1a8a1161272525c24e746da3-le32d4.cache-4
ab84c000-ab84f000 r--s 00000000 08:06 2497145    /var/cache/fontconfig/3dd4c0364fe810efefddd73f06a7f46c-le32d4.cache-4
ab84f000-ab850000 r--s 00000000 08:06 2497144    /var/cache/fontconfig/e8b2b1316c31008de3d0667ad719360e-le32d4.cache-4
ab850000-ab851000 r--s 00000000 08:06 2497143    /var/cache/fontconfig/f1166013b8c41178118adeedfb5c5e02-le32d4.cache-4
ab851000-ab852000 r--s 00000000 08:06 2497142    /var/cache/fontconfig/651025a4b21c8db11ede048c4c1db0c4-le32d4.cache-4
ab852000-ab857000 r--s 00000000 08:06 2497141    /var/cache/fontconfig/05c6939ffcab4ece42a69ecb7571bcfc-le32d4.cache-4
ab857000-ab859000 r--s 00000000 08:06 2497140    /var/cache/fontconfig/48db6ae89dfe374bf660835dcbb25241-le32d4.cache-4
ab859000-ab860000 r--s 00000000 08:06 2497139    /var/cache/fontconfig/270df98c84a5bd5e7f45201030937b34-le32d4.cache-4
ab860000-ab862000 r--s 00000000 08:06 2497135    /var/cache/fontconfig/2de6cb31d75edc759236a41a3c8231b1-le32d4.cache-4
ab862000-ab864000 r--s 00000000 08:06 2497014    /var/cache/fontconfig/751f8075ad39783c1f24bcf91262bb69-le32d4.cache-4
ab864000-ab86e000 r--s 00000000 08:06 2497013    /var/cache/fontconfig/15307eb168539589f690be8d29ed1550-le32d4.cache-4
ab86e000-ab86f000 r--s 00000000 08:06 2497010    /var/cache/fontconfig/43fe8d6286d5605269a4e8db9003c597-le32d4.cache-4
ab86f000-ab871000 r--s 00000000 08:06 2497009    /var/cache/fontconfig/6af156d354e8d484750865c37e3b0189-le32d4.cache-4
ab871000-ab873000 r--s 00000000 08:06 2497004    /var/cache/fontconfig/8ae0d52750c169de310d0af968c83a14-le32d4.cache-4
ab873000-ab875000 r--s 00000000 08:06 2497003    /var/cache/fontconfig/02843071b06d86c09fd5a46861a747d6-le32d4.cache-4
ab875000-ab87d000 r--s 00000000 08:06 2497000    /var/cache/fontconfig/eec1da544b6dea79174198a09a665442-le32d4.cache-4
ab87d000-ab881000 r--s 00000000 08:06 2496999    /var/cache/fontconfig/50359c3cd0c8e74eb5e0f61c5ee71118-le32d4.cache-4
ab881000-ab888000 r--s 00000000 08:06 2496928    /var/cache/fontconfig/4182da7623890239378b9537539991d7-le32d4.cache-4
ab888000-ab88b000 r--s 00000000 08:06 2496972    /var/cache/fontconfig/4ada019f32fcfd76f8a254c0d8f8c78d-le32d4.cache-4
ab88b000-ab894000 r--s 00000000 08:06 2496958    /var/cache/fontconfig/2d9b79d436f82d409d75f527e8ee5d62-le32d4.cache-4
ab894000-ab897000 r--s 00000000 08:06 2496957    /var/cache/fontconfig/051eeefd7c69db3280d11af51f9ec670-le32d4.cache-4
ab897000-ab89c000 r--s 00000000 08:06 2496948    /var/cache/fontconfig/6c4261f249cbe49ab3ac7f043a418f3e-le32d4.cache-4
ab89c000-ab8af000 r--s 00000000 08:06 2496941    /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le32d4.cache-4
ab8af000-ab8ba000 r-xp 00000000 08:06 2231517    /usr/lib/libnss_files-2.19.so
ab8ba000-ab8bb000 r--p 0000a000 08:06 2231517    /usr/lib/libnss_files-2.19.so
ab8bb000-ab8bc000 rw-p 0000b000 08:06 2231517    /usr/lib/libnss_files-2.19.so
ab8bc000-ab8bd000 ---p 00000000 00:00 0 
ab8bd000-ac0bd000 rw-p 00000000 00:00 0          [stack:5902]
ac0bd000-ac0dd000 r-xp 00000000 08:06 2255355    /usr/lib/libproxy.so.1.0.0
ac0dd000-ac0de000 r--p 0001f000 08:06 2255355    /usr/lib/libproxy.so.1.0.0
ac0de000-ac0df000 rw-p 00020000 08:06 2255355    /usr/lib/libproxy.so.1.0.0
ac0df000-ac0e0000 ---p 00000000 00:00 0 
ac0e0000-ac8e0000 rw-p 00000000 00:00 0          [stack:5901]
ac8e0000-ac8f0000 rw-p 00000000 00:00 0 
ac8f0000-ac8ff000 ---p 00000000 00:00 0 
ac8ff000-ac903000 rw-p 00000000 00:00 0 
ac903000-accff000 ---p 00000000 00:00 0 
accff000-acd00000 ---p 00000000 00:00 0 
acd00000-ad500000 rw-p 00000000 00:00 0          [stack:5900]
ad500000-ad521000 rw-p 00000000 00:00 0 
ad521000-ad600000 ---p 00000000 00:00 0 
ad600000-ad601000 r--s 00000000 08:06 2496975    /var/cache/fontconfig/98f47f39b8a9efdd17b17493e0f78447-le32d4.cache-4
ad601000-ad610000 ---p 00000000 00:00 0 
ad610000-ad630000 rw-p 00000000 00:00 0 
ad630000-ad640000 ---p 00000000 00:00 0 
ad640000-ad650000 rw-p 00000000 00:00 0 
ad650000-ad65e000 ---p 00000000 00:00 0 
ad65e000-ad65f000 ---p 00000000 00:00 0 
ad65f000-ade5f000 rw-p 00000000 00:00 0          [stack:5899]
ade5f000-adf0b000 r-xp 00000000 08:06 2257433    /usr/lib/libgdk-x11-2.0.so.0.2400.22
adf0b000-adf0d000 r--p 000ab000 08:06 2257433    /usr/lib/libgdk-x11-2.0.so.0.2400.22
adf0d000-adf0e000 rw-p 000ad000 08:06 2257433    /usr/lib/libgdk-x11-2.0.so.0.2400.22
adf0e000-ae36c000 r-xp 00000000 08:06 2257434    /usr/lib/libgtk-x11-2.0.so.0.2400.22
ae36c000-ae370000 r--p 0045d000 08:06 2257434    /usr/lib/libgtk-x11-2.0.so.0.2400.22
ae370000-ae372000 rw-p 00461000 08:06 2257434    /usr/lib/libgtk-x11-2.0.so.0.2400.22
ae372000-ae374000 rw-p 00000000 00:00 0 
ae374000-ae3ad000 r-xp 00000000 08:06 2255220    /usr/lib/libnspr4.so
ae3ad000-ae3ae000 r--p 00039000 08:06 2255220    /usr/lib/libnspr4.so
ae3ae000-ae3af000 rw-p 0003a000 08:06 2255220    /usr/lib/libnspr4.so
ae3af000-ae3b1000 rw-p 00000000 00:00 0 
ae3b1000-ae3d2000 r-xp 00000000 08:06 2257787    /usr/lib/libnssutil3.so
ae3d2000-ae3d3000 ---p 00021000 08:06 2257787    /usr/lib/libnssutil3.so
ae3d3000-ae3d6000 r--p 00021000 08:06 2257787    /usr/lib/libnssutil3.so
ae3d6000-ae3d7000 rw-p 00024000 08:06 2257787    /usr/lib/libnssutil3.so
ae3d7000-ae518000 r-xp 00000000 08:06 2257783    /usr/lib/libnss3.so
ae518000-ae51b000 r--p 00140000 08:06 2257783    /usr/lib/libnss3.so
ae51b000-ae51d000 rw-p 00143000 08:06 2257783    /usr/lib/libnss3.so
ae51d000-ae562000 r-xp 00000000 08:06 2257790    /usr/lib/libssl3.so
ae562000-ae564000 r--p 00045000 08:06 2257790    /usr/lib/libssl3.so
ae564000-ae565000 rw-p 00047000 08:06 2257790    /usr/lib/libssl3.so
ae565000-af57c000 r-xp 00000000 08:06 2496138    /usr/lib/mozilla/plugins/libflashplayer.so
af57c000-af5fc000 rw-p 01017000 08:06 2496138    /usr/lib/mozilla/plugins/libflashplayer.so
af5fc000-af6f4000 rw-p 00000000 00:00 0 
af6f4000-af746000 r-xp 00000000 08:06 2257808    /usr/lib/libhunspell-1.3.so.0.0.0
af746000-af747000 r--p 00051000 08:06 2257808    /usr/lib/libhunspell-1.3.so.0.0.0
af747000-af74b000 rw-p 00052000 08:06 2257808    /usr/lib/libhunspell-1.3.so.0.0.0
af74b000-af7f8000 r-xp 00000000 08:06 2261291    /usr/lib/libaspell.so.15.1.5
af7f8000-af7fc000 rw-p 000ad000 08:06 2261291    /usr/lib/libaspell.so.15.1.5
af7fc000-af800000 rw-p 00000000 00:00 0 
af800000-af824000 rw-p 00000000 00:00 0 
af824000-af900000 ---p 00000000 00:00 0 
af900000-af901000 r--s 00000000 08:06 2496973    /var/cache/fontconfig/e2b5c2ac3d980b633571484cf87b989b-le32d4.cache-4
af901000-af902000 r--s 00000000 08:06 2496960    /var/cache/fontconfig/09ca8ed90188d034c8e30ef2c77dd6d3-le32d4.cache-4
af902000-af908000 r--s 00000000 08:06 2496947    /var/cache/fontconfig/4d3c2be9d5e1f073a0a5662bea559c3e-le32d4.cache-4
af908000-af90a000 r--s 00000000 08:06 2496945    /var/cache/fontconfig/c9445dac5d5ba16fc0d083bd4c4094b9-le32d4.cache-4
af90a000-af91c000 r--s 00000000 08:06 2496870    /var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le32d4.cache-4
af91c000-af944000 r-xp 00000000 08:06 2257788    /usr/lib/libsmime3.so
af944000-af946000 r--p 00028000 08:06 2257788    /usr/lib/libsmime3.so
af946000-af947000 rw-p 0002a000 08:06 2257788    /usr/lib/libsmime3.so
af947000-af948000 ---p 00000000 00:00 0 
af948000-b0148000 rw-p 00000000 00:00 0          [stack:5898]
b0148000-b0149000 ---p 00000000 00:00 0 
b0149000-b0249000 rw-p 00000000 00:00 0 
b0249000-b024a000 ---p 00000000 00:00 0 
b024a000-b024b000 ---p 00000000 00:00 0 
b024b000-b0a4b000 rw-p 00000000 00:00 0          [stack:5897]
b0a4b000-b0a84000 r-xp 00000000 08:06 2254958    /usr/lib/libcroco-0.6.so.3.0.1
b0a84000-b0a86000 r--p 00038000 08:06 2254958    /usr/lib/libcroco-0.6.so.3.0.1
b0a86000-b0a87000 rw-p 0003a000 08:06 2254958    /usr/lib/libcroco-0.6.so.3.0.1
b0a87000-b0abd000 r-xp 00000000 08:06 2254964    /usr/lib/librsvg-2.so.2.40.1
b0abd000-b0abe000 r--p 00036000 08:06 2254964    /usr/lib/librsvg-2.so.2.40.1
b0abe000-b0abf000 rw-p 00037000 08:06 2254964    /usr/lib/librsvg-2.so.2.40.1
b0abf000-b0aca000 r--s 00000000 08:06 2496899    /var/cache/fontconfig/a98d8961fa319a64d3cfd8640c79e62d-le32d4.cache-4
b0aca000-b0ad4000 r-xp 00000000 08:06 2496152    /usr/lib/gio/modules/libdconfsettings.so
b0ad4000-b0ad5000 r--p 00009000 08:06 2496152    /usr/lib/gio/modules/libdconfsettings.so
b0ad5000-b0ad6000 rw-p 0000a000 08:06 2496152    /usr/lib/gio/modules/libdconfsettings.so
b0ad6000-b0ada000 r-xp 00000000 08:06 2255222    /usr/lib/libplc4.so
b0ada000-b0adb000 r--p 00003000 08:06 2255222    /usr/lib/libplc4.so
b0adb000-b0adc000 rw-p 00004000 08:06 2255222    /usr/lib/libplc4.so
b0adc000-b0adf000 r-xp 00000000 08:06 2255221    /usr/lib/libplds4.so
b0adf000-b0ae0000 r--p 00002000 08:06 2255221    /usr/lib/libplds4.so
b0ae0000-b0ae1000 rw-p 00003000 08:06 2255221    /usr/lib/libplds4.so
b0ae1000-b0ae2000 r--s 00000000 08:06 2496956    /var/cache/fontconfig/2326523094a6be53c95e28be41832641-le32d4.cache-4
b0ae2000-b0ae3000 r--s 00000000 08:06 2496944    /var/cache/fontconfig/e6e0478654f06dd27252817e316c8a4a-le32d4.cache-4
b0ae3000-b0ae5000 r-xp 00000000 08:06 2884377    /usr/lib/libproxy/0.4.11/modules/network_networkmanager.so
b0ae5000-b0ae6000 r--p 00001000 08:06 2884377    /usr/lib/libproxy/0.4.11/modules/network_networkmanager.so
b0ae6000-b0ae7000 rw-p 00002000 08:06 2884377    /usr/lib/libproxy/0.4.11/modules/network_networkmanager.so
b0ae7000-b0ae9000 r-xp 00000000 08:06 2495596    /usr/lib/gio/modules/libgiolibproxy.so
b0ae9000-b0aea000 r--p 00001000 08:06 2495596    /usr/lib/gio/modules/libgiolibproxy.so
b0aea000-b0aeb000 rw-p 00002000 08:06 2495596    /usr/lib/gio/modules/libgiolibproxy.so
b0aeb000-b0af5000 r--p 00000000 08:06 2367347    /usr/share/glib-2.0/schemas/gschemas.compiled
b0af5000-b0af8000 r-xp 00000000 08:06 2495597    /usr/lib/gio/modules/libgiognomeproxy.so
b0af8000-b0af9000 r--p 00002000 08:06 2495597    /usr/lib/gio/modules/libgiognomeproxy.so
b0af9000-b0afa000 rw-p 00003000 08:06 2495597    /usr/lib/gio/modules/libgiognomeproxy.so
b0afa000-b0afe000 r-xp 00000000 08:06 2261453    /usr/lib/enchant/libenchant_myspell.so
b0afe000-b0aff000 r--p 00003000 08:06 2261453    /usr/lib/enchant/libenchant_myspell.so
b0aff000-b0b00000 rw-p 00004000 08:06 2261453    /usr/lib/enchant/libenchant_myspell.so
b0b00000-b0b21000 rw-p 00000000 00:00 0 
b0b21000-b0c00000 ---p 00000000 00:00 0 
b0c00000-b0c02000 r--s 00000000 08:06 2496943    /var/cache/fontconfig/33f58129975983c0607f205585cf82a1-le32d4.cache-4
b0c02000-b0c04000 r-xp 00000000 08:06 2261452    /usr/lib/enchant/libenchant_aspell.so
b0c04000-b0c05000 r--p 00001000 08:06 2261452    /usr/lib/enchant/libenchant_aspell.so
b0c05000-b0c06000 rw-p 00002000 08:06 2261452    /usr/lib/enchant/libenchant_aspell.so
b0c06000-b0c07000 ---p 00000000 00:00 0 
b0c07000-b0c27000 rw-p 00000000 00:00 0 
b0c27000-b0c28000 ---p 00000000 00:00 0 
b0c28000-b0c29000 ---p 00000000 00:00 0 
b0c29000-b1429000 rw-p 00000000 00:00 0          [stack:5896]
b1429000-b145c000 r-xp 00000000 08:06 2258478    /usr/lib/libbluray.so.1.5.0
b145c000-b145d000 r--p 00032000 08:06 2258478    /usr/lib/libbluray.so.1.5.0
b145d000-b145e000 rw-p 00033000 08:06 2258478    /usr/lib/libbluray.so.1.5.0
b145e000-b1491000 r-xp 00000000 08:06 2258578    /usr/lib/libgvfscommon.so.0.0.0
b1491000-b1493000 r--p 00033000 08:06 2258578    /usr/lib/libgvfscommon.so.0.0.0
b1493000-b1494000 rw-p 00035000 08:06 2258578    /usr/lib/libgvfscommon.so.0.0.0
b1494000-b149c000 r-xp 00000000 08:06 2261425    /usr/lib/libhspell.so.0
b149c000-b149d000 r--p 00007000 08:06 2261425    /usr/lib/libhspell.so.0
b149d000-b149f000 rw-p 00008000 08:06 2261425    /usr/lib/libhspell.so.0
b149f000-b14a1000 r-xp 00000000 08:06 2261454    /usr/lib/enchant/libenchant_hspell.so
b14a1000-b14a2000 r--p 00001000 08:06 2261454    /usr/lib/enchant/libenchant_hspell.so
b14a2000-b14a3000 rw-p 00002000 08:06 2261454    /usr/lib/enchant/libenchant_hspell.so
b14a3000-b14a4000 ---p 00000000 00:00 0 
b14a4000-b14ac000 rw-p 00000000 00:00 0 
b14ac000-b14ad000 ---p 00000000 00:00 0 
b14ad000-b14dd000 r-xp 00000000 08:06 2496158    /usr/lib/gio/modules/libgvfsdbus.so
b14dd000-b14de000 r--p 0002f000 08:06 2496158    /usr/lib/gio/modules/libgvfsdbus.so
b14de000-b14df000 rw-p 00030000 08:06 2496158    /usr/lib/gio/modules/libgvfsdbus.so
b14df000-b16a2000 r--p 00000000 08:06 3023497    /usr/share/themes/Adwaita/gtk-3.0/gtk.gresource
b16a2000-b1867000 r--p 00000000 08:06 2247899    /usr/lib/locale/locale-archive
b1867000-b186e000 rw-p 00000000 00:00 0 
b186e000-b1872000 r-xp 00000000 08:06 2235281    /usr/lib/libuuid.so.1.3.0
b1872000-b1873000 r--p 00003000 08:06 2235281    /usr/lib/libuuid.so.1.3.0
b1873000-b1874000 rw-p 00004000 08:06 2235281    /usr/lib/libuuid.so.1.3.0
b1874000-b1875000 rw-p 00000000 00:00 0 
b1875000-b1878000 r-xp 00000000 08:06 2238528    /usr/lib/libkeyutils.so.1.5
b1878000-b1879000 r--p 00002000 08:06 2238528    /usr/lib/libkeyutils.so.1.5
b1879000-b187a000 rw-p 00003000 08:06 2238528    /usr/lib/libkeyutils.so.1.5
b187a000-b1885000 r-xp 00000000 08:06 2238624    /usr/lib/libkrb5support.so.0.1
b1885000-b1886000 r--p 0000a000 08:06 2238624    /usr/lib/libkrb5support.so.0.1
b1886000-b1887000 rw-p 0000b000 08:06 2238624    /usr/lib/libkrb5support.so.0.1
b1887000-b189d000 r-xp 00000000 08:06 2251650    /usr/lib/libICE.so.6.3.0
b189d000-b189e000 r--p 00015000 08:06 2251650    /usr/lib/libICE.so.6.3.0
b189e000-b189f000 rw-p 00016000 08:06 2251650    /usr/lib/libICE.so.6.3.0
b189f000-b18a1000 rw-p 00000000 00:00 0 
b18a1000-b18a8000 r-xp 00000000 08:06 2251653    /usr/lib/libSM.so.6.0.1
b18a8000-b18a9000 r--p 00006000 08:06 2251653    /usr/lib/libSM.so.6.0.1
b18a9000-b18aa000 rw-p 00007000 08:06 2251653    /usr/lib/libSM.so.6.0.1
b18aa000-b18cf000 r-xp 00000000 08:06 2239755    /usr/lib/liblzma.so.5.0.5
b18cf000-b18d0000 r--p 00024000 08:06 2239755    /usr/lib/liblzma.so.5.0.5
b18d0000-b18d1000 rw-p 00025000 08:06 2239755    /usr/lib/liblzma.so.5.0.5
b18d1000-b18d2000 rw-p 00000000 00:00 0 
b18d2000-b18d5000 r-xp 00000000 08:06 2239723    /usr/lib/libgpg-error.so.0.10.0
b18d5000-b18d6000 r--p 00003000 08:06 2239723    /usr/lib/libgpg-error.so.0.10.0
b18d6000-b18d7000 rw-p 00004000 08:06 2239723    /usr/lib/libgpg-error.so.0.10.0
b18d7000-b1976000 r-xp 00000000 08:06 2239736    /usr/lib/libgcrypt.so.20.0.1
b1976000-b1977000 ---p 0009f000 08:06 2239736    /usr/lib/libgcrypt.so.20.0.1
b1977000-b1978000 r--p 0009f000 08:06 2239736    /usr/lib/libgcrypt.so.20.0.1
b1978000-b197b000 rw-p 000a0000 08:06 2239736    /usr/lib/libgcrypt.so.20.0.1
b197b000-b1a07000 r-xp 00000000 08:06 2253686    /usr/lib/liborc-0.4.so.0.18.0
b1a07000-b1a08000 r--p 0008c000 08:06 2253686    /usr/lib/liborc-0.4.so.0.18.0
b1a08000-b1a0c000 rw-p 0008d000 08:06 2253686    /usr/lib/liborc-0.4.so.0.18.0
b1a0c000-b1a42000 r-xp 00000000 08:06 2261837    /usr/lib/libgsttag-1.0.so.0.203.0
b1a42000-b1a43000 r--p 00035000 08:06 2261837    /usr/lib/libgsttag-1.0.so.0.203.0
b1a43000-b1a44000 rw-p 00036000 08:06 2261837    /usr/lib/libgsttag-1.0.so.0.203.0
b1a44000-b1a45000 rw-p 00000000 00:00 0 
b1a45000-b30b0000 r--p 00000000 08:06 2254457    /usr/lib/libicudata.so.52.1
b30b0000-b30b1000 r--p 0166a000 08:06 2254457    /usr/lib/libicudata.so.52.1
b30b1000-b30b5000 r-xp 00000000 08:06 2252116    /usr/lib/libXxf86vm.so.1.0.0
b30b5000-b30b6000 r--p 00004000 08:06 2252116    /usr/lib/libXxf86vm.so.1.0.0
b30b6000-b30b7000 rw-p 00005000 08:06 2252116    /usr/lib/libXxf86vm.so.1.0.0
b30b7000-b30ce000 r-xp 00000000 08:06 2250313    /usr/lib/libxcb-glx.so.0.0.0
b30ce000-b30cf000 r--p 00017000 08:06 2250313    /usr/lib/libxcb-glx.so.0.0.0
b30cf000-b30d0000 rw-p 00018000 08:06 2250313    /usr/lib/libxcb-glx.so.0.0.0
b30d0000-b30dc000 r-xp 00000000 08:06 2247982    /usr/lib/libdrm.so.2.4.0
b30dc000-b30dd000 r--p 0000b000 08:06 2247982    /usr/lib/libdrm.so.2.4.0
b30dd000-b30de000 rw-p 0000c000 08:06 2247982    /usr/lib/libdrm.so.2.4.0
b30de000-b30ef000 r-xp 00000000 08:06 2240156    /usr/lib/libudev.so.1.4.0
b30ef000-b30f0000 r--p 00010000 08:06 2240156    /usr/lib/libudev.so.1.4.0
b30f0000-b30f1000 rw-p 00011000 08:06 2240156    /usr/lib/libudev.so.1.4.0
b30f1000-b30f2000 rw-p 00000000 00:00 0 
b30f2000-b3102000 r-xp 00000000 08:06 2252198    /usr/lib/libglapi.so.0.0.0
b3102000-b3104000 r--p 0000f000 08:06 2252198    /usr/lib/libglapi.so.0.0.0
b3104000-b3109000 rwxp 00011000 08:06 2252198    /usr/lib/libglapi.so.0.0.0
b3109000-b310a000 rwxp 00000000 00:00 0 
b310a000-b3117000 r-xp 00000000 08:06 2251996    /usr/lib/libwayland-server.so.0.1.0
b3117000-b3118000 r--p 0000d000 08:06 2251996    /usr/lib/libwayland-server.so.0.1.0
b3118000-b3119000 rw-p 0000e000 08:06 2251996    /usr/lib/libwayland-server.so.0.1.0
b3119000-b311f000 r-xp 00000000 08:06 2252188    /usr/lib/libgbm.so.1.0.0
b311f000-b3120000 r--p 00005000 08:06 2252188    /usr/lib/libgbm.so.1.0.0
b3120000-b3121000 rw-p 00006000 08:06 2252188    /usr/lib/libgbm.so.1.0.0
b3121000-b3123000 r-xp 00000000 08:06 2250324    /usr/lib/libxcb-shape.so.0.0.0
b3123000-b3124000 r--p 00002000 08:06 2250324    /usr/lib/libxcb-shape.so.0.0.0
b3124000-b3125000 rw-p 00003000 08:06 2250324    /usr/lib/libxcb-shape.so.0.0.0
b3125000-b312b000 r-xp 00000000 08:06 2250306    /usr/lib/libxcb-xfixes.so.0.0.0
b312b000-b312c000 r--p 00005000 08:06 2250306    /usr/lib/libxcb-xfixes.so.0.0.0
b312c000-b312d000 rw-p 00006000 08:06 2250306    /usr/lib/libxcb-xfixes.so.0.0.0
b312d000-b312e000 rw-p 00000000 00:00 0 
b312e000-b3132000 r-xp 00000000 08:06 2250339    /usr/lib/libxcb-dri2.so.0.0.0
b3132000-b3133000 r--p 00003000 08:06 2250339    /usr/lib/libxcb-dri2.so.0.0.0
b3133000-b3134000 rw-p 00004000 08:06 2250339    /usr/lib/libxcb-dri2.so.0.0.0
b3134000-b3135000 r-xp 00000000 08:06 2250425    /usr/lib/libX11-xcb.so.1.0.0
b3135000-b3136000 r--p 00000000 08:06 2250425    /usr/lib/libX11-xcb.so.1.0.0
b3136000-b3137000 rw-p 00001000 08:06 2250425    /usr/lib/libX11-xcb.so.1.0.0
b3137000-b3153000 r-xp 00000000 08:06 2254639    /usr/lib/libgraphite2.so.3.0.1
b3153000-b3154000 r--p 0001c000 08:06 2254639    /usr/lib/libgraphite2.so.3.0.1
b3154000-b3155000 rw-p 0001d000 08:06 2254639    /usr/lib/libgraphite2.so.3.0.1
b3155000-b317b000 r-xp 00000000 08:06 2239352    /usr/lib/libexpat.so.1.6.0
b317b000-b317d000 r--p 00025000 08:06 2239352    /usr/lib/libexpat.so.1.6.0
b317d000-b317e000 rw-p 00027000 08:06 2239352    /usr/lib/libexpat.so.1.6.0
b317e000-b318e000 r-xp 00000000 08:06 2234510    /usr/lib/libbz2.so.1.0.6
b318e000-b318f000 rw-p 00010000 08:06 2234510    /usr/lib/libbz2.so.1.0.6
b318f000-b3190000 rw-p 00000000 00:00 0 
b3190000-b31b8000 r-xp 00000000 08:06 2259164    /usr/lib/libatspi.so.0.0.1
b31b8000-b31ba000 r--p 00027000 08:06 2259164    /usr/lib/libatspi.so.0.0.1
b31ba000-b31bb000 rw-p 00029000 08:06 2259164    /usr/lib/libatspi.so.0.0.1
b31bb000-b31be000 r-xp 00000000 08:06 2235618    /usr/lib/libcom_err.so.2.1
b31be000-b31bf000 r--p 00002000 08:06 2235618    /usr/lib/libcom_err.so.2.1
b31bf000-b31c0000 rw-p 00003000 08:06 2235618    /usr/lib/libcom_err.so.2.1
b31c0000-b31f0000 r-xp 00000000 08:06 2238622    /usr/lib/libk5crypto.so.3.1
b31f0000-b31f1000 r--p 0002f000 08:06 2238622    /usr/lib/libk5crypto.so.3.1
b31f1000-b31f2000 rw-p 00030000 08:06 2238622    /usr/lib/libk5crypto.so.3.1
b31f2000-b31f3000 rw-p 00000000 00:00 0 
b31f3000-b32b9000 r-xp 00000000 08:06 2238601    /usr/lib/libkrb5.so.3.3
b32b9000-b32bf000 r--p 000c6000 08:06 2238601    /usr/lib/libkrb5.so.3.3
b32bf000-b32c1000 rw-p 000cc000 08:06 2238601    /usr/lib/libkrb5.so.3.3
b32c1000-b32c2000 rw-p 00000000 00:00 0 
b32c2000-b3308000 r-xp 00000000 08:06 2238620    /usr/lib/libgssapi_krb5.so.2.2
b3308000-b3309000 r--p 00046000 08:06 2238620    /usr/lib/libgssapi_krb5.so.2.2
b3309000-b330a000 rw-p 00047000 08:06 2238620    /usr/lib/libgssapi_krb5.so.2.2
b330a000-b34ba000 r-xp 00000000 08:06 2238148    /usr/lib/libcrypto.so.1.0.0
b34ba000-b34c9000 r--p 001b0000 08:06 2238148    /usr/lib/libcrypto.so.1.0.0
b34c9000-b34d0000 rw-p 001bf000 08:06 2238148    /usr/lib/libcrypto.so.1.0.0
b34d0000-b34d3000 rw-p 00000000 00:00 0 
b34d3000-b3532000 r-xp 00000000 08:06 2238147    /usr/lib/libssl.so.1.0.0
b3532000-b3534000 r--p 0005f000 08:06 2238147    /usr/lib/libssl.so.1.0.0
b3534000-b3538000 rw-p 00061000 08:06 2238147    /usr/lib/libssl.so.1.0.0
b3538000-b355f000 r-xp 00000000 08:06 2245109    /usr/lib/libssh2.so.1.0.1
b355f000-b3560000 ---p 00027000 08:06 2245109    /usr/lib/libssh2.so.1.0.1
b3560000-b3561000 r--p 00027000 08:06 2245109    /usr/lib/libssh2.so.1.0.1
b3561000-b3562000 rw-p 00028000 08:06 2245109    /usr/lib/libssh2.so.1.0.1
b3562000-b3567000 r-xp 00000000 08:06 2247931    /usr/lib/libXdmcp.so.6.0.0
b3567000-b3568000 r--p 00004000 08:06 2247931    /usr/lib/libXdmcp.so.6.0.0
b3568000-b3569000 rw-p 00005000 08:06 2247931    /usr/lib/libXdmcp.so.6.0.0
b3569000-b356a000 rw-p 00000000 00:00 0 
b356a000-b356c000 r-xp 00000000 08:06 2247999    /usr/lib/libXau.so.6.0.0
b356c000-b356d000 r--p 00001000 08:06 2247999    /usr/lib/libXau.so.6.0.0
b356d000-b356e000 rw-p 00002000 08:06 2247999    /usr/lib/libXau.so.6.0.0
b356e000-b3589000 r-xp 00000000 08:06 2235692    /usr/lib/libgcc_s.so.1
b3589000-b358a000 rw-p 0001a000 08:06 2235692    /usr/lib/libgcc_s.so.1
b358a000-b3667000 r-xp 00000000 08:06 2235701    /usr/lib/libstdc++.so.6.0.19
b3667000-b366b000 r--p 000dc000 08:06 2235701    /usr/lib/libstdc++.so.6.0.19
b366b000-b366c000 rw-p 000e0000 08:06 2235701    /usr/lib/libstdc++.so.6.0.19
b366c000-b3673000 rw-p 00000000 00:00 0 
b3673000-b36cc000 r-xp 00000000 08:06 2251959    /usr/lib/libXt.so.6.0.0
b36cc000-b36cd000 r--p 00058000 08:06 2251959    /usr/lib/libXt.so.6.0.0
b36cd000-b36d0000 rw-p 00059000 08:06 2251959    /usr/lib/libXt.so.6.0.0
b36d0000-b371e000 r-xp 00000000 08:06 2261898    /usr/lib/libwebp.so.5.0.0
b371e000-b371f000 r--p 0004e000 08:06 2261898    /usr/lib/libwebp.so.5.0.0
b371f000-b3720000 rw-p 0004f000 08:06 2261898    /usr/lib/libwebp.so.5.0.0
b3720000-b3723000 rw-p 00000000 00:00 0 
b3723000-b3885000 r-xp 00000000 08:06 2254456    /usr/lib/libicuuc.so.52.1
b3885000-b388f000 r--p 00161000 08:06 2254456    /usr/lib/libicuuc.so.52.1
b388f000-b3890000 rw-p 0016b000 08:06 2254456    /usr/lib/libicuuc.so.52.1
b3890000-b3894000 rw-p 00000000 00:00 0 
b3894000-b3a99000 r-xp 00000000 08:06 2254449    /usr/lib/libicui18n.so.52.1
b3a99000-b3a9a000 ---p 00205000 08:06 2254449    /usr/lib/libicui18n.so.52.1
b3a9a000-b3aa1000 r--p 00205000 08:06 2254449    /usr/lib/libicui18n.so.52.1
b3aa1000-b3aa2000 rw-p 0020c000 08:06 2254449    /usr/lib/libicui18n.so.52.1
b3aa2000-b3aa3000 rw-p 00000000 00:00 0 
b3aa3000-b3b5d000 r-xp 00000000 08:06 2252366    /usr/lib/libsqlite3.so.0.8.6
b3b5d000-b3b5f000 r--p 000b9000 08:06 2252366    /usr/lib/libsqlite3.so.0.8.6
b3b5f000-b3b61000 rw-p 000bb000 08:06 2252366    /usr/lib/libsqlite3.so.0.8.6
b3b61000-b3cb4000 r-xp 00000000 08:06 2253549    /usr/lib/libxml2.so.2.9.1
b3cb4000-b3cb5000 ---p 00153000 08:06 2253549    /usr/lib/libxml2.so.2.9.1
b3cb5000-b3cb9000 r--p 00153000 08:06 2253549    /usr/lib/libxml2.so.2.9.1
b3cb9000-b3cba000 rw-p 00157000 08:06 2253549    /usr/lib/libxml2.so.2.9.1
b3cba000-b3cbb000 rw-p 00000000 00:00 0 
b3cbb000-b3cf7000 r-xp 00000000 08:06 2254432    /usr/lib/libxslt.so.1.1.28
b3cf7000-b3cf8000 r--p 0003b000 08:06 2254432    /usr/lib/libxslt.so.1.1.28
b3cf8000-b3cf9000 rw-p 0003c000 08:06 2254432    /usr/lib/libxslt.so.1.1.28
b3cf9000-b3cfa000 rw-p 00000000 00:00 0 
b3cfa000-b3d45000 r-xp 00000000 08:06 2258463    /usr/lib/libsecret-1.so.0.0.0
b3d45000-b3d47000 r--p 0004a000 08:06 2258463    /usr/lib/libsecret-1.so.0.0.0
b3d47000-b3d48000 rw-p 0004c000 08:06 2258463    /usr/lib/libsecret-1.so.0.0.0
b3d48000-b3d91000 r-xp 00000000 08:06 2254065    /usr/lib/libjpeg.so.8.0.2
b3d91000-b3d92000 r--p 00048000 08:06 2254065    /usr/lib/libjpeg.so.8.0.2
b3d92000-b3d93000 rw-p 00049000 08:06 2254065    /usr/lib/libjpeg.so.8.0.2
b3d93000-b3da3000 rw-p 00000000 00:00 0 
b3da3000-b3ea0000 r-xp 00000000 08:06 2261662    /usr/lib/libgstreamer-1.0.so.0.203.0
b3ea0000-b3ea3000 r--p 000fc000 08:06 2261662    /usr/lib/libgstreamer-1.0.so.0.203.0
b3ea3000-b3ea4000 rw-p 000ff000 08:06 2261662    /usr/lib/libgstreamer-1.0.so.0.203.0
b3ea4000-b3ea5000 rw-p 00000000 00:00 0 
b3ea5000-b3f06000 r-xp 00000000 08:06 2261663    /usr/lib/libgstbase-1.0.so.0.203.0
b3f06000-b3f07000 r--p 00061000 08:06 2261663    /usr/lib/libgstbase-1.0.so.0.203.0
b3f07000-b3f08000 rw-p 00062000 08:06 2261663    /usr/lib/libgstbase-1.0.so.0.203.0
b3f08000-b3f4b000 r-xp 00000000 08:06 2261842    /usr/lib/libgstvideo-1.0.so.0.203.0
b3f4b000-b3f4c000 r--p 00043000 08:06 2261842    /usr/lib/libgstvideo-1.0.so.0.203.0
b3f4c000-b3f4f000 rw-p 00044000 08:06 2261842    /usr/lib/libgstvideo-1.0.so.0.203.0
b3f4f000-b3f50000 rw-p 00000000 00:00 0 
b3f50000-b3f72000 r-xp 00000000 08:06 2261844    /usr/lib/libgstpbutils-1.0.so.0.203.0
b3f72000-b3f73000 ---p 00022000 08:06 2261844    /usr/lib/libgstpbutils-1.0.so.0.203.0
b3f73000-b3f74000 r--p 00022000 08:06 2261844    /usr/lib/libgstpbutils-1.0.so.0.203.0
b3f74000-b3f75000 rw-p 00023000 08:06 2261844    /usr/lib/libgstpbutils-1.0.so.0.203.0
b3f75000-b3f7f000 r-xp 00000000 08:06 2261838    /usr/lib/libgstfft-1.0.so.0.203.0
b3f7f000-b3f80000 r--p 00009000 08:06 2261838    /usr/lib/libgstfft-1.0.so.0.203.0
b3f80000-b3f81000 rw-p 0000a000 08:06 2261838    /usr/lib/libgstfft-1.0.so.0.203.0
b3f81000-b3fd0000 r-xp 00000000 08:06 2261843    /usr/lib/libgstaudio-1.0.so.0.203.0
b3fd0000-b3fd1000 r--p 0004e000 08:06 2261843    /usr/lib/libgstaudio-1.0.so.0.203.0
b3fd1000-b3fd2000 rw-p 0004f000 08:06 2261843    /usr/lib/libgstaudio-1.0.so.0.203.0
b3fd2000-b3fdd000 r-xp 00000000 08:06 2261846    /usr/lib/libgstapp-1.0.so.0.203.0
b3fdd000-b3fde000 r--p 0000b000 08:06 2261846    /usr/lib/libgstapp-1.0.so.0.203.0
b3fde000-b3fdf000 rw-p 0000c000 08:06 2261846    /usr/lib/libgstapp-1.0.so.0.203.0
b3fdf000-b3ff2000 r-xp 00000000 08:06 2261469    /usr/lib/libgeoclue.so.0.0.0
b3ff2000-b3ff3000 r--p 00012000 08:06 2261469    /usr/lib/libgeoclue.so.0.0.0
b3ff3000-b3ff4000 rw-p 00013000 08:06 2261469    /usr/lib/libgeoclue.so.0.0.0
b3ff4000-b3ff5000 rw-p 00000000 00:00 0 
b3ff5000-b3ff7000 r-xp 00000000 08:06 2261917    /usr/lib/libharfbuzz-icu.so.0.926.0
b3ff7000-b3ff8000 r--p 00001000 08:06 2261917    /usr/lib/libharfbuzz-icu.so.0.926.0
b3ff8000-b3ff9000 rw-p 00002000 08:06 2261917    /usr/lib/libharfbuzz-icu.so.0.926.0
b3ff9000-b4003000 r-xp 00000000 08:06 2261450    /usr/lib/libenchant.so.1.6.0
b4003000-b4004000 r--p 00009000 08:06 2261450    /usr/lib/libenchant.so.1.6.0
b4004000-b4005000 rw-p 0000a000 08:06 2261450    /usr/lib/libenchant.so.1.6.0
b4005000-b4018000 r-xp 00000000 08:06 2231484    /usr/lib/libresolv-2.19.so
b4018000-b4019000 ---p 00013000 08:06 2231484    /usr/lib/libresolv-2.19.so
b4019000-b401a000 r--p 00013000 08:06 2231484    /usr/lib/libresolv-2.19.so
b401a000-b401b000 rw-p 00014000 08:06 2231484    /usr/lib/libresolv-2.19.so
b401b000-b401d000 rw-p 00000000 00:00 0 
b401d000-b4086000 r-xp 00000000 08:06 2239489    /usr/lib/libpcre.so.1.2.2
b4086000-b4087000 r--p 00068000 08:06 2239489    /usr/lib/libpcre.so.1.2.2
b4087000-b4088000 rw-p 00069000 08:06 2239489    /usr/lib/libpcre.so.1.2.2
b4088000-b408d000 r-xp 00000000 08:06 2239511    /usr/lib/libffi.so.6.0.1
b408d000-b408e000 r--p 00005000 08:06 2239511    /usr/lib/libffi.so.6.0.1
b408e000-b408f000 rw-p 00006000 08:06 2239511    /usr/lib/libffi.so.6.0.1
b408f000-b4090000 rw-p 00000000 00:00 0 
b4090000-b40e3000 r-xp 00000000 08:06 2252193    /usr/lib/mesa-libGL.so.1.2.0
b40e3000-b40e5000 r--p 00053000 08:06 2252193    /usr/lib/mesa-libGL.so.1.2.0
b40e5000-b40ea000 rwxp 00055000 08:06 2252193    /usr/lib/mesa-libGL.so.1.2.0
b40ea000-b40ff000 r-xp 00000000 08:06 2234518    /usr/lib/libz.so.1.2.8
b40ff000-b4100000 r--p 00014000 08:06 2234518    /usr/lib/libz.so.1.2.8
b4100000-b4101000 rw-p 00015000 08:06 2234518    /usr/lib/libz.so.1.2.8
b4101000-b410a000 r-xp 00000000 08:06 2254087    /usr/lib/libXrender.so.1.3.0
b410a000-b410b000 r--p 00008000 08:06 2254087    /usr/lib/libXrender.so.1.3.0
b410b000-b410c000 rw-p 00009000 08:06 2254087    /usr/lib/libXrender.so.1.3.0
b410c000-b4115000 r-xp 00000000 08:06 2250309    /usr/lib/libxcb-render.so.0.0.0
b4115000-b4116000 r--p 00008000 08:06 2250309    /usr/lib/libxcb-render.so.0.0.0
b4116000-b4117000 rw-p 00009000 08:06 2250309    /usr/lib/libxcb-render.so.0.0.0
b4117000-b4119000 r-xp 00000000 08:06 2250336    /usr/lib/libxcb-shm.so.0.0.0
b4119000-b411a000 r--p 00001000 08:06 2250336    /usr/lib/libxcb-shm.so.0.0.0
b411a000-b411b000 rw-p 00002000 08:06 2250336    /usr/lib/libxcb-shm.so.0.0.0
b411b000-b411c000 rw-p 00000000 00:00 0 
b411c000-b4153000 r-xp 00000000 08:06 2247938    /usr/lib/libpng16.so.16.9.0
b4153000-b4154000 r--p 00036000 08:06 2247938    /usr/lib/libpng16.so.16.9.0
b4154000-b4155000 rw-p 00037000 08:06 2247938    /usr/lib/libpng16.so.16.9.0
b4155000-b4158000 r-xp 00000000 08:06 2231490    /usr/lib/libdl-2.19.so
b4158000-b4159000 r--p 00002000 08:06 2231490    /usr/lib/libdl-2.19.so
b4159000-b415a000 rw-p 00003000 08:06 2231490    /usr/lib/libdl-2.19.so
b415a000-b417b000 r-xp 00000000 08:06 2252202    /usr/lib/libEGL.so.1.0.0
b417b000-b417c000 r--p 00021000 08:06 2252202    /usr/lib/libEGL.so.1.0.0
b417c000-b417d000 rw-p 00022000 08:06 2252202    /usr/lib/libEGL.so.1.0.0
b417d000-b4224000 r-xp 00000000 08:06 2247996    /usr/lib/libpixman-1.so.0.32.4
b4224000-b4229000 r--p 000a7000 08:06 2247996    /usr/lib/libpixman-1.so.0.32.4
b4229000-b422a000 rw-p 000ac000 08:06 2247996    /usr/lib/libpixman-1.so.0.32.4
b422a000-b42dc000 r-xp 00000000 08:06 2251281    /usr/lib/libfreetype.so.6.11.1
b42dc000-b42e0000 r--p 000b1000 08:06 2251281    /usr/lib/libfreetype.so.6.11.1
b42e0000-b42e3000 rw-p 000b5000 08:06 2251281    /usr/lib/libfreetype.so.6.11.1
b42e3000-b42e5000 rw-p 00000000 00:00 0 
b42e5000-b433a000 r-xp 00000000 08:06 2254651    /usr/lib/libharfbuzz.so.0.926.0
b433a000-b433b000 r--p 00054000 08:06 2254651    /usr/lib/libharfbuzz.so.0.926.0
b433b000-b433c000 rw-p 00055000 08:06 2254651    /usr/lib/libharfbuzz.so.0.926.0
b433c000-b433d000 r-xp 00000000 08:06 2239602    /usr/lib/libgthread-2.0.so.0.3800.2
b433d000-b433e000 r--p 00000000 08:06 2239602    /usr/lib/libgthread-2.0.so.0.3800.2
b433e000-b433f000 rw-p 00001000 08:06 2239602    /usr/lib/libgthread-2.0.so.0.3800.2
b433f000-b4346000 r-xp 00000000 08:06 2231519    /usr/lib/librt-2.19.so
b4346000-b4347000 r--p 00006000 08:06 2231519    /usr/lib/librt-2.19.so
b4347000-b4348000 rw-p 00007000 08:06 2231519    /usr/lib/librt-2.19.so
b4348000-b4359000 r-xp 00000000 08:06 2251639    /usr/lib/libXext.so.6.4.0
b4359000-b435a000 r--p 00010000 08:06 2251639    /usr/lib/libXext.so.6.4.0
b435a000-b435b000 rw-p 00011000 08:06 2251639    /usr/lib/libXext.so.6.4.0
b435b000-b435f000 r-xp 00000000 08:06 2251998    /usr/lib/libwayland-cursor.so.0.0.0
b435f000-b4360000 r--p 00003000 08:06 2251998    /usr/lib/libwayland-cursor.so.0.0.0
b4360000-b4364000 rw-p 00004000 08:06 2251998    /usr/lib/libwayland-cursor.so.0.0.0
b4364000-b4365000 rw-p 00000000 00:00 0 
b4365000-b439e000 r-xp 00000000 08:06 2259225    /usr/lib/libxkbcommon.so.0.0.0
b439e000-b439f000 r--p 00038000 08:06 2259225    /usr/lib/libxkbcommon.so.0.0.0
b439f000-b43a0000 rw-p 00039000 08:06 2259225    /usr/lib/libxkbcommon.so.0.0.0
b43a0000-b43aa000 r-xp 00000000 08:06 2251997    /usr/lib/libwayland-client.so.0.2.0
b43aa000-b43ab000 r--p 00009000 08:06 2251997    /usr/lib/libwayland-client.so.0.2.0
b43ab000-b43ac000 rw-p 0000a000 08:06 2251997    /usr/lib/libwayland-client.so.0.2.0
b43ac000-b43ae000 r-xp 00000000 08:06 2252134    /usr/lib/libXdamage.so.1.1.0
b43ae000-b43af000 r--p 00001000 08:06 2252134    /usr/lib/libXdamage.so.1.1.0
b43af000-b43b0000 rw-p 00002000 08:06 2252134    /usr/lib/libXdamage.so.1.1.0
b43b0000-b43b2000 r-xp 00000000 08:06 2257215    /usr/lib/libXcomposite.so.1.0.0
b43b2000-b43b3000 r--p 00001000 08:06 2257215    /usr/lib/libXcomposite.so.1.0.0
b43b3000-b43b4000 rw-p 00002000 08:06 2257215    /usr/lib/libXcomposite.so.1.0.0
b43b4000-b43bd000 r-xp 00000000 08:06 2257076    /usr/lib/libXcursor.so.1.0.2
b43bd000-b43be000 r--p 00009000 08:06 2257076    /usr/lib/libXcursor.so.1.0.2
b43be000-b43bf000 rw-p 0000a000 08:06 2257076    /usr/lib/libXcursor.so.1.0.2
b43bf000-b43c0000 rw-p 00000000 00:00 0 
b43c0000-b43c9000 r-xp 00000000 08:06 2257025    /usr/lib/libXrandr.so.2.2.0
b43c9000-b43ca000 r--p 00008000 08:06 2257025    /usr/lib/libXrandr.so.2.2.0
b43ca000-b43cb000 rw-p 00009000 08:06 2257025    /usr/lib/libXrandr.so.2.2.0
b43cb000-b43cd000 r-xp 00000000 08:06 2257011    /usr/lib/libXinerama.so.1.0.0
b43cd000-b43ce000 r--p 00001000 08:06 2257011    /usr/lib/libXinerama.so.1.0.0
b43ce000-b43cf000 rw-p 00002000 08:06 2257011    /usr/lib/libXinerama.so.1.0.0
b43cf000-b4413000 r-xp 00000000 08:06 2231481    /usr/lib/libm-2.19.so
b4413000-b4414000 r--p 00043000 08:06 2231481    /usr/lib/libm-2.19.so
b4414000-b4415000 rw-p 00044000 08:06 2231481    /usr/lib/libm-2.19.so
b4415000-b444e000 r-xp 00000000 08:06 2254902    /usr/lib/libfontconfig.so.1.8.0
b444e000-b444f000 r--p 00039000 08:06 2254902    /usr/lib/libfontconfig.so.1.8.0
b444f000-b4450000 rw-p 0003a000 08:06 2254902    /usr/lib/libfontconfig.so.1.8.0
b4450000-b4464000 r-xp 00000000 08:06 2254946    /usr/lib/libpangoft2-1.0.so.0.3600.2
b4464000-b4465000 r--p 00013000 08:06 2254946    /usr/lib/libpangoft2-1.0.so.0.3600.2
b4465000-b4466000 rw-p 00014000 08:06 2254946    /usr/lib/libpangoft2-1.0.so.0.3600.2
b4466000-b4467000 rw-p 00000000 00:00 0 
b4467000-b448f000 r-xp 00000000 08:06 2259220    /usr/lib/libatk-bridge-2.0.so.0.0.0
b448f000-b4490000 r--p 00027000 08:06 2259220    /usr/lib/libatk-bridge-2.0.so.0.0.0
b4490000-b4491000 rw-p 00028000 08:06 2259220    /usr/lib/libatk-bridge-2.0.so.0.0.0
b4491000-b4495000 r-xp 00000000 08:06 2252125    /usr/lib/libXfixes.so.3.1.0
b4495000-b4496000 r--p 00003000 08:06 2252125    /usr/lib/libXfixes.so.3.1.0
b4496000-b4497000 rw-p 00004000 08:06 2252125    /usr/lib/libXfixes.so.3.1.0
b4497000-b44a6000 r-xp 00000000 08:06 2256803    /usr/lib/libXi.so.6.1.0
b44a6000-b44a7000 r--p 0000e000 08:06 2256803    /usr/lib/libXi.so.6.1.0
b44a7000-b44a8000 rw-p 0000f000 08:06 2256803    /usr/lib/libXi.so.6.1.0
b44a8000-b45db000 r-xp 00000000 08:06 2250427    /usr/lib/libX11.so.6.3.0
b45db000-b45dc000 r--p 00132000 08:06 2250427    /usr/lib/libX11.so.6.3.0
b45dc000-b45df000 rw-p 00133000 08:06 2250427    /usr/lib/libX11.so.6.3.0
b45df000-b45e2000 r-xp 00000000 08:06 2239601    /usr/lib/libgmodule-2.0.so.0.3800.2
b45e2000-b45e3000 r--p 00002000 08:06 2239601    /usr/lib/libgmodule-2.0.so.0.3800.2
b45e3000-b45e4000 rw-p 00003000 08:06 2239601    /usr/lib/libgmodule-2.0.so.0.3800.2
b45e4000-b45e5000 rw-p 00000000 00:00 0 
b45e5000-b478c000 r-xp 00000000 08:06 2231525    /usr/lib/libc-2.19.so
b478c000-b478e000 r--p 001a7000 08:06 2231525    /usr/lib/libc-2.19.so
b478e000-b478f000 rw-p 001a9000 08:06 2231525    /usr/lib/libc-2.19.so
b478f000-b4792000 rw-p 00000000 00:00 0 
b4792000-b47aa000 r-xp 00000000 08:06 2231540    /usr/lib/libpthread-2.19.so
b47aa000-b47ab000 r--p 00017000 08:06 2231540    /usr/lib/libpthread-2.19.so
b47ab000-b47ac000 rw-p 00018000 08:06 2231540    /usr/lib/libpthread-2.19.so
b47ac000-b47ae000 rw-p 00000000 00:00 0 
b47ae000-b48a2000 r-xp 00000000 08:06 2253393    /usr/lib/libasound.so.2.0.0
b48a2000-b48a6000 r--p 000f3000 08:06 2253393    /usr/lib/libasound.so.2.0.0
b48a6000-b48a7000 rw-p 000f7000 08:06 2253393    /usr/lib/libasound.so.2.0.0
b48a7000-b48f1000 r-xp 00000000 08:06 2239344    /usr/lib/libdbus-1.so.3.8.3
b48f1000-b48f2000 r--p 00049000 08:06 2239344    /usr/lib/libdbus-1.so.3.8.3
b48f2000-b48f3000 rw-p 0004a000 08:06 2239344    /usr/lib/libdbus-1.so.3.8.3
b48f3000-b4918000 r-xp 00000000 08:06 2255256    /usr/lib/libdbus-glib-1.so.2.2.2
b4918000-b4919000 r--p 00024000 08:06 2255256    /usr/lib/libdbus-glib-1.so.2.2.2
b4919000-b491a000 rw-p 00025000 08:06 2255256    /usr/lib/libdbus-glib-1.so.2.2.2
b491a000-b491b000 rw-p 00000000 00:00 0 
b491b000-b4985000 r-xp 00000000 08:06 2245181    /usr/lib/libcurl.so.4.3.0
b4985000-b4986000 ---p 0006a000 08:06 2245181    /usr/lib/libcurl.so.4.3.0
b4986000-b4987000 r--p 0006a000 08:06 2245181    /usr/lib/libcurl.so.4.3.0
b4987000-b4988000 rw-p 0006b000 08:06 2245181    /usr/lib/libcurl.so.4.3.0
b4988000-b4993000 r-xp 00000000 08:06 2262343    /usr/lib/libjansson.so.4.5.0
b4993000-b4994000 r--p 0000a000 08:06 2262343    /usr/lib/libjansson.so.4.5.0
b4994000-b4995000 rw-p 0000b000 08:06 2262343    /usr/lib/libjansson.so.4.5.0
b4995000-b49b6000 r-xp 00000000 08:06 2250327    /usr/lib/libxcb.so.1.1.0
b49b6000-b49b7000 r--p 00020000 08:06 2250327    /usr/lib/libxcb.so.1.1.0
b49b7000-b49b8000 rw-p 00021000 08:06 2250327    /usr/lib/libxcb.so.1.1.0
b49b8000-b49bd000 r-xp 00000000 08:06 2262350    /usr/lib/libxcb-icccm.so.4.0.0
b49bd000-b49be000 r--p 00004000 08:06 2262350    /usr/lib/libxcb-icccm.so.4.0.0
b49be000-b49bf000 rw-p 00005000 08:06 2262350    /usr/lib/libxcb-icccm.so.4.0.0
b49bf000-b49cc000 r-xp 00000000 08:06 2262353    /usr/lib/libxcb-ewmh.so.2.0.0
b49cc000-b49cd000 r--p 0000d000 08:06 2262353    /usr/lib/libxcb-ewmh.so.2.0.0
b49cd000-b49ce000 rw-p 0000e000 08:06 2262353    /usr/lib/libxcb-ewmh.so.2.0.0
b49ce000-b49cf000 rw-p 00000000 00:00 0 
b49cf000-b49d3000 r-xp 00000000 08:06 2252271    /usr/lib/libxcb-util.so.1.0.0
b49d3000-b49d4000 r--p 00003000 08:06 2252271    /usr/lib/libxcb-util.so.1.0.0
b49d4000-b49d5000 rw-p 00004000 08:06 2252271    /usr/lib/libxcb-util.so.1.0.0
b49d5000-b4f93000 r-xp 00000000 08:06 2262327    /usr/lib/libjavascriptcoregtk-3.0.so.0.15.10
b4f93000-b4f9c000 r--p 005be000 08:06 2262327    /usr/lib/libjavascriptcoregtk-3.0.so.0.15.10
b4f9c000-b4fa2000 rw-p 005c7000 08:06 2262327    /usr/lib/libjavascriptcoregtk-3.0.so.0.15.10
b4fa2000-b4fb4000 rw-p 00000000 00:00 0 
b4fb4000-b5044000 r-xp 00000000 08:06 2256550    /usr/lib/libsoup-2.4.so.1.7.0
b5044000-b5046000 r--p 0008f000 08:06 2256550    /usr/lib/libsoup-2.4.so.1.7.0
b5046000-b5053000 rw-p 00091000 08:06 2256550    /usr/lib/libsoup-2.4.so.1.7.0
b5053000-b6bc9000 r-xp 00000000 08:06 2262328    /usr/lib/libwebkitgtk-3.0.so.0.19.13
b6bc9000-b6c8f000 r--p 01b75000 08:06 2262328    /usr/lib/libwebkitgtk-3.0.so.0.19.13
b6c8f000-b6c9d000 rw-p 01c3b000 08:06 2262328    /usr/lib/libwebkitgtk-3.0.so.0.19.13
b6c9d000-b6ca4000 rw-p 00000000 00:00 0 
b6ca4000-b6da6000 r-xp 00000000 08:06 2239600    /usr/lib/libglib-2.0.so.0.3800.2
b6da6000-b6da7000 r--p 00101000 08:06 2239600    /usr/lib/libglib-2.0.so.0.3800.2
b6da7000-b6da8000 rw-p 00102000 08:06 2239600    /usr/lib/libglib-2.0.so.0.3800.2
b6da8000-b6da9000 rw-p 00000000 00:00 0 
b6da9000-b6df8000 r-xp 00000000 08:06 2239603    /usr/lib/libgobject-2.0.so.0.3800.2
b6df8000-b6df9000 r--p 0004e000 08:06 2239603    /usr/lib/libgobject-2.0.so.0.3800.2
b6df9000-b6dfa000 rw-p 0004f000 08:06 2239603    /usr/lib/libgobject-2.0.so.0.3800.2
b6dfa000-b6f64000 r-xp 00000000 08:06 2239604    /usr/lib/libgio-2.0.so.0.3800.2
b6f64000-b6f65000 ---p 0016a000 08:06 2239604    /usr/lib/libgio-2.0.so.0.3800.2
b6f65000-b6f67000 r--p 0016a000 08:06 2239604    /usr/lib/libgio-2.0.so.0.3800.2
b6f67000-b6f68000 rw-p 0016c000 08:06 2239604    /usr/lib/libgio-2.0.so.0.3800.2
b6f68000-b6f69000 rw-p 00000000 00:00 0 
b6f69000-b6f8d000 r-xp 00000000 08:06 2254885    /usr/lib/libgdk_pixbuf-2.0.so.0.3000.6
b6f8d000-b6f8e000 r--p 00023000 08:06 2254885    /usr/lib/libgdk_pixbuf-2.0.so.0.3000.6
b6f8e000-b6f8f000 rw-p 00024000 08:06 2254885    /usr/lib/libgdk_pixbuf-2.0.so.0.3000.6
b6f8f000-b70c4000 r-xp 00000000 08:06 2254919    /usr/lib/libcairo.so.2.11200.16
b70c4000-b70c6000 r--p 00135000 08:06 2254919    /usr/lib/libcairo.so.2.11200.16
b70c6000-b70c7000 rw-p 00137000 08:06 2254919    /usr/lib/libcairo.so.2.11200.16
b70c7000-b70c8000 rw-p 00000000 00:00 0 
b70c8000-b70cd000 r-xp 00000000 08:06 2254917    /usr/lib/libcairo-gobject.so.2.11200.16
b70cd000-b70ce000 r--p 00005000 08:06 2254917    /usr/lib/libcairo-gobject.so.2.11200.16
b70ce000-b70cf000 rw-p 00006000 08:06 2254917    /usr/lib/libcairo-gobject.so.2.11200.16
b70cf000-b70d0000 rw-p 00000000 00:00 0 
b70d0000-b70ef000 r-xp 00000000 08:06 2257195    /usr/lib/libatk-1.0.so.0.21009.1
b70ef000-b70f1000 r--p 0001e000 08:06 2257195    /usr/lib/libatk-1.0.so.0.21009.1
b70f1000-b70f2000 rw-p 00020000 08:06 2257195    /usr/lib/libatk-1.0.so.0.21009.1
b70f2000-b713a000 r-xp 00000000 08:06 2254945    /usr/lib/libpango-1.0.so.0.3600.2
b713a000-b713b000 ---p 00048000 08:06 2254945    /usr/lib/libpango-1.0.so.0.3600.2
b713b000-b713c000 r--p 00048000 08:06 2254945    /usr/lib/libpango-1.0.so.0.3600.2
b713c000-b713d000 rw-p 00049000 08:06 2254945    /usr/lib/libpango-1.0.so.0.3600.2
b713d000-b7148000 r-xp 00000000 08:06 2254948    /usr/lib/libpangocairo-1.0.so.0.3600.2
b7148000-b7149000 r--p 0000a000 08:06 2254948    /usr/lib/libpangocairo-1.0.so.0.3600.2
b7149000-b714a000 rw-p 0000b000 08:06 2254948    /usr/lib/libpangocairo-1.0.so.0.3600.2
b714a000-b71f6000 r-xp 00000000 08:06 2259233    /usr/lib/libgdk-3.so.0.1000.7
b71f6000-b71f8000 r--p 000ab000 08:06 2259233    /usr/lib/libgdk-3.so.0.1000.7
b71f8000-b71f9000 rw-p 000ad000 08:06 2259233    /usr/lib/libgdk-3.so.0.1000.7
b71f9000-b71fa000 rw-p 00000000 00:00 0 
b71fa000-b773a000 r-xp 00000000 08:06 2259234    /usr/lib/libgtk-3.so.0.1000.7
b773a000-b773f000 r--p 0053f000 08:06 2259234    /usr/lib/libgtk-3.so.0.1000.7
b773f000-b7742000 rw-p 00544000 08:06 2259234    /usr/lib/libgtk-3.so.0.1000.7
b7742000-b7744000 rw-p 00000000 00:00 0 
b7744000-b7745000 r--s 00000000 08:06 2496942    /var/cache/fontconfig/edb5d77751c6bce1481ec007391c5ec0-le32d4.cache-4
b7745000-b7746000 r--p 00000000 08:06 947666     /home/dainis/.config/dconf/user
b7746000-b7747000 r--s 00000000 00:0f 14175      /run/user/1000/dconf/user
b7747000-b7748000 ---p 00000000 00:00 0 
b7748000-b7750000 rw-p 00000000 00:00 0 
b7750000-b7751000 ---p 00000000 00:00 0 
b7751000-b7755000 r-xp 00000000 08:06 2366155    /usr/lib/gtk-3.0/3.0.0/theming-engines/libadwaita.so
b7755000-b7756000 r--p 00003000 08:06 2366155    /usr/lib/gtk-3.0/3.0.0/theming-engines/libadwaita.so
b7756000-b7757000 rw-p 00004000 08:06 2366155    /usr/lib/gtk-3.0/3.0.0/theming-engines/libadwaita.so
b7757000-b7759000 r-xp 00000000 08:06 2231489    /usr/lib/libutil-2.19.so
b7759000-b775a000 r--p 00001000 08:06 2231489    /usr/lib/libutil-2.19.so
b775a000-b775b000 rw-p 00002000 08:06 2231489    /usr/lib/libutil-2.19.so
b775b000-b775c000 r--p 00000000 08:06 3027083    /usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo
b775c000-b775d000 r--p 00000000 08:06 3027082    /usr/share/locale/en/LC_MESSAGES/gtk30.mo
b775d000-b775e000 rw-p 00000000 00:00 0 
b775e000-b775f000 r-xp 00000000 00:00 0          [vdso]
b775f000-b777f000 r-xp 00000000 08:06 2231509    /usr/lib/ld-2.19.so
b777f000-b7780000 r--p 0001f000 08:06 2231509    /usr/lib/ld-2.19.so
b7780000-b7781000 rw-p 00020000 08:06 2231509    /usr/lib/ld-2.19.so
bfe60000-bfe81000 rw-p 00000000 00:00 0          [stack]
Aborted (core dumped)

• WM: Openbox
• Resolution: 1366x768
• CPU: CPU: Intel Pentium CPU B980 @ 2.4GHz
• RAM: 2931MB

Offline

#16 2014-03-04 21:13:31

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Does this happen on every launch? It would be great if you could post this on the github issue tracker. I have no idea how to parse that dump, but some of the other developers on the project may be able find the cause of this issue.

Offline

#17 2014-03-04 21:19:35

GE
Member
Registered: 2014-01-04
Posts: 41

Re: candybar - new WebKit-based status bar for tiling window managers

Lokaltog wrote:

Does this happen on every launch?

Yes.

Lokaltog wrote:

It would be great if you could post this on the github issue tracker. I have no idea how to parse that dump, but some of the other developers on the project may be able find the cause of this issue.

I will do that tomorrow morning. smile

Note: this is the first time I see something like this, too.


• WM: Openbox
• Resolution: 1366x768
• CPU: CPU: Intel Pentium CPU B980 @ 2.4GHz
• RAM: 2931MB

Offline

#18 2014-03-04 21:21:07

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Thanks a lot!

Offline

#19 2014-03-05 11:30:36

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

.

Last edited by Lokaltog (2014-03-05 12:25:22)

Offline

#20 2014-03-05 11:52:55

Runiq
Member
From: Germany
Registered: 2008-10-29
Posts: 1,053

Re: candybar - new WebKit-based status bar for tiling window managers

$ pacaur -S wkline
[…]
$ wkline
sh: /usr/lib/nspluginwrapper/i386/linux/npviewer: No such file or directory
sh: /usr/lib/nspluginwrapper/i386/linux/npviewer: No such file or directory
*** NSPlugin Wrapper *** ERROR: failed to execute NSPlugin viewer
*** NSPlugin Wrapper *** ERROR: failed to initialize plugin-side RPC client connection
*** NSPlugin Wrapper *** WARNING:(/build/src/nspluginwrapper-1.4.4/src/npw-wrapper.c:3556):invoke_NP_Initialize: assertion failed: (rpc_method_invoke_possible(g_rpc_connection))
sh: /usr/lib/nspluginwrapper/i386/linux/npviewer: No such file or directory
*** NSPlugin Wrapper *** ERROR: failed to execute NSPlugin viewer
*** NSPlugin Wrapper *** ERROR: failed to initialize plugin-side RPC client connection
*** NSPlugin Wrapper *** WARNING:(/build/src/nspluginwrapper-1.4.4/src/npw-wrapper.c:3556):invoke_NP_Initialize: assertion failed: (rpc_method_invoke_possible(g_rpc_connection))
java version "1.7.0_51"
OpenJDK Runtime Environment (IcedTea 2.4.5) (ArchLinux build 7.u51_2.4.5-1-x86_64)
OpenJDK 64-Bit Server VM (build 24.51-b03, mixed mode)
sh: /usr/lib/nspluginwrapper/i386/linux/npviewer: No such file or directory
sh: /usr/lib/nspluginwrapper/i386/linux/npviewer: No such file or directory
*** NSPlugin Wrapper *** ERROR: failed to execute NSPlugin viewer
*** NSPlugin Wrapper *** ERROR: failed to initialize plugin-side RPC client connection
*** NSPlugin Wrapper *** WARNING:(/build/src/nspluginwrapper-1.4.4/src/npw-wrapper.c:3556):invoke_NP_Initialize: assertion failed: (rpc_method_invoke_possible(g_rpc_connection))

I'm not sure whether this is a problem with wkline or Webkit itself, as some googling has led me to this

Offline

#21 2014-03-05 11:59:05

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Runiq wrote:

I'm not sure whether this is a problem with wkline or Webkit itself, as some googling has led me to this

I'm pretty sure those are from webkit, it makes sense that webkit will complain about invalid or missing plugins. It may be an issue with e.g. flash that causes those messages.

Offline

#22 2014-03-06 22:23:14

EvanPurkhiser
Member
From: San Francisco
Registered: 2010-08-17
Posts: 225
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Wow. This looks really cool! Amazing work!

Offline

#23 2014-03-06 23:00:15

Lokaltog
Member
From: Norway
Registered: 2009-12-04
Posts: 53
Website

Re: candybar - new WebKit-based status bar for tiling window managers

Thanks! We've been making a lot of progress the last couple of days, including implementing of a JSON-based config format, and making XCB an optional dependency (I *think* this means the project is compatible with Wayland as we now use GTK exclusively for all window operations). We're currently also implementing widgets as shared libraries, to make it possible to add third-party widgets as separate modules instead of having every possible widget in the core repo.

Please let me know if you have any cool ideas for widgets! Some of the planned features include:

* Adding drag-and-drop loading of themes and configs (i.e. you'll be able to visit a website and drag the theme onto the statusline to try it out live - this is made possible by the themes being static HTML files)
* Adding drag-and-drop reordering of widgets
* Adding drag-and-drop loading of shared widget libraries to try out new widgets live
* Adding interactive buttons to send system commands, e.g. for switching desktops, putting the computer to sleep, etc.
* Adding an "admin overlay" for editing the configuration directly in the statusline
* Extending Javascript with widget objects via JavaScriptCore instead of passing JSON data (this means you'll be able to have e.g. a Battery object in javascript, assign an onDataChanged callback, call Battery.getState(), etc all from JS)

Offline

#24 2014-03-07 00:58:43

HalosGhost
Forum Moderator
From: Twin Cities, MN
Registered: 2012-06-22
Posts: 2,095
Website

Re: candybar - new WebKit-based status bar for tiling window managers

This is an incredibly cool project. If this had existed before I had been fully wooed by the notion of having all WM config being compile-time, I imagine this may have been a significant part of my UI. Maybe I'll even still give it a try, but either way, keep up the awesome work!

All the best,

-HG

Online

#25 2014-03-07 02:08:45

ooo
Member
Registered: 2013-04-10
Posts: 1,638

Re: candybar - new WebKit-based status bar for tiling window managers

out of curiosity, what's the memory footprint/overall speed like with wkline?
for me it feels like having a huge library like webkit as dependency wouldn't really fit the whole minimal desktop philosophy

i didn't try or planning to try it, just interested
keep up the good work smile

Offline

Board footer

Powered by FluxBB