diff options
548 files changed, 0 insertions, 58571 deletions
diff --git a/repos/xorg/2bwm/.checksum b/repos/xorg/2bwm/.checksum deleted file mode 100644 index 09a29a0a..00000000 --- a/repos/xorg/2bwm/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -006afd63128381987cd45661fd33b01f1666ba2f6d7dee17a121e092a98cf444 2bwm-v0.3.tar.gz -c570dd5ce52d7c79aeafa0ba218806322e511e702de02bfceb9d07544c23c4d7 config.h diff --git a/repos/xorg/2bwm/.files b/repos/xorg/2bwm/.files deleted file mode 100644 index a7fbaac2..00000000 --- a/repos/xorg/2bwm/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/2bwm --rwxr-xr-x root/root usr/bin/hidden -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/2bwm.1.gz --rw-r--r-- root/root usr/share/man/man1/hidden.1.gz diff --git a/repos/xorg/2bwm/abuild b/repos/xorg/2bwm/abuild deleted file mode 100644 index 2a297d61..00000000 --- a/repos/xorg/2bwm/abuild +++ /dev/null @@ -1,10 +0,0 @@ -name=2bwm -version=0.3 -release=1 -source="https://github.com/venam/${name}/archive/v${version}/${name}-v${version}.tar.gz - config.h" - -prebuild() { - cp $SRC/config.h . -} - diff --git a/repos/xorg/2bwm/config.h b/repos/xorg/2bwm/config.h deleted file mode 100644 index 290c5129..00000000 --- a/repos/xorg/2bwm/config.h +++ /dev/null @@ -1,207 +0,0 @@ -///---User configurable stuff---/// -///---Modifiers---/// -#define MOD XCB_MOD_MASK_4 /* Super/Windows key or check xmodmap(1) with -pm defined in /usr/include/xcb/xproto.h */ -///--Speed---/// -/* Move this many pixels when moving or resizing with keyboard unless the window has hints saying otherwise. - *0)move step slow 1)move step fast - *2)mouse slow 3)mouse fast */ -static const uint16_t movements[] = {20,40,15,400}; -/* resize by line like in mcwm -- jmbi */ -static const bool resize_by_line = true; -/* the ratio used when resizing and keeping the aspect */ -static const float resize_keep_aspect_ratio= 1.03; -///---Offsets---/// -/*0)offsetx 1)offsety - *2)maxwidth 3)maxheight */ -static const uint8_t offsets[] = {0,0,0,0}; -///---Colors---/// -/*0)focuscol 1)unfocuscol - *2)fixedcol 3)unkilcol - *4)fixedunkilcol 5)outerbordercol - *6)emptycol */ -static const char *colors[] = {"#35586c","#333333","#7a8c5c","#ff6666","#cc9933","#0d131a","#000000"}; -/* if this is set to true the inner border and outer borders colors will be swapped */ -static const bool inverted_colors = true; -///---Cursor---/// -/* default position of the cursor: - * correct values are: - * TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT, MIDDLE - * All these are relative to the current window. */ -#define CURSOR_POSITION MIDDLE -///---Borders---/// -/*0) Outer border size. If you put this negative it will be a square. - *1) Full borderwidth 2) Magnet border size - *3) Resize border size */ -static const uint8_t borders[] = {3,5,5,4}; -/* Windows that won't have a border. - * It uses substring comparison with what is found in the WM_NAME - * attribute of the window. You can test this using `xprop WM_NAME` - */ -#define LOOK_INTO "WM_NAME" -static const char *ignore_names[] = {"bar", "xclock"}; -///--Menus and Programs---/// -static const char *menucmd[] = { "", NULL }; -///--Custom foo---/// -static void halfandcentered(const Arg *arg) -{ - Arg arg2 = {.i=TWOBWM_MAXHALF_VERTICAL_LEFT}; - maxhalf(&arg2); - Arg arg3 = {.i=TWOBWM_TELEPORT_CENTER}; - teleport(&arg3); -} -///---Shortcuts---/// -/* Check /usr/include/X11/keysymdef.h for the list of all keys - * 0x000000 is for no modkey - * If you are having trouble finding the right keycode use the `xev` to get it - * For example: - * KeyRelease event, serial 40, synthetic NO, window 0x1e00001, - * root 0x98, subw 0x0, time 211120530, (128,73), root:(855,214), - * state 0x10, keycode 171 (keysym 0x1008ff17, XF86AudioNext), same_screen YES, - * XLookupString gives 0 bytes: - * XFilterEvent returns: False - * - * The keycode here is keysym 0x1008ff17, so use 0x1008ff17 - * - * - * For AZERTY keyboards XK_1...0 should be replaced by : - * DESKTOPCHANGE( XK_ampersand, 0) - * DESKTOPCHANGE( XK_eacute, 1) - * DESKTOPCHANGE( XK_quotedbl, 2) - * DESKTOPCHANGE( XK_apostrophe, 3) - * DESKTOPCHANGE( XK_parenleft, 4) - * DESKTOPCHANGE( XK_minus, 5) - * DESKTOPCHANGE( XK_egrave, 6) - * DESKTOPCHANGE( XK_underscore, 7) - * DESKTOPCHANGE( XK_ccedilla, 8) - * DESKTOPCHANGE( XK_agrave, 9)* - */ -#define DESKTOPCHANGE(K,N) \ -{ MOD , K, changeworkspace, {.i=N}}, \ -{ MOD |SHIFT, K, sendtoworkspace, {.i=N}}, -static key keys[] = { - /* modifier key function argument */ - // Focus to next/previous window - { MOD , XK_Tab, focusnext, {.i=TWOBWM_FOCUS_NEXT}}, - { MOD |SHIFT, XK_Tab, focusnext, {.i=TWOBWM_FOCUS_PREVIOUS}}, - // Kill a window - { MOD , XK_q, deletewin, {}}, - // Resize a window - { MOD |SHIFT, XK_k, resizestep, {.i=TWOBWM_RESIZE_UP}}, - { MOD |SHIFT, XK_j, resizestep, {.i=TWOBWM_RESIZE_DOWN}}, - { MOD |SHIFT, XK_l, resizestep, {.i=TWOBWM_RESIZE_RIGHT}}, - { MOD |SHIFT, XK_h, resizestep, {.i=TWOBWM_RESIZE_LEFT}}, - // Resize a window slower - { MOD |SHIFT|CONTROL,XK_k, resizestep, {.i=TWOBWM_RESIZE_UP_SLOW}}, - { MOD |SHIFT|CONTROL,XK_j, resizestep, {.i=TWOBWM_RESIZE_DOWN_SLOW}}, - { MOD |SHIFT|CONTROL,XK_l, resizestep, {.i=TWOBWM_RESIZE_RIGHT_SLOW}}, - { MOD |SHIFT|CONTROL,XK_h, resizestep, {.i=TWOBWM_RESIZE_LEFT_SLOW}}, - // Move a window - { MOD , XK_k, movestep, {.i=TWOBWM_MOVE_UP}}, - { MOD , XK_j, movestep, {.i=TWOBWM_MOVE_DOWN}}, - { MOD , XK_l, movestep, {.i=TWOBWM_MOVE_RIGHT}}, - { MOD , XK_h, movestep, {.i=TWOBWM_MOVE_LEFT}}, - // Move a window slower - { MOD |CONTROL, XK_k, movestep, {.i=TWOBWM_MOVE_UP_SLOW}}, - { MOD |CONTROL, XK_j, movestep, {.i=TWOBWM_MOVE_DOWN_SLOW}}, - { MOD |CONTROL, XK_l, movestep, {.i=TWOBWM_MOVE_RIGHT_SLOW}}, - { MOD |CONTROL, XK_h, movestep, {.i=TWOBWM_MOVE_LEFT_SLOW}}, - // Teleport the window to an area of the screen. - // Center: - { MOD , XK_g, teleport, {.i=TWOBWM_TELEPORT_CENTER}}, - // Center y: - { MOD |SHIFT, XK_g, teleport, {.i=TWOBWM_TELEPORT_CENTER_Y}}, - // Center x: - { MOD |CONTROL, XK_g, teleport, {.i=TWOBWM_TELEPORT_CENTER_X}}, - // Top left: - { MOD , XK_y, teleport, {.i=TWOBWM_TELEPORT_TOP_LEFT}}, - // Top right: - { MOD , XK_u, teleport, {.i=TWOBWM_TELEPORT_TOP_RIGHT}}, - // Bottom left: - { MOD , XK_b, teleport, {.i=TWOBWM_TELEPORT_BOTTOM_LEFT}}, - // Bottom right: - { MOD , XK_n, teleport, {.i=TWOBWM_TELEPORT_BOTTOM_RIGHT}}, - // Resize while keeping the window aspect - { MOD , XK_Home, resizestep_aspect, {.i=TWOBWM_RESIZE_KEEP_ASPECT_GROW}}, - { MOD , XK_End, resizestep_aspect, {.i=TWOBWM_RESIZE_KEEP_ASPECT_SHRINK}}, - // Maximize (ignore offset and no EWMH atom) - { MOD , XK_x, maximize, {}}, - // Full screen (disregarding offsets and adding EWMH atom) - { MOD |SHIFT , XK_x, fullscreen, {}}, - // Maximize vertically - { MOD , XK_m, maxvert_hor, {.i=TWOBWM_MAXIMIZE_VERTICALLY}}, - // Maximize horizontally - { MOD |SHIFT, XK_m, maxvert_hor, {.i=TWOBWM_MAXIMIZE_HORIZONTALLY}}, - // Maximize and move - // vertically left - { MOD |SHIFT, XK_y, maxhalf, {.i=TWOBWM_MAXHALF_VERTICAL_LEFT}}, - // vertically right - { MOD |SHIFT, XK_u, maxhalf, {.i=TWOBWM_MAXHALF_VERTICAL_RIGHT}}, - // horizontally left - { MOD |SHIFT, XK_b, maxhalf, {.i=TWOBWM_MAXHALF_HORIZONTAL_BOTTOM}}, - // horizontally right - { MOD |SHIFT, XK_n, maxhalf, {.i=TWOBWM_MAXHALF_HORIZONTAL_TOP}}, - //fold half vertically - { MOD |SHIFT|CONTROL,XK_y, maxhalf, {.i=TWOBWM_MAXHALF_FOLD_VERTICAL}}, - //fold half horizontally - { MOD |SHIFT|CONTROL,XK_b, maxhalf, {.i=TWOBWM_MAXHALF_FOLD_HORIZONTAL}}, - //unfold vertically - { MOD |SHIFT|CONTROL,XK_u, maxhalf, {.i=TWOBWM_MAXHALF_UNFOLD_VERTICAL}}, - //unfold horizontally - { MOD |SHIFT|CONTROL,XK_n, maxhalf, {.i=TWOBWM_MAXHALF_UNFOLD_HORIZONTAL}}, - // Next/Previous screen - { MOD , XK_comma, changescreen, {.i=TWOBWM_NEXT_SCREEN}}, - { MOD , XK_period, changescreen, {.i=TWOBWM_PREVIOUS_SCREEN}}, - // Raise or lower a window - { MOD , XK_r, raiseorlower, {}}, - // Next/Previous workspace - { MOD , XK_v, nextworkspace, {}}, - { MOD , XK_c, prevworkspace, {}}, - // Move to Next/Previous workspace - { MOD |SHIFT , XK_v, sendtonextworkspace,{}}, - { MOD |SHIFT , XK_c, sendtoprevworkspace,{}}, - // Iconify the window - //{ MOD , XK_i, hide, {}}, - // Make the window unkillable - { MOD , XK_a, unkillable, {}}, - // Make the window appear always on top - { MOD, XK_t, always_on_top, {}}, - // Make the window stay on all workspaces - { MOD , XK_f, fix, {}}, - // Move the cursor - { MOD , XK_Up, cursor_move, {.i=TWOBWM_CURSOR_UP_SLOW}}, - { MOD , XK_Down, cursor_move, {.i=TWOBWM_CURSOR_DOWN_SLOW}}, - { MOD , XK_Right, cursor_move, {.i=TWOBWM_CURSOR_RIGHT_SLOW}}, - { MOD , XK_Left, cursor_move, {.i=TWOBWM_CURSOR_LEFT_SLOW}}, - // Move the cursor faster - { MOD |SHIFT, XK_Up, cursor_move, {.i=TWOBWM_CURSOR_UP}}, - { MOD |SHIFT, XK_Down, cursor_move, {.i=TWOBWM_CURSOR_DOWN}}, - { MOD |SHIFT, XK_Right, cursor_move, {.i=TWOBWM_CURSOR_RIGHT}}, - { MOD |SHIFT, XK_Left, cursor_move, {.i=TWOBWM_CURSOR_LEFT}}, - // Start programs - { MOD , XK_w, start, {.com = menucmd}}, - // Exit or restart 2bwm - { MOD |CONTROL, XK_q, twobwm_exit, {.i=0}}, - { MOD |CONTROL, XK_r, twobwm_restart, {.i=0}}, - { MOD , XK_space, halfandcentered, {.i=0}}, - // Change current workspace - DESKTOPCHANGE( XK_1, 0) - DESKTOPCHANGE( XK_2, 1) - DESKTOPCHANGE( XK_3, 2) - DESKTOPCHANGE( XK_4, 3) - DESKTOPCHANGE( XK_5, 4) - DESKTOPCHANGE( XK_6, 5) - DESKTOPCHANGE( XK_7, 6) - DESKTOPCHANGE( XK_8, 7) - DESKTOPCHANGE( XK_9, 8) - DESKTOPCHANGE( XK_0, 9) -}; -// the last argument makes it a root window only event -static Button buttons[] = { - { MOD ,XCB_BUTTON_INDEX_1, mousemotion, {.i=TWOBWM_MOVE}, false}, - { MOD ,XCB_BUTTON_INDEX_3, mousemotion, {.i=TWOBWM_RESIZE}, false}, - { 0 ,XCB_BUTTON_INDEX_3, start, {.com = menucmd}, true}, - { MOD|SHIFT, XCB_BUTTON_INDEX_1, changeworkspace, {.i=0}, false}, - { MOD|SHIFT, XCB_BUTTON_INDEX_3, changeworkspace, {.i=1}, false}, - { MOD|ALT, XCB_BUTTON_INDEX_1, changescreen, {.i=1}, false}, - { MOD|ALT, XCB_BUTTON_INDEX_3, changescreen, {.i=0}, false} -}; diff --git a/repos/xorg/2bwm/depends b/repos/xorg/2bwm/depends deleted file mode 100644 index e5419b90..00000000 --- a/repos/xorg/2bwm/depends +++ /dev/null @@ -1,3 +0,0 @@ -xcb-util-wm -xcb-util-keysyms -xcb-util-xrm diff --git a/repos/xorg/arcbox/.checksum b/repos/xorg/arcbox/.checksum deleted file mode 100644 index 4a3a4221..00000000 --- a/repos/xorg/arcbox/.checksum +++ /dev/null @@ -1 +0,0 @@ -3c8ce14b52fd9adb8826e51d37de180c7bd97c15432f520e69932c0c0aa8c2bb arcbox-0.1.2.tar.gz diff --git a/repos/xorg/arcbox/.files b/repos/xorg/arcbox/.files deleted file mode 100644 index d702e08d..00000000 --- a/repos/xorg/arcbox/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/themes/ -drwxr-xr-x root/root usr/share/themes/Arcbox/ -drwxrwxr-x root/root usr/share/themes/Arcbox/openbox-3/ --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/iconify.xbm --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/max.xbm --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/max_toggled.xbm --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/shade.xbm --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/shade_toggled.xbm --rw-rw-r-- root/root usr/share/themes/Arcbox/openbox-3/themerc diff --git a/repos/xorg/arcbox/abuild b/repos/xorg/arcbox/abuild deleted file mode 100644 index 0b449914..00000000 --- a/repos/xorg/arcbox/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=arcbox -version=0.1.2 -release=1 -source="https://github.com/gcavallo/Arcbox/archive/v$version/$name-$version.tar.gz" - -build() { - mkdir -p $PKG/usr/share/themes/Arcbox - cp -Ra openbox-3 $PKG/usr/share/themes/Arcbox -} diff --git a/repos/xorg/bdftopcf/.checksum b/repos/xorg/bdftopcf/.checksum deleted file mode 100644 index 098fb2d5..00000000 --- a/repos/xorg/bdftopcf/.checksum +++ /dev/null @@ -1 +0,0 @@ -821586ef76922469f4a3f23780931cd9088c397dc1ca21ca4cc05c6fb7c58037 bdftopcf-1.1.2.tar.xz diff --git a/repos/xorg/bdftopcf/.files b/repos/xorg/bdftopcf/.files deleted file mode 100644 index 589b35ad..00000000 --- a/repos/xorg/bdftopcf/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/bdftopcf -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/bdftopcf.1.gz diff --git a/repos/xorg/bdftopcf/abuild b/repos/xorg/bdftopcf/abuild deleted file mode 100644 index eddff976..00000000 --- a/repos/xorg/bdftopcf/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=bdftopcf -version=1.1.2 -release=1 -source="https://www.x.org/archive/individual/util/${name}-${version}.tar.xz" diff --git a/repos/xorg/bdftopcf/depends b/repos/xorg/bdftopcf/depends deleted file mode 100644 index be3636df..00000000 --- a/repos/xorg/bdftopcf/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -util-macros diff --git a/repos/xorg/bspwm/.checksum b/repos/xorg/bspwm/.checksum deleted file mode 100644 index 2868a484..00000000 --- a/repos/xorg/bspwm/.checksum +++ /dev/null @@ -1 +0,0 @@ -7faf4aacf2247c0ac213cbb9d025f4f13d58538e810ca4d54748aef0c9a16f76 bspwm-0.9.10.tar.gz diff --git a/repos/xorg/bspwm/.files b/repos/xorg/bspwm/.files deleted file mode 100644 index 749e6ac2..00000000 --- a/repos/xorg/bspwm/.files +++ /dev/null @@ -1,20 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/bspc --rwxr-xr-x root/root usr/bin/bspwm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/bash-completion/ -drwxr-xr-x root/root usr/share/bash-completion/completions/ --rw-rw-r-- root/root usr/share/bash-completion/completions/bspc -drwxr-xr-x root/root usr/share/fish/ -drwxr-xr-x root/root usr/share/fish/vendor_completions.d/ --rw-rw-r-- root/root usr/share/fish/vendor_completions.d/bspc.fish -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ -lrwxrwxrwx root/root usr/share/man/man1/bspc.1.gz -> bspwm.1.gz --rw-r--r-- root/root usr/share/man/man1/bspwm.1.gz -drwxr-xr-x root/root usr/share/xsessions/ --rw-rw-r-- root/root usr/share/xsessions/bspwm.desktop -drwxr-xr-x root/root usr/share/zsh/ -drwxr-xr-x root/root usr/share/zsh/site-functions/ --rw-rw-r-- root/root usr/share/zsh/site-functions/_bspc diff --git a/repos/xorg/bspwm/abuild b/repos/xorg/bspwm/abuild deleted file mode 100644 index 084f86e2..00000000 --- a/repos/xorg/bspwm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=bspwm -version=0.9.10 -release=1 -source="https://github.com/baskerville/${name}/archive/${version}/${name}-${version}.tar.gz" diff --git a/repos/xorg/bspwm/depends b/repos/xorg/bspwm/depends deleted file mode 100644 index c289c8c8..00000000 --- a/repos/xorg/bspwm/depends +++ /dev/null @@ -1,3 +0,0 @@ -xcb-util-wm -xcb-util -xcb-util-keysyms diff --git a/repos/xorg/cargo-c/.checksum b/repos/xorg/cargo-c/.checksum deleted file mode 100644 index d4dd3c01..00000000 --- a/repos/xorg/cargo-c/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -fe7b01b3710b01af90026c00baa8bfce9b3f0f79068fd23fc4670ac8b7baf214 cargo-0.10.7.lock -8f35fd33600d57c410c06aa232d0f713f4859916c813f68e9e94f5c9e6a1658e cargo-c-0.10.7.tar.gz diff --git a/repos/xorg/cargo-c/.files b/repos/xorg/cargo-c/.files deleted file mode 100644 index 9ffc97d3..00000000 --- a/repos/xorg/cargo-c/.files +++ /dev/null @@ -1,6 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/cargo-capi --rwxr-xr-x root/root usr/bin/cargo-cbuild --rwxr-xr-x root/root usr/bin/cargo-cinstall --rwxr-xr-x root/root usr/bin/cargo-ctest diff --git a/repos/xorg/cargo-c/abuild b/repos/xorg/cargo-c/abuild deleted file mode 100644 index 1c529330..00000000 --- a/repos/xorg/cargo-c/abuild +++ /dev/null @@ -1,13 +0,0 @@ -name=cargo-c -version=0.10.7 -release=1 -source="https://github.com/lu-zero/${name}/archive/v${version}/${name}-${version}.tar.gz - cargo-${version}.lock::https://github.com/lu-zero/cargo-c/releases/download/v${version}/Cargo.lock" - -build() { - cp $SRC/cargo-${version}.lock Cargo.lock - cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" --manifest-path Cargo.toml - cargo build --release --frozen --manifest-path Cargo.toml - rm target/release/cargo-*.d - install -Dm755 target/release/cargo-* -t $PKG/usr/bin/ -} diff --git a/repos/xorg/cargo-c/depends b/repos/xorg/cargo-c/depends deleted file mode 100644 index 871732e6..00000000 --- a/repos/xorg/cargo-c/depends +++ /dev/null @@ -1 +0,0 @@ -rust diff --git a/repos/xorg/confuse/.checksum b/repos/xorg/confuse/.checksum deleted file mode 100644 index 84a7e636..00000000 --- a/repos/xorg/confuse/.checksum +++ /dev/null @@ -1 +0,0 @@ -df135104bd6899b22b726074def92ef1ab228ebffd609bada4411299c8bc4593 confuse-3.3.tar.xz diff --git a/repos/xorg/confuse/.files b/repos/xorg/confuse/.files deleted file mode 100644 index 65d2fe07..00000000 --- a/repos/xorg/confuse/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/confuse.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libconfuse.so -> libconfuse.so.2.1.0 -lrwxrwxrwx root/root usr/lib/libconfuse.so.2 -> libconfuse.so.2.1.0 --rwxr-xr-x root/root usr/lib/libconfuse.so.2.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libconfuse.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/confuse/abuild b/repos/xorg/confuse/abuild deleted file mode 100644 index 8c81a5e0..00000000 --- a/repos/xorg/confuse/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=confuse -version=3.3 -release=1 -source="https://github.com/lib${name}/lib${name}/releases/download/v${version}/${name}-${version}.tar.xz" diff --git a/repos/xorg/cwm/.checksum b/repos/xorg/cwm/.checksum deleted file mode 100644 index 274b2df0..00000000 --- a/repos/xorg/cwm/.checksum +++ /dev/null @@ -1 +0,0 @@ -b638bd0ec6097cf3612ff714cf170dece1220382066abf15ad5568e832ad8aa0 cwm-v7.4.tar.gz diff --git a/repos/xorg/cwm/.files b/repos/xorg/cwm/.files deleted file mode 100644 index 05ae763b..00000000 --- a/repos/xorg/cwm/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/cwm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/cwm.1.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/cwmrc.5.gz diff --git a/repos/xorg/cwm/abuild b/repos/xorg/cwm/abuild deleted file mode 100644 index 77db29d2..00000000 --- a/repos/xorg/cwm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=cwm -version=7.4 -release=1 -source="https://github.com/leahneukirchen/${name}/archive/v${version}/${name}-v${version}.tar.gz" diff --git a/repos/xorg/cwm/depends b/repos/xorg/cwm/depends deleted file mode 100644 index e0a65aa3..00000000 --- a/repos/xorg/cwm/depends +++ /dev/null @@ -1,2 +0,0 @@ -xrandr -libxft diff --git a/repos/xorg/dbus-glib/.checksum b/repos/xorg/dbus-glib/.checksum deleted file mode 100644 index ff6618a8..00000000 --- a/repos/xorg/dbus-glib/.checksum +++ /dev/null @@ -1 +0,0 @@ -9e017101f210aed18b393e758952e095afb634fdc1af831f3944cd72e5b5c89b dbus-glib-0.112.tar.gz diff --git a/repos/xorg/dbus-glib/.files b/repos/xorg/dbus-glib/.files deleted file mode 100644 index 6bef1f92..00000000 --- a/repos/xorg/dbus-glib/.files +++ /dev/null @@ -1,51 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/bash_completion.d/ --rwxr-xr-x root/root etc/bash_completion.d/dbus-bash-completion.sh.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/dbus-binding-tool -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/dbus-1.0/ -drwxr-xr-x root/root usr/include/dbus-1.0/dbus/ --rw-r--r-- root/root usr/include/dbus-1.0/dbus/dbus-glib-bindings.h --rw-r--r-- root/root usr/include/dbus-1.0/dbus/dbus-glib-lowlevel.h --rw-r--r-- root/root usr/include/dbus-1.0/dbus/dbus-glib.h --rw-r--r-- root/root usr/include/dbus-1.0/dbus/dbus-gtype-specialized.h --rw-r--r-- root/root usr/include/dbus-1.0/dbus/dbus-gvalue-parse-variant.h -drwxr-xr-x root/root usr/lib/ --rwxr-xr-x root/root usr/lib/dbus-bash-completion-helper -lrwxrwxrwx root/root usr/lib/libdbus-glib-1.so -> libdbus-glib-1.so.2.3.5 -lrwxrwxrwx root/root usr/lib/libdbus-glib-1.so.2 -> libdbus-glib-1.so.2.3.5 --rwxr-xr-x root/root usr/lib/libdbus-glib-1.so.2.3.5 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/dbus-glib-1.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/gtk-doc/ -drwxr-xr-x root/root usr/share/gtk-doc/html/ -drwxr-xr-x root/root usr/share/gtk-doc/html/dbus-glib/ --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/api-index-full.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/ch01.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/ch02.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/ch03.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-binding-tool.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBus-GLib-low-level.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBus-GObject-related-functions.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGError.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGMessage.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGMethod.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGProxy.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib-Specializable-GType-System.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/dbus-glib.devhelp2 --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/home.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/index.html --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/left-insensitive.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/left.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/right-insensitive.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/right.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/style.css --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/up-insensitive.png --rw-r--r-- root/root usr/share/gtk-doc/html/dbus-glib/up.png -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/dbus-binding-tool.1.gz diff --git a/repos/xorg/dbus-glib/abuild b/repos/xorg/dbus-glib/abuild deleted file mode 100644 index 0912ea94..00000000 --- a/repos/xorg/dbus-glib/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=dbus-glib -version=0.112 -release=1 -source="http://dbus.freedesktop.org/releases/$name/$name-$version.tar.gz" diff --git a/repos/xorg/dbus-glib/depends b/repos/xorg/dbus-glib/depends deleted file mode 100644 index 854ee4d1..00000000 --- a/repos/xorg/dbus-glib/depends +++ /dev/null @@ -1,2 +0,0 @@ -dbus -glib diff --git a/repos/xorg/desktop-file-utils/.checksum b/repos/xorg/desktop-file-utils/.checksum deleted file mode 100644 index 545db3a7..00000000 --- a/repos/xorg/desktop-file-utils/.checksum +++ /dev/null @@ -1 +0,0 @@ -09ecf2d0ddcf67e13033676379d1ee5f4fbae52c8dc9fb45c28149dca31c1c2d desktop-file-utils-0.28.tar.xz diff --git a/repos/xorg/desktop-file-utils/.files b/repos/xorg/desktop-file-utils/.files deleted file mode 100644 index d1d8fb2f..00000000 --- a/repos/xorg/desktop-file-utils/.files +++ /dev/null @@ -1,16 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/desktop-file-edit -> desktop-file-install --rwxr-xr-x root/root usr/bin/desktop-file-install --rwxr-xr-x root/root usr/bin/desktop-file-validate --rwxr-xr-x root/root usr/bin/update-desktop-database -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/emacs/ -drwxr-xr-x root/root usr/share/emacs/site-lisp/ --rw-r--r-- root/root usr/share/emacs/site-lisp/desktop-entry-mode.el -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/desktop-file-edit.1.gz --rw-r--r-- root/root usr/share/man/man1/desktop-file-install.1.gz --rw-r--r-- root/root usr/share/man/man1/desktop-file-validate.1.gz --rw-r--r-- root/root usr/share/man/man1/update-desktop-database.1.gz diff --git a/repos/xorg/desktop-file-utils/abuild b/repos/xorg/desktop-file-utils/abuild deleted file mode 100644 index f37d3f6a..00000000 --- a/repos/xorg/desktop-file-utils/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=desktop-file-utils -version=0.28 -release=1 -source="https://www.freedesktop.org/software/$name/releases/$name-$version.tar.xz" diff --git a/repos/xorg/desktop-file-utils/depends b/repos/xorg/desktop-file-utils/depends deleted file mode 100644 index 4f55ab90..00000000 --- a/repos/xorg/desktop-file-utils/depends +++ /dev/null @@ -1 +0,0 @@ -glib diff --git a/repos/xorg/dmenu/.checksum b/repos/xorg/dmenu/.checksum deleted file mode 100644 index f3238e3c..00000000 --- a/repos/xorg/dmenu/.checksum +++ /dev/null @@ -1 +0,0 @@ -17ac5095774b227168a2236cd2ce6a7dcaa2258adce5aaebbb58825731a62232 dmenu-5.3.tar.gz diff --git a/repos/xorg/dmenu/.files b/repos/xorg/dmenu/.files deleted file mode 100644 index 6fd98e62..00000000 --- a/repos/xorg/dmenu/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/dmenu --rwxr-xr-x root/root usr/bin/dmenu_path --rwxr-xr-x root/root usr/bin/dmenu_run --rwxr-xr-x root/root usr/bin/stest -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/dmenu.1.gz --rw-r--r-- root/root usr/share/man/man1/stest.1.gz diff --git a/repos/xorg/dmenu/abuild b/repos/xorg/dmenu/abuild deleted file mode 100644 index 29b83d3e..00000000 --- a/repos/xorg/dmenu/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=dmenu -version=5.3 -release=1 -source="https://dl.suckless.org/tools/${name}-${version}.tar.gz" diff --git a/repos/xorg/dmenu/depends b/repos/xorg/dmenu/depends deleted file mode 100644 index 2c314eb0..00000000 --- a/repos/xorg/dmenu/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxinerama -libxft diff --git a/repos/xorg/dwm/.checksum b/repos/xorg/dwm/.checksum deleted file mode 100644 index 0b3c6823..00000000 --- a/repos/xorg/dwm/.checksum +++ /dev/null @@ -1 +0,0 @@ -7b029d72cb58948e0e4afc063052c38f32e1af2ce36e92c656d6ce64b91ff92f dwm-6.5.tar.gz diff --git a/repos/xorg/dwm/.files b/repos/xorg/dwm/.files deleted file mode 100644 index ff0cbfee..00000000 --- a/repos/xorg/dwm/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/dwm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/dwm.1.gz diff --git a/repos/xorg/dwm/abuild b/repos/xorg/dwm/abuild deleted file mode 100644 index 514db8ca..00000000 --- a/repos/xorg/dwm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=dwm -version=6.5 -release=1 -source="http://dl.suckless.org/${name}/${name}-${version}.tar.gz" diff --git a/repos/xorg/dwm/depends b/repos/xorg/dwm/depends deleted file mode 100644 index 2c314eb0..00000000 --- a/repos/xorg/dwm/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxinerama -libxft diff --git a/repos/xorg/feh/.checksum b/repos/xorg/feh/.checksum deleted file mode 100644 index 6ede35d3..00000000 --- a/repos/xorg/feh/.checksum +++ /dev/null @@ -1 +0,0 @@ -53ee95c1539b9efad9136453e3f2ae65920e7fd38bdebe45a44ed355e1621ca9 feh-3.10.3.tar.bz2 diff --git a/repos/xorg/feh/.files b/repos/xorg/feh/.files deleted file mode 100644 index 7e795d99..00000000 --- a/repos/xorg/feh/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/feh -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/feh.desktop -drwxr-xr-x root/root usr/share/feh/ -drwxr-xr-x root/root usr/share/feh/fonts/ --rw-r--r-- root/root usr/share/feh/fonts/black.style --rw-r--r-- root/root usr/share/feh/fonts/menu.style --rw-r--r-- root/root usr/share/feh/fonts/yudit.ttf -drwxr-xr-x root/root usr/share/feh/images/ --rw-r--r-- root/root usr/share/feh/images/feh.png --rw-r--r-- root/root usr/share/feh/images/feh.svg --rw-r--r-- root/root usr/share/feh/images/menubg_default.png -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/feh.png -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/feh.svg -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/feh.1.gz diff --git a/repos/xorg/feh/abuild b/repos/xorg/feh/abuild deleted file mode 100644 index 06a3e694..00000000 --- a/repos/xorg/feh/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=feh -version=3.10.3 -release=1 -source="https://$name.finalrewind.org/$name-$version.tar.bz2" diff --git a/repos/xorg/feh/depends b/repos/xorg/feh/depends deleted file mode 100644 index 64927925..00000000 --- a/repos/xorg/feh/depends +++ /dev/null @@ -1,3 +0,0 @@ -imlib2 -libxinerama -libxt diff --git a/repos/xorg/font-adobe-utopia-type1/.checksum b/repos/xorg/font-adobe-utopia-type1/.checksum deleted file mode 100644 index 1cad1485..00000000 --- a/repos/xorg/font-adobe-utopia-type1/.checksum +++ /dev/null @@ -1 +0,0 @@ -398bb560aefd2b5a23ff4bc811a756f546cf412c7268209a6d918dbf555169ac font-adobe-utopia-type1-1.0.5.tar.xz diff --git a/repos/xorg/font-adobe-utopia-type1/.files b/repos/xorg/font-adobe-utopia-type1/.files deleted file mode 100644 index 78ad4558..00000000 --- a/repos/xorg/font-adobe-utopia-type1/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/Type1/ --rw-r--r-- root/root usr/share/fonts/Type1/UTBI____.afm --rw-r--r-- root/root usr/share/fonts/Type1/UTBI____.pfa --rw-r--r-- root/root usr/share/fonts/Type1/UTB_____.afm --rw-r--r-- root/root usr/share/fonts/Type1/UTB_____.pfa --rw-r--r-- root/root usr/share/fonts/Type1/UTI_____.afm --rw-r--r-- root/root usr/share/fonts/Type1/UTI_____.pfa --rw-r--r-- root/root usr/share/fonts/Type1/UTRG____.afm --rw-r--r-- root/root usr/share/fonts/Type1/UTRG____.pfa diff --git a/repos/xorg/font-adobe-utopia-type1/abuild b/repos/xorg/font-adobe-utopia-type1/abuild deleted file mode 100644 index 673d4610..00000000 --- a/repos/xorg/font-adobe-utopia-type1/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-adobe-utopia-type1 -version=1.0.5 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-adobe-utopia-type1/depends b/repos/xorg/font-adobe-utopia-type1/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-adobe-utopia-type1/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/font-alias/.checksum b/repos/xorg/font-alias/.checksum deleted file mode 100644 index a66b0a83..00000000 --- a/repos/xorg/font-alias/.checksum +++ /dev/null @@ -1 +0,0 @@ -f82bb3cadf4511e23e2b20e6392134a847a79a9ef5aaff4575608cccadfd231f font-alias-1.0.5.tar.xz diff --git a/repos/xorg/font-alias/.files b/repos/xorg/font-alias/.files deleted file mode 100644 index 06130b20..00000000 --- a/repos/xorg/font-alias/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/100dpi/ --rw-r--r-- root/root usr/share/fonts/100dpi/fonts.alias -drwxr-xr-x root/root usr/share/fonts/75dpi/ --rw-r--r-- root/root usr/share/fonts/75dpi/fonts.alias -drwxr-xr-x root/root usr/share/fonts/cyrillic/ --rw-r--r-- root/root usr/share/fonts/cyrillic/fonts.alias -drwxr-xr-x root/root usr/share/fonts/misc/ --rw-r--r-- root/root usr/share/fonts/misc/fonts.alias diff --git a/repos/xorg/font-alias/abuild b/repos/xorg/font-alias/abuild deleted file mode 100644 index f9213cdd..00000000 --- a/repos/xorg/font-alias/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-alias -version=1.0.5 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-alias/depends b/repos/xorg/font-alias/depends deleted file mode 100644 index ba60bcf7..00000000 --- a/repos/xorg/font-alias/depends +++ /dev/null @@ -1 +0,0 @@ -font-util diff --git a/repos/xorg/font-bh-ttf/.checksum b/repos/xorg/font-bh-ttf/.checksum deleted file mode 100644 index d7132d21..00000000 --- a/repos/xorg/font-bh-ttf/.checksum +++ /dev/null @@ -1 +0,0 @@ -96abbeadf98b8634d13d94b478c91a9dc9ee5521464c6eacdda8ade800bbf537 font-bh-ttf-1.0.4.tar.xz diff --git a/repos/xorg/font-bh-ttf/.files b/repos/xorg/font-bh-ttf/.files deleted file mode 100644 index 00bedb8e..00000000 --- a/repos/xorg/font-bh-ttf/.files +++ /dev/null @@ -1,22 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/fonts/ -drwxr-xr-x root/root etc/fonts/conf.avail/ --rw-r--r-- root/root etc/fonts/conf.avail/42-luxi-mono.conf.new -drwxr-xr-x root/root etc/fonts/conf.d/ -lrwxrwxrwx root/root etc/fonts/conf.d/42-luxi-mono.conf -> ../conf.avail/42-luxi-mono.conf -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/TTF/ --rw-r--r-- root/root usr/share/fonts/TTF/luximb.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luximbi.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luximr.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luximri.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxirb.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxirbi.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxirr.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxirri.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxisb.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxisbi.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxisr.ttf --rw-r--r-- root/root usr/share/fonts/TTF/luxisri.ttf diff --git a/repos/xorg/font-bh-ttf/abuild b/repos/xorg/font-bh-ttf/abuild deleted file mode 100644 index 1ee9b391..00000000 --- a/repos/xorg/font-bh-ttf/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-bh-ttf -version=1.0.4 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-bh-ttf/depends b/repos/xorg/font-bh-ttf/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-bh-ttf/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/font-bh-type1/.checksum b/repos/xorg/font-bh-type1/.checksum deleted file mode 100644 index f505b01c..00000000 --- a/repos/xorg/font-bh-type1/.checksum +++ /dev/null @@ -1 +0,0 @@ -1f8a152cde254ac2d37258231a3adff2ce9a702706bce43adcf6fcaf8a6dd028 font-bh-type1-1.0.4.tar.xz diff --git a/repos/xorg/font-bh-type1/.files b/repos/xorg/font-bh-type1/.files deleted file mode 100644 index 4182c976..00000000 --- a/repos/xorg/font-bh-type1/.files +++ /dev/null @@ -1,28 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/Type1/ --rw-r--r-- root/root usr/share/fonts/Type1/l047013t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l047013t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l047016t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l047016t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l047033t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l047033t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l047036t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l047036t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l048013t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l048013t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l048016t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l048016t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l048033t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l048033t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l048036t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l048036t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l049013t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l049013t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l049016t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l049016t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l049033t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l049033t.pfa --rw-r--r-- root/root usr/share/fonts/Type1/l049036t.afm --rw-r--r-- root/root usr/share/fonts/Type1/l049036t.pfa diff --git a/repos/xorg/font-bh-type1/abuild b/repos/xorg/font-bh-type1/abuild deleted file mode 100644 index 3aaa3ce5..00000000 --- a/repos/xorg/font-bh-type1/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-bh-type1 -version=1.0.4 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-bh-type1/depends b/repos/xorg/font-bh-type1/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-bh-type1/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/font-ibm-type1/.checksum b/repos/xorg/font-ibm-type1/.checksum deleted file mode 100644 index 8b386646..00000000 --- a/repos/xorg/font-ibm-type1/.checksum +++ /dev/null @@ -1 +0,0 @@ -4f1e2a84f1e87ed4ed48254a32266c8fdb5c11849477312dabe844accce2fbb3 font-ibm-type1-1.0.4.tar.xz diff --git a/repos/xorg/font-ibm-type1/.files b/repos/xorg/font-ibm-type1/.files deleted file mode 100644 index 6fe3c6ef..00000000 --- a/repos/xorg/font-ibm-type1/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/Type1/ --rw-r--r-- root/root usr/share/fonts/Type1/cour.afm --rw-r--r-- root/root usr/share/fonts/Type1/cour.pfa --rw-r--r-- root/root usr/share/fonts/Type1/courb.afm --rw-r--r-- root/root usr/share/fonts/Type1/courb.pfa --rw-r--r-- root/root usr/share/fonts/Type1/courbi.afm --rw-r--r-- root/root usr/share/fonts/Type1/courbi.pfa --rw-r--r-- root/root usr/share/fonts/Type1/couri.afm --rw-r--r-- root/root usr/share/fonts/Type1/couri.pfa diff --git a/repos/xorg/font-ibm-type1/abuild b/repos/xorg/font-ibm-type1/abuild deleted file mode 100644 index 81a8bf26..00000000 --- a/repos/xorg/font-ibm-type1/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-ibm-type1 -version=1.0.4 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-ibm-type1/depends b/repos/xorg/font-ibm-type1/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-ibm-type1/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/font-misc-ethiopic/.checksum b/repos/xorg/font-misc-ethiopic/.checksum deleted file mode 100644 index 49301913..00000000 --- a/repos/xorg/font-misc-ethiopic/.checksum +++ /dev/null @@ -1 +0,0 @@ -57ce05445dee3385a51ea3dca26c2ca937df4ada717173979be69fa7c116b00e font-misc-ethiopic-1.0.5.tar.xz diff --git a/repos/xorg/font-misc-ethiopic/.files b/repos/xorg/font-misc-ethiopic/.files deleted file mode 100644 index 240a52c0..00000000 --- a/repos/xorg/font-misc-ethiopic/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/OTF/ --rw-r--r-- root/root usr/share/fonts/OTF/GohaTibebZemen.otf -drwxr-xr-x root/root usr/share/fonts/TTF/ --rw-r--r-- root/root usr/share/fonts/TTF/GohaTibebZemen.ttf diff --git a/repos/xorg/font-misc-ethiopic/abuild b/repos/xorg/font-misc-ethiopic/abuild deleted file mode 100644 index 76be275b..00000000 --- a/repos/xorg/font-misc-ethiopic/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-misc-ethiopic -version=1.0.5 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-misc-ethiopic/depends b/repos/xorg/font-misc-ethiopic/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-misc-ethiopic/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/font-util/.checksum b/repos/xorg/font-util/.checksum deleted file mode 100644 index 3635ef41..00000000 --- a/repos/xorg/font-util/.checksum +++ /dev/null @@ -1 +0,0 @@ -b430a69efcba19f59d95bcb967aab1d5838b38f2bc94cbc58f6867eeeba21a3e font-util-1.4.1.tar.xz diff --git a/repos/xorg/font-util/.files b/repos/xorg/font-util/.files deleted file mode 100644 index bd431f54..00000000 --- a/repos/xorg/font-util/.files +++ /dev/null @@ -1,33 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/bdftruncate --rwxr-xr-x root/root usr/bin/ucs2any -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/fontutil.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/aclocal/ --rw-r--r-- root/root usr/share/aclocal/fontutil.m4 -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/util/ --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-1 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-10 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-11 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-13 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-14 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-15 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-16 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-2 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-3 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-4 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-5 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-6 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-7 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-8 --rw-r--r-- root/root usr/share/fonts/util/map-ISO8859-9 --rw-r--r-- root/root usr/share/fonts/util/map-JISX0201.1976-0 --rw-r--r-- root/root usr/share/fonts/util/map-KOI8-R -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/bdftruncate.1.gz --rw-r--r-- root/root usr/share/man/man1/ucs2any.1.gz diff --git a/repos/xorg/font-util/abuild b/repos/xorg/font-util/abuild deleted file mode 100644 index 4dfa6fb7..00000000 --- a/repos/xorg/font-util/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=font-util -version=1.4.1 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" -build_opt=" - --with-mapdir=/usr/share/fonts/util - --with-fontrootdir=/usr/share/fonts -" diff --git a/repos/xorg/font-util/depends b/repos/xorg/font-util/depends deleted file mode 100644 index 0df431e5..00000000 --- a/repos/xorg/font-util/depends +++ /dev/null @@ -1 +0,0 @@ -util-macros diff --git a/repos/xorg/font-xfree86-type1/.checksum b/repos/xorg/font-xfree86-type1/.checksum deleted file mode 100644 index 4ace0538..00000000 --- a/repos/xorg/font-xfree86-type1/.checksum +++ /dev/null @@ -1 +0,0 @@ -8cb10d41df029b24c5ee1bee575687a7f05a63783bd19cb2190410e7c61ba111 font-xfree86-type1-1.0.5.tar.xz diff --git a/repos/xorg/font-xfree86-type1/.files b/repos/xorg/font-xfree86-type1/.files deleted file mode 100644 index 2ccef75d..00000000 --- a/repos/xorg/font-xfree86-type1/.files +++ /dev/null @@ -1,5 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/Type1/ --rw-r--r-- root/root usr/share/fonts/Type1/cursor.pfa diff --git a/repos/xorg/font-xfree86-type1/abuild b/repos/xorg/font-xfree86-type1/abuild deleted file mode 100644 index 66898455..00000000 --- a/repos/xorg/font-xfree86-type1/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=font-xfree86-type1 -version=1.0.5 -release=1 -source="https://www.x.org/pub/individual/font/$name-$version.tar.xz" diff --git a/repos/xorg/font-xfree86-type1/depends b/repos/xorg/font-xfree86-type1/depends deleted file mode 100644 index 08af105d..00000000 --- a/repos/xorg/font-xfree86-type1/depends +++ /dev/null @@ -1,2 +0,0 @@ -mkfontscale -font-util diff --git a/repos/xorg/gmrun/.checksum b/repos/xorg/gmrun/.checksum deleted file mode 100644 index 9afa6e09..00000000 --- a/repos/xorg/gmrun/.checksum +++ /dev/null @@ -1 +0,0 @@ -3619890286a6cee540489510f640fc615ba0005c8128d619e6228fa926d4d4f0 gmrun-1.4w.tar.gz diff --git a/repos/xorg/gmrun/.files b/repos/xorg/gmrun/.files deleted file mode 100644 index df24c93e..00000000 --- a/repos/xorg/gmrun/.files +++ /dev/null @@ -1,13 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/gmrunrc.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/gmrun -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/gmrun.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/gmrun.1.gz -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/gmrun.png diff --git a/repos/xorg/gmrun/abuild b/repos/xorg/gmrun/abuild deleted file mode 100644 index 9f807b7b..00000000 --- a/repos/xorg/gmrun/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=gmrun -version=1.4w -release=1 -source="https://github.com/wdlkmpx/$name/archive/$version/$name-$version.tar.gz" diff --git a/repos/xorg/gmrun/depends b/repos/xorg/gmrun/depends deleted file mode 100644 index 428206d7..00000000 --- a/repos/xorg/gmrun/depends +++ /dev/null @@ -1 +0,0 @@ -gtk3 diff --git a/repos/xorg/hicolor-icon-theme/.checksum b/repos/xorg/hicolor-icon-theme/.checksum deleted file mode 100644 index df3660a8..00000000 --- a/repos/xorg/hicolor-icon-theme/.checksum +++ /dev/null @@ -1 +0,0 @@ -062e251872a23ecf47a127293ae9abf98a1c912f82f819d0cebccf8d9415deb2 hicolor-icon-theme-0.18.tar.xz diff --git a/repos/xorg/hicolor-icon-theme/.files b/repos/xorg/hicolor-icon-theme/.files deleted file mode 100644 index ed9b8d5f..00000000 --- a/repos/xorg/hicolor-icon-theme/.files +++ /dev/null @@ -1,711 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/512x512@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72@2/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96@2/stock/text/ --rw-r--r-- root/root usr/share/icons/hicolor/index.theme -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/actions/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/animations/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/categories/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/devices/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/emblems/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/emotes/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/filesystems/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/intl/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/mimetypes/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/places/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/status/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/chart/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/code/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/data/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/form/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/image/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/io/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/media/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/navigation/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/net/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/object/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/table/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/stock/text/ -drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/ -drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/apps/ -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/default-icon-theme.pc diff --git a/repos/xorg/hicolor-icon-theme/abuild b/repos/xorg/hicolor-icon-theme/abuild deleted file mode 100644 index 9a301a8a..00000000 --- a/repos/xorg/hicolor-icon-theme/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=hicolor-icon-theme -version=0.18 -release=1 -source="https://icon-theme.freedesktop.org/releases/$name-$version.tar.xz" diff --git a/repos/xorg/hsetroot/.checksum b/repos/xorg/hsetroot/.checksum deleted file mode 100644 index 3008a41f..00000000 --- a/repos/xorg/hsetroot/.checksum +++ /dev/null @@ -1 +0,0 @@ -0106600a091d3347e11ae6f987379d15558b0388ae1345209b487896abb113b6 hsetroot-1.0.5.tar.gz diff --git a/repos/xorg/hsetroot/.files b/repos/xorg/hsetroot/.files deleted file mode 100644 index 81ce7b64..00000000 --- a/repos/xorg/hsetroot/.files +++ /dev/null @@ -1,4 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/hsetroot --rwxr-xr-x root/root usr/bin/hsr-outputs diff --git a/repos/xorg/hsetroot/abuild b/repos/xorg/hsetroot/abuild deleted file mode 100644 index e16152c3..00000000 --- a/repos/xorg/hsetroot/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=hsetroot -version=1.0.5 -release=1 -source="https://github.com/himdel/${name}/archive/${version}/${name}-${version}.tar.gz" - -build() { - make - install -Dt $PKG/usr/bin hsetroot hsr-outputs -} diff --git a/repos/xorg/hsetroot/depends b/repos/xorg/hsetroot/depends deleted file mode 100644 index 1581c5ad..00000000 --- a/repos/xorg/hsetroot/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxinerama -imlib2 diff --git a/repos/xorg/i3/.checksum b/repos/xorg/i3/.checksum deleted file mode 100644 index 031ad085..00000000 --- a/repos/xorg/i3/.checksum +++ /dev/null @@ -1 +0,0 @@ -3b54ed52759339e545a7a5f602946abc0164c37eb801e79c0cb40f93dbae53d2 i3-4.24.tar.xz diff --git a/repos/xorg/i3/.files b/repos/xorg/i3/.files deleted file mode 100644 index a6cbdc34..00000000 --- a/repos/xorg/i3/.files +++ /dev/null @@ -1,44 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/i3/ --rw-r--r-- root/root etc/i3/config.keycodes.new --rw-r--r-- root/root etc/i3/config.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/i3 --rwxr-xr-x root/root usr/bin/i3-config-wizard --rwxr-xr-x root/root usr/bin/i3-dmenu-desktop --rwxr-xr-x root/root usr/bin/i3-dump-log --rwxr-xr-x root/root usr/bin/i3-input --rwxr-xr-x root/root usr/bin/i3-migrate-config-to-v4 --rwxr-xr-x root/root usr/bin/i3-msg --rwxr-xr-x root/root usr/bin/i3-nagbar --rwxr-xr-x root/root usr/bin/i3-save-tree --rwxr-xr-x root/root usr/bin/i3-sensible-editor --rwxr-xr-x root/root usr/bin/i3-sensible-pager --rwxr-xr-x root/root usr/bin/i3-sensible-terminal -lrwxrwxrwx root/root usr/bin/i3-with-shmlog -> i3 --rwxr-xr-x root/root usr/bin/i3bar -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/i3/ --rw-r--r-- root/root usr/include/i3/ipc.h -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/i3.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rwxr-xr-x root/root usr/share/man/man1/i3-config-wizard.1.gz --rw-r--r-- root/root usr/share/man/man1/i3-dmenu-desktop.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-dump-log.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-input.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-migrate-config-to-v4.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-msg.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-nagbar.1.gz --rw-r--r-- root/root usr/share/man/man1/i3-save-tree.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-sensible-editor.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-sensible-pager.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3-sensible-terminal.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3.1.gz --rwxr-xr-x root/root usr/share/man/man1/i3bar.1.gz -drwxr-xr-x root/root usr/share/xsessions/ --rw-r--r-- root/root usr/share/xsessions/i3-with-shmlog.desktop --rw-r--r-- root/root usr/share/xsessions/i3.desktop diff --git a/repos/xorg/i3/abuild b/repos/xorg/i3/abuild deleted file mode 100644 index da6dc9a8..00000000 --- a/repos/xorg/i3/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=i3 -version=4.24 -release=1 -source="https://${name}wm.org/downloads/${name}-${version}.tar.xz" diff --git a/repos/xorg/i3/depends b/repos/xorg/i3/depends deleted file mode 100644 index 45e48a3e..00000000 --- a/repos/xorg/i3/depends +++ /dev/null @@ -1,10 +0,0 @@ -startup-notification -xcb-util-cursor -xcb-util-keysyms -xcb-util-wm -xcb-util-xrm -libxkbcommon -yajl -pango -libev -bash diff --git a/repos/xorg/i3status/.checksum b/repos/xorg/i3status/.checksum deleted file mode 100644 index f7e3d2b1..00000000 --- a/repos/xorg/i3status/.checksum +++ /dev/null @@ -1 +0,0 @@ -a831c45931c4590ce08fd4ffed8566d677d6d70595e2478930f6cb11f1025ca8 i3status-2.15.tar.xz diff --git a/repos/xorg/i3status/.files b/repos/xorg/i3status/.files deleted file mode 100644 index d49e8b71..00000000 --- a/repos/xorg/i3status/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/i3status.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/i3status -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/i3status.1.gz diff --git a/repos/xorg/i3status/abuild b/repos/xorg/i3status/abuild deleted file mode 100644 index de01d474..00000000 --- a/repos/xorg/i3status/abuild +++ /dev/null @@ -1,6 +0,0 @@ -name=i3status -version=2.15 -release=1 -source="https://i3wm.org/${name}/${name}-${version}.tar.xz" -build_opt="-Dpulseaudio=false" -export CFLAGS="$CFLAGS $(pkg-config --cflags libnl-tiny)" diff --git a/repos/xorg/i3status/depends b/repos/xorg/i3status/depends deleted file mode 100644 index 337d83f8..00000000 --- a/repos/xorg/i3status/depends +++ /dev/null @@ -1,5 +0,0 @@ -confuse -yajl -libnl -alsa-lib -bash diff --git a/repos/xorg/icon-naming-utils/.checksum b/repos/xorg/icon-naming-utils/.checksum deleted file mode 100644 index ffe0a7b5..00000000 --- a/repos/xorg/icon-naming-utils/.checksum +++ /dev/null @@ -1 +0,0 @@ -84ca2bd89b6440ee3c8c69bd897e276b0c4dba15282e2cc70cf4c6fe549373d0 icon-naming-utils-0.8.90.tar.bz2 diff --git a/repos/xorg/icon-naming-utils/.files b/repos/xorg/icon-naming-utils/.files deleted file mode 100644 index f1390908..00000000 --- a/repos/xorg/icon-naming-utils/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ --rwxr-xr-x root/root usr/lib/icon-name-mapping -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/dtds/ --rw-r--r-- root/root usr/share/dtds/legacy-icon-mapping.dtd -drwxr-xr-x root/root usr/share/icon-naming-utils/ --rw-r--r-- root/root usr/share/icon-naming-utils/legacy-icon-mapping.xml -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/icon-naming-utils.pc diff --git a/repos/xorg/icon-naming-utils/abuild b/repos/xorg/icon-naming-utils/abuild deleted file mode 100644 index 0fe25d0e..00000000 --- a/repos/xorg/icon-naming-utils/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=icon-naming-utils -version=0.8.90 -release=1 -source="http://tango.freedesktop.org/releases/$name-$version.tar.bz2" diff --git a/repos/xorg/icon-naming-utils/depends b/repos/xorg/icon-naming-utils/depends deleted file mode 100644 index b4076a9e..00000000 --- a/repos/xorg/icon-naming-utils/depends +++ /dev/null @@ -1 +0,0 @@ -perl-xml-simple diff --git a/repos/xorg/imagemagick/.checksum b/repos/xorg/imagemagick/.checksum deleted file mode 100644 index 795f3769..00000000 --- a/repos/xorg/imagemagick/.checksum +++ /dev/null @@ -1 +0,0 @@ -f867c2d46146454c84cdb0d7f0ea30091151da43ec6c2f7b8928fe1e7c6af0da ImageMagick-7.1.1-43.tar.xz diff --git a/repos/xorg/imagemagick/.files b/repos/xorg/imagemagick/.files deleted file mode 100644 index 1388324c..00000000 --- a/repos/xorg/imagemagick/.files +++ /dev/null @@ -1,503 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/ImageMagick-7/ --rw-r--r-- root/root etc/ImageMagick-7/colors.xml.new --rw-r--r-- root/root etc/ImageMagick-7/delegates.xml.new --rw-r--r-- root/root etc/ImageMagick-7/log.xml.new --rw-r--r-- root/root etc/ImageMagick-7/mime.xml.new --rw-r--r-- root/root etc/ImageMagick-7/policy.xml.new --rw-r--r-- root/root etc/ImageMagick-7/quantization-table.xml.new --rw-r--r-- root/root etc/ImageMagick-7/thresholds.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-apple.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-dejavu.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-ghostscript.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-urw-base35-type1.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-urw-base35.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type-windows.xml.new --rw-r--r-- root/root etc/ImageMagick-7/type.xml.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/Magick++-config --rwxr-xr-x root/root usr/bin/MagickCore-config --rwxr-xr-x root/root usr/bin/MagickWand-config -lrwxrwxrwx root/root usr/bin/animate -> magick -lrwxrwxrwx root/root usr/bin/compare -> magick -lrwxrwxrwx root/root usr/bin/composite -> magick -lrwxrwxrwx root/root usr/bin/conjure -> magick -lrwxrwxrwx root/root usr/bin/convert -> magick -lrwxrwxrwx root/root usr/bin/display -> magick -lrwxrwxrwx root/root usr/bin/identify -> magick -lrwxrwxrwx root/root usr/bin/import -> magick --rwxr-xr-x root/root usr/bin/magick -lrwxrwxrwx root/root usr/bin/magick-script -> magick -lrwxrwxrwx root/root usr/bin/mogrify -> magick -lrwxrwxrwx root/root usr/bin/montage -> magick -lrwxrwxrwx root/root usr/bin/stream -> magick -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/ImageMagick-7/ --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++.h -drwxr-xr-x root/root usr/include/ImageMagick-7/Magick++/ --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Blob.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/CoderInfo.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Color.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Drawable.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Exception.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Functions.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Geometry.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Image.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Include.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Montage.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Pixels.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/ResourceLimits.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/STL.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/SecurityPolicy.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/Statistic.h --rw-r--r-- root/root usr/include/ImageMagick-7/Magick++/TypeMetric.h -drwxr-xr-x root/root usr/include/ImageMagick-7/MagickCore/ --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/MagickCore.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/animate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/annotate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/artifact.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/attribute.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/blob.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/cache-view.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/cache.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/channel.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/cipher.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/client.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/coder.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/color.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/colormap.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/colorspace.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/compare.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/composite.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/compress.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/configure.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/constitute.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/decorate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/delegate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/deprecate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/display.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/distort.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/distribute-cache.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/draw.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/effect.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/enhance.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/exception.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/feature.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/fourier.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/fx.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/gem.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/geometry.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/histogram.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/identify.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/image-view.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/image.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/layer.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/linked-list.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/list.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/locale_.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/log.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/magic.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/magick-baseconfig.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/magick-config.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/magick-type.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/magick.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/matrix.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/memory_.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/method-attribute.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/methods.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/mime.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/module.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/monitor.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/montage.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/morphology.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/nt-base.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/opencl.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/option.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/paint.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/pixel-accessor.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/pixel.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/policy.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/prepress.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/profile.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/property.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/quantize.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/quantum.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/random_.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/registry.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/resample.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/resize.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/resource_.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/segment.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/semaphore.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/shear.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/signature.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/splay-tree.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/static.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/statistic.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/stream.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/string_.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/studio.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/threshold.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/timer.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/token.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/transform.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/type.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/utility.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/version.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/vision.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/visual-effects.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/widget.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/xml-tree.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickCore/xwindow.h -drwxr-xr-x root/root usr/include/ImageMagick-7/MagickWand/ --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/MagickWand.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/animate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/compare.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/composite.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/conjure.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/deprecate.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/display.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/drawing-wand.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/identify.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/import.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/magick-cli.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/magick-image.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/magick-property.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/method-attribute.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/mogrify.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/montage.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/operation.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/pixel-iterator.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/pixel-wand.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/stream.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/wand-view.h --rw-r--r-- root/root usr/include/ImageMagick-7/MagickWand/wandcli.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/ -drwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/config-Q16HDRI/ --rw-r--r-- root/root usr/lib/ImageMagick-7.1.1/config-Q16HDRI/configure.xml -drwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/ -drwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/aai.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/aai.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/art.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/art.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ashlar.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ashlar.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/avs.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/avs.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bayer.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bayer.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bgr.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bgr.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bmp.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/bmp.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/braille.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/braille.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cals.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cals.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/caption.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/caption.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cin.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cin.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cip.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cip.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/clip.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/clip.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cmyk.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cmyk.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cube.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cube.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cut.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/cut.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dcm.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dcm.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dds.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dds.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/debug.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/debug.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dib.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dib.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dng.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dng.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dot.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dot.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dpx.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/dpx.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ept.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ept.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/farbfeld.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/farbfeld.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fax.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fax.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fits.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fits.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fl32.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/fl32.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ftxt.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ftxt.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gif.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gif.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gradient.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gradient.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gray.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/gray.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hald.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hald.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hdr.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hdr.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/histogram.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/histogram.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hrz.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/hrz.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/html.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/html.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/icon.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/icon.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/info.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/info.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/inline.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/inline.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ipl.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ipl.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/jnx.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/jnx.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/jpeg.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/jpeg.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/json.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/json.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/kernel.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/kernel.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/label.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/label.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mac.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mac.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/magick.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/magick.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/map.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/map.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mask.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mask.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mat.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mat.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/matte.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/matte.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/meta.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/meta.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/miff.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/miff.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mono.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mono.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mpc.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mpc.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mpr.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mpr.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/msl.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/msl.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mtv.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mtv.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mvg.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/mvg.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/null.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/null.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ora.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ora.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/otb.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/otb.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/palm.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/palm.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pango.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pango.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pattern.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pattern.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcd.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcd.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcl.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcl.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcx.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pcx.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pdb.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pdb.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pdf.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pdf.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pes.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pes.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pgx.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pgx.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pict.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pict.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pix.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pix.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/plasma.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/plasma.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/png.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/png.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pnm.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pnm.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps2.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps2.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps3.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ps3.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/psd.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/psd.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pwp.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/pwp.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/qoi.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/qoi.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/raw.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/raw.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rgb.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rgb.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rgf.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rgf.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rla.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rla.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rle.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/rle.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/scr.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/scr.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sct.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sct.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sfw.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sfw.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sgi.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sgi.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sixel.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sixel.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/stegano.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/stegano.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/strimg.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/strimg.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sun.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/sun.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/svg.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/svg.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tga.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tga.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/thumbnail.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/thumbnail.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tiff.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tiff.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tile.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tile.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tim.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tim.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tim2.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/tim2.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ttf.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ttf.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/txt.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/txt.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/uil.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/uil.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/url.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/url.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/uyvy.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/uyvy.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vicar.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vicar.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vid.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vid.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/video.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/video.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/viff.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/viff.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vips.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/vips.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/wbmp.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/wbmp.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/webp.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/webp.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/wpg.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/wpg.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/x.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/x.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xbm.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xbm.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xc.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xc.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xcf.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xcf.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xpm.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xpm.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xps.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xps.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xwd.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/xwd.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/yaml.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/yaml.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ycbcr.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/ycbcr.so --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/yuv.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/coders/yuv.so -drwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/filters/ --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/filters/analyze.la --rwxr-xr-x root/root usr/lib/ImageMagick-7.1.1/modules-Q16HDRI/filters/analyze.so --rwxr-xr-x root/root usr/lib/libMagick++-7.Q16HDRI.la -lrwxrwxrwx root/root usr/lib/libMagick++-7.Q16HDRI.so -> libMagick++-7.Q16HDRI.so.5.0.0 -lrwxrwxrwx root/root usr/lib/libMagick++-7.Q16HDRI.so.5 -> libMagick++-7.Q16HDRI.so.5.0.0 --rwxr-xr-x root/root usr/lib/libMagick++-7.Q16HDRI.so.5.0.0 --rwxr-xr-x root/root usr/lib/libMagickCore-7.Q16HDRI.la -lrwxrwxrwx root/root usr/lib/libMagickCore-7.Q16HDRI.so -> libMagickCore-7.Q16HDRI.so.10.0.2 -lrwxrwxrwx root/root usr/lib/libMagickCore-7.Q16HDRI.so.10 -> libMagickCore-7.Q16HDRI.so.10.0.2 --rwxr-xr-x root/root usr/lib/libMagickCore-7.Q16HDRI.so.10.0.2 --rwxr-xr-x root/root usr/lib/libMagickWand-7.Q16HDRI.la -lrwxrwxrwx root/root usr/lib/libMagickWand-7.Q16HDRI.so -> libMagickWand-7.Q16HDRI.so.10.0.2 -lrwxrwxrwx root/root usr/lib/libMagickWand-7.Q16HDRI.so.10 -> libMagickWand-7.Q16HDRI.so.10.0.2 --rwxr-xr-x root/root usr/lib/libMagickWand-7.Q16HDRI.so.10.0.2 -drwxr-xr-x root/root usr/lib/perl5/ -drwxr-xr-x root/root usr/lib/perl5/5.40/ -drwxr-xr-x root/root usr/lib/perl5/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/Image/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/Image/Magick.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/Image/Magick/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/Image/Magick/Q16HDRI.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/Magick/ --rw-r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/Magick/.packlist -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/Magick/Q16HDRI/ --r-xr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/Magick/Q16HDRI/Q16HDRI.so --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Image/Magick/Q16HDRI/autosplit.ix -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/ImageMagick-7.Q16HDRI.pc --rw-r--r-- root/root usr/lib/pkgconfig/ImageMagick.pc --rw-r--r-- root/root usr/lib/pkgconfig/Magick++-7.Q16HDRI.pc --rw-r--r-- root/root usr/lib/pkgconfig/Magick++.pc --rw-r--r-- root/root usr/lib/pkgconfig/MagickCore-7.Q16HDRI.pc --rw-r--r-- root/root usr/lib/pkgconfig/MagickCore.pc --rw-r--r-- root/root usr/lib/pkgconfig/MagickWand-7.Q16HDRI.pc --rw-r--r-- root/root usr/lib/pkgconfig/MagickWand.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/ImageMagick-7/ --rw-r--r-- root/root usr/share/ImageMagick-7/english.xml --rw-r--r-- root/root usr/share/ImageMagick-7/francais.xml --rw-r--r-- root/root usr/share/ImageMagick-7/locale.xml -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/ImageMagick.1.gz --rw-r--r-- root/root usr/share/man/man1/Magick++-config.1.gz --rw-r--r-- root/root usr/share/man/man1/MagickCore-config.1.gz --rw-r--r-- root/root usr/share/man/man1/MagickWand-config.1.gz --rw-r--r-- root/root usr/share/man/man1/animate.1.gz --rw-r--r-- root/root usr/share/man/man1/compare.1.gz --rw-r--r-- root/root usr/share/man/man1/composite.1.gz --rw-r--r-- root/root usr/share/man/man1/conjure.1.gz --rw-r--r-- root/root usr/share/man/man1/convert.1.gz --rw-r--r-- root/root usr/share/man/man1/display.1.gz --rw-r--r-- root/root usr/share/man/man1/identify.1.gz --rw-r--r-- root/root usr/share/man/man1/import.1.gz --rw-r--r-- root/root usr/share/man/man1/magick-script.1.gz --rw-r--r-- root/root usr/share/man/man1/magick.1.gz --rw-r--r-- root/root usr/share/man/man1/mogrify.1.gz --rw-r--r-- root/root usr/share/man/man1/montage.1.gz --rw-r--r-- root/root usr/share/man/man1/stream.1.gz -drwxr-xr-x root/root usr/share/man/man3/ --r--r--r-- root/root usr/share/man/man3/Image::Magick.3.gz --r--r--r-- root/root usr/share/man/man3/Image::Magick::Q16HDRI.3.gz diff --git a/repos/xorg/imagemagick/abuild b/repos/xorg/imagemagick/abuild deleted file mode 100644 index 192f938e..00000000 --- a/repos/xorg/imagemagick/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=imagemagick -version=7.1.1.43 -release=1 -source="https://www.$name.org/archive/releases/ImageMagick-${version%.*}-${version##*.}.tar.xz" -build_opt="--enable-shared --mandir=/usr/share/man - --with-fftw --with-gslib --with-hdri --with-heic --with-modules - --with-perl --with-png --with-rsvg --with-threads --with-tiff - --with-webp --with-x --with-xml" -keep_libtool=1 diff --git a/repos/xorg/imagemagick/depends b/repos/xorg/imagemagick/depends deleted file mode 100644 index 54fbd3c4..00000000 --- a/repos/xorg/imagemagick/depends +++ /dev/null @@ -1,2 +0,0 @@ -lcms2 -pango diff --git a/repos/xorg/imlib2/.checksum b/repos/xorg/imlib2/.checksum deleted file mode 100644 index 44c77ea1..00000000 --- a/repos/xorg/imlib2/.checksum +++ /dev/null @@ -1 +0,0 @@ -7f9c7cd52c95a1dee98af5ed4a14024eeebd4dfdb1bb750dd57379b5f2480818 imlib2-1.12.3.tar.xz diff --git a/repos/xorg/imlib2/.files b/repos/xorg/imlib2/.files deleted file mode 100644 index 1ac5362c..00000000 --- a/repos/xorg/imlib2/.files +++ /dev/null @@ -1,73 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/imlib2_bumpmap --rwxr-xr-x root/root usr/bin/imlib2_colorspace --rwxr-xr-x root/root usr/bin/imlib2_conv --rwxr-xr-x root/root usr/bin/imlib2_grab --rwxr-xr-x root/root usr/bin/imlib2_load --rwxr-xr-x root/root usr/bin/imlib2_poly --rwxr-xr-x root/root usr/bin/imlib2_show --rwxr-xr-x root/root usr/bin/imlib2_test --rwxr-xr-x root/root usr/bin/imlib2_view -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/Imlib2.h --rw-r--r-- root/root usr/include/Imlib2_Loader.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/imlib2/ -drwxr-xr-x root/root usr/lib/imlib2/filters/ --rwxr-xr-x root/root usr/lib/imlib2/filters/bumpmap.so --rwxr-xr-x root/root usr/lib/imlib2/filters/colormod.so --rwxr-xr-x root/root usr/lib/imlib2/filters/testfilter.so -drwxr-xr-x root/root usr/lib/imlib2/loaders/ --rwxr-xr-x root/root usr/lib/imlib2/loaders/ani.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/argb.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/bmp.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/bz2.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/ff.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/ico.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/jpeg.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/lbm.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/lzma.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/png.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/pnm.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/qoi.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/svg.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/tga.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/tiff.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/webp.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/xbm.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/xpm.so --rwxr-xr-x root/root usr/lib/imlib2/loaders/zlib.so -lrwxrwxrwx root/root usr/lib/libImlib2.so -> libImlib2.so.1.12.3 -lrwxrwxrwx root/root usr/lib/libImlib2.so.1 -> libImlib2.so.1.12.3 --rwxr-xr-x root/root usr/lib/libImlib2.so.1.12.3 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/imlib2.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/imlib2/ -drwxr-xr-x root/root usr/share/imlib2/data/ -drwxr-xr-x root/root usr/share/imlib2/data/fonts/ --rw-r--r-- root/root usr/share/imlib2/data/fonts/cinema.ttf --rw-r--r-- root/root usr/share/imlib2/data/fonts/grunge.ttf --rw-r--r-- root/root usr/share/imlib2/data/fonts/morpheus.ttf --rw-r--r-- root/root usr/share/imlib2/data/fonts/notepad.ttf -drwxr-xr-x root/root usr/share/imlib2/data/images/ --rw-r--r-- root/root usr/share/imlib2/data/images/audio.png --rw-r--r-- root/root usr/share/imlib2/data/images/bg.png --rw-r--r-- root/root usr/share/imlib2/data/images/bulb.png --rw-r--r-- root/root usr/share/imlib2/data/images/cal.png --rw-r--r-- root/root usr/share/imlib2/data/images/calc.png --rw-r--r-- root/root usr/share/imlib2/data/images/folder.png --rw-r--r-- root/root usr/share/imlib2/data/images/globe.png --rw-r--r-- root/root usr/share/imlib2/data/images/imlib2.png --rw-r--r-- root/root usr/share/imlib2/data/images/lock.png --rw-r--r-- root/root usr/share/imlib2/data/images/mail.png --rw-r--r-- root/root usr/share/imlib2/data/images/menu.png --rw-r--r-- root/root usr/share/imlib2/data/images/mush.png --rw-r--r-- root/root usr/share/imlib2/data/images/paper.png --rw-r--r-- root/root usr/share/imlib2/data/images/sh1.png --rw-r--r-- root/root usr/share/imlib2/data/images/sh2.png --rw-r--r-- root/root usr/share/imlib2/data/images/sh3.png --rw-r--r-- root/root usr/share/imlib2/data/images/stop.png --rw-r--r-- root/root usr/share/imlib2/data/images/tnt.png --rw-r--r-- root/root usr/share/imlib2/rgb.txt diff --git a/repos/xorg/imlib2/abuild b/repos/xorg/imlib2/abuild deleted file mode 100644 index c5f4d938..00000000 --- a/repos/xorg/imlib2/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=imlib2 -version=1.12.3 -release=1 -source="https://downloads.sourceforge.net/enlightenment/$name-$version.tar.xz" diff --git a/repos/xorg/imlib2/depends b/repos/xorg/imlib2/depends deleted file mode 100644 index cc7c490a..00000000 --- a/repos/xorg/imlib2/depends +++ /dev/null @@ -1 +0,0 @@ -librsvg diff --git a/repos/xorg/l3afpad/.checksum b/repos/xorg/l3afpad/.checksum deleted file mode 100644 index 2b64c470..00000000 --- a/repos/xorg/l3afpad/.checksum +++ /dev/null @@ -1 +0,0 @@ -bde3dd0b52fac59ba61f258dc350ac7250dc41dada4271e8f39c117bc12d9ef7 l3afpad-v0.8.18.1.11.tar.gz diff --git a/repos/xorg/l3afpad/.files b/repos/xorg/l3afpad/.files deleted file mode 100644 index 0dd1361b..00000000 --- a/repos/xorg/l3afpad/.files +++ /dev/null @@ -1,54 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/l3afpad -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/l3afpad.desktop -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/ -drwxr-xr-x root/root usr/share/icons/hicolor/16x16/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/16x16/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/ -drwxr-xr-x root/root usr/share/icons/hicolor/192x192/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/192x192/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/20x20/ -drwxr-xr-x root/root usr/share/icons/hicolor/20x20/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/20x20/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/ -drwxr-xr-x root/root usr/share/icons/hicolor/22x22/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/22x22/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/ -drwxr-xr-x root/root usr/share/icons/hicolor/24x24/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/24x24/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/ -drwxr-xr-x root/root usr/share/icons/hicolor/256x256/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/256x256/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/ -drwxr-xr-x root/root usr/share/icons/hicolor/32x32/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/32x32/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/ -drwxr-xr-x root/root usr/share/icons/hicolor/36x36/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/36x36/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/40x40/ -drwxr-xr-x root/root usr/share/icons/hicolor/40x40/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/40x40/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/ -drwxr-xr-x root/root usr/share/icons/hicolor/64x64/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/64x64/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/ -drwxr-xr-x root/root usr/share/icons/hicolor/72x72/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/72x72/apps/l3afpad.png -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/ -drwxr-xr-x root/root usr/share/icons/hicolor/96x96/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/96x96/apps/l3afpad.png -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/l3afpad.png --rw-r--r-- root/root usr/share/pixmaps/l3afpad.xpm diff --git a/repos/xorg/l3afpad/abuild b/repos/xorg/l3afpad/abuild deleted file mode 100644 index 8fcf394d..00000000 --- a/repos/xorg/l3afpad/abuild +++ /dev/null @@ -1,12 +0,0 @@ -name=l3afpad -version=0.8.18.1.11 -release=1 -source="https://github.com/stevenhoneyman/${name}/archive/v${version}/${name}-v${version}.tar.gz" - -prebuild() { - ./autogen.sh -} - -postbuild() { - ln -s l3afpad $PKG/usr/bin/leafpad -} diff --git a/repos/xorg/l3afpad/depends b/repos/xorg/l3afpad/depends deleted file mode 100644 index 42a3cec4..00000000 --- a/repos/xorg/l3afpad/depends +++ /dev/null @@ -1,2 +0,0 @@ -gtk3 -intltool diff --git a/repos/xorg/lemonbar/.checksum b/repos/xorg/lemonbar/.checksum deleted file mode 100644 index d62968d3..00000000 --- a/repos/xorg/lemonbar/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -ebf1c608ceaf1dc7c288b73f31dd78f8710c48a296717086b9264b366a9bf2c2 alwaysbelow.patch -42521c0263c7257bf52cd513e93fa8a270f70442927bd114d9b1d0ed7fcca40c lemonbar-1.5.tar.gz diff --git a/repos/xorg/lemonbar/.files b/repos/xorg/lemonbar/.files deleted file mode 100644 index 44ed2f64..00000000 --- a/repos/xorg/lemonbar/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/lemonbar -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/lemonbar.1.gz diff --git a/repos/xorg/lemonbar/abuild b/repos/xorg/lemonbar/abuild deleted file mode 100644 index 31c38517..00000000 --- a/repos/xorg/lemonbar/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=lemonbar -version=1.5 -release=1 -source="https://github.com/LemonBoy/bar/archive/v${version}/${name}-${version}.tar.gz - alwaysbelow.patch" diff --git a/repos/xorg/lemonbar/alwaysbelow.patch b/repos/xorg/lemonbar/alwaysbelow.patch deleted file mode 100644 index 2fec4cff..00000000 --- a/repos/xorg/lemonbar/alwaysbelow.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/lemonbar.c b/lemonbar.c -index 9220af0..d468dad 100644 ---- a/lemonbar.c -+++ b/lemonbar.c -@@ -1210,6 +1210,8 @@ init (char *wm_name) - // Some WM such as Openbox need this - xcb_configure_window(c, mon->window, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, (const uint32_t []){ mon->x, mon->y }); - -+ xcb_configure_window(c, mon->window, XCB_CONFIG_WINDOW_STACK_MODE, (const uint32_t []){ XCB_STACK_MODE_BELOW }); -+ - // Set the WM_NAME atom to the user specified value - if (wm_name) - xcb_change_property(c, XCB_PROP_MODE_REPLACE, mon->window, XCB_ATOM_WM_NAME, XCB_ATOM_STRING, 8 ,strlen(wm_name), wm_name); diff --git a/repos/xorg/lemonbar/depends b/repos/xorg/lemonbar/depends deleted file mode 100644 index 9694e3b3..00000000 --- a/repos/xorg/lemonbar/depends +++ /dev/null @@ -1 +0,0 @@ -libxcb diff --git a/repos/xorg/libaio/.checksum b/repos/xorg/libaio/.checksum deleted file mode 100644 index 249596d2..00000000 --- a/repos/xorg/libaio/.checksum +++ /dev/null @@ -1 +0,0 @@ -8bd51c85b4d3220852dc8aaa8d8bd1ab4214a0325e0fda715fc917ffa29257c4 libaio-0.3.113.tar.gz diff --git a/repos/xorg/libaio/.files b/repos/xorg/libaio/.files deleted file mode 100644 index ce139a0d..00000000 --- a/repos/xorg/libaio/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/libaio.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libaio.so -> libaio.so.1.0.2 -lrwxrwxrwx root/root usr/lib/libaio.so.1 -> libaio.so.1.0.2 --rwxr-xr-x root/root usr/lib/libaio.so.1.0.2 diff --git a/repos/xorg/libaio/abuild b/repos/xorg/libaio/abuild deleted file mode 100644 index b5113ed8..00000000 --- a/repos/xorg/libaio/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libaio -version=0.3.113 -release=1 -source="https://pagure.io/$name/archive/$name-$version/$name-$version.tar.gz" diff --git a/repos/xorg/libconfig/.checksum b/repos/xorg/libconfig/.checksum deleted file mode 100644 index d1e2093c..00000000 --- a/repos/xorg/libconfig/.checksum +++ /dev/null @@ -1 +0,0 @@ -7b5fab134e663d57bb281a3ecb68b86c38a6e418572ad20b63760a9137497614 libconfig-1.7.3.tar.gz diff --git a/repos/xorg/libconfig/.files b/repos/xorg/libconfig/.files deleted file mode 100644 index 98f88eff..00000000 --- a/repos/xorg/libconfig/.files +++ /dev/null @@ -1,21 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/libconfig.h --rw-r--r-- root/root usr/include/libconfig.h++ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/cmake/ -drwxr-xr-x root/root usr/lib/cmake/libconfig++/ --rw-r--r-- root/root usr/lib/cmake/libconfig++/libconfig++Config.cmake -drwxr-xr-x root/root usr/lib/cmake/libconfig/ --rw-r--r-- root/root usr/lib/cmake/libconfig/libconfigConfig.cmake -lrwxrwxrwx root/root usr/lib/libconfig++.so -> libconfig++.so.11.1.0 -lrwxrwxrwx root/root usr/lib/libconfig++.so.11 -> libconfig++.so.11.1.0 --rwxr-xr-x root/root usr/lib/libconfig++.so.11.1.0 -lrwxrwxrwx root/root usr/lib/libconfig.so -> libconfig.so.11.1.0 -lrwxrwxrwx root/root usr/lib/libconfig.so.11 -> libconfig.so.11.1.0 --rwxr-xr-x root/root usr/lib/libconfig.so.11.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libconfig++.pc --rw-r--r-- root/root usr/lib/pkgconfig/libconfig.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/info/ diff --git a/repos/xorg/libconfig/abuild b/repos/xorg/libconfig/abuild deleted file mode 100644 index 53b71c0a..00000000 --- a/repos/xorg/libconfig/abuild +++ /dev/null @@ -1,16 +0,0 @@ -name=libconfig -version=1.7.3 -release=1 -source="https://github.com/hyperrealm/$name/archive/v$version/$name-$version.tar.gz" -export PATH=$APKG_WORK_DIR/tmpbin:$PATH - -prebuild() { - autoreconf -fiv - mkdir -p $APKG_WORK_DIR/tmpbin - echo -e "#/bin/sh\n/bin/true" > $APKG_WORK_DIR/tmpbin/makeinfo - chmod +x $APKG_WORK_DIR/tmpbin/makeinfo -} - -postbuild() { - rm -rf $APKG_WORK_DIR/tmpbin -} diff --git a/repos/xorg/libconfig/outdated b/repos/xorg/libconfig/outdated deleted file mode 100644 index 964097c6..00000000 --- a/repos/xorg/libconfig/outdated +++ /dev/null @@ -1 +0,0 @@ -libconfig-hyperrealm diff --git a/repos/xorg/libev/.checksum b/repos/xorg/libev/.checksum deleted file mode 100644 index d31eb8be..00000000 --- a/repos/xorg/libev/.checksum +++ /dev/null @@ -1 +0,0 @@ -d56e7f06baa52d5068b6184a307cf27c32f71b60e13d98ee6d4d9c1786393424 libev-4.33.tar.gz diff --git a/repos/xorg/libev/.files b/repos/xorg/libev/.files deleted file mode 100644 index e14207c0..00000000 --- a/repos/xorg/libev/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/ev++.h --rw-r--r-- root/root usr/include/ev.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libev.so -> libev.so.4.0.0 -lrwxrwxrwx root/root usr/lib/libev.so.4 -> libev.so.4.0.0 --rwxr-xr-x root/root usr/lib/libev.so.4.0.0 -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/ev.3.gz diff --git a/repos/xorg/libev/abuild b/repos/xorg/libev/abuild deleted file mode 100644 index 5398bd0c..00000000 --- a/repos/xorg/libev/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=libev -version=4.33 -release=1 -source="http://dist.schmorp.de/$name/$name-$version.tar.gz" - -postbuild() { - rm $PKG/usr/include/event.h -} diff --git a/repos/xorg/libexif/.checksum b/repos/xorg/libexif/.checksum deleted file mode 100644 index 1b227a4a..00000000 --- a/repos/xorg/libexif/.checksum +++ /dev/null @@ -1 +0,0 @@ -96f254ecec850492105d3c6f2b5ee10fd513fe6eec18ad2e2e6fb8677b3062bc libexif-0.6.24.tar.bz2 diff --git a/repos/xorg/libexif/.files b/repos/xorg/libexif/.files deleted file mode 100644 index f5ca4135..00000000 --- a/repos/xorg/libexif/.files +++ /dev/null @@ -1,24 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/libexif/ --rw-r--r-- root/root usr/include/libexif/_stdint.h --rw-r--r-- root/root usr/include/libexif/exif-byte-order.h --rw-r--r-- root/root usr/include/libexif/exif-content.h --rw-r--r-- root/root usr/include/libexif/exif-data-type.h --rw-r--r-- root/root usr/include/libexif/exif-data.h --rw-r--r-- root/root usr/include/libexif/exif-entry.h --rw-r--r-- root/root usr/include/libexif/exif-format.h --rw-r--r-- root/root usr/include/libexif/exif-ifd.h --rw-r--r-- root/root usr/include/libexif/exif-loader.h --rw-r--r-- root/root usr/include/libexif/exif-log.h --rw-r--r-- root/root usr/include/libexif/exif-mem.h --rw-r--r-- root/root usr/include/libexif/exif-mnote-data.h --rw-r--r-- root/root usr/include/libexif/exif-tag.h --rw-r--r-- root/root usr/include/libexif/exif-utils.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libexif.so -> libexif.so.12.3.4 -lrwxrwxrwx root/root usr/lib/libexif.so.12 -> libexif.so.12.3.4 --rwxr-xr-x root/root usr/lib/libexif.so.12.3.4 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libexif.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libexif/abuild b/repos/xorg/libexif/abuild deleted file mode 100644 index 497b5238..00000000 --- a/repos/xorg/libexif/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libexif -version=0.6.24 -release=1 -source="https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.bz2" diff --git a/repos/xorg/libfm-extra/.checksum b/repos/xorg/libfm-extra/.checksum deleted file mode 100644 index 15ba756d..00000000 --- a/repos/xorg/libfm-extra/.checksum +++ /dev/null @@ -1 +0,0 @@ -ab9b1f1998ef2a93ee623c743acf247ea0def26c1e158bfd476c8fe8e3fd4ee9 libfm-1.3.2.tar.xz diff --git a/repos/xorg/libfm-extra/.files b/repos/xorg/libfm-extra/.files deleted file mode 100644 index 147b8032..00000000 --- a/repos/xorg/libfm-extra/.files +++ /dev/null @@ -1,13 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -lrwxrwxrwx root/root usr/include/libfm -> libfm-1.0 -drwxr-xr-x root/root usr/include/libfm-1.0/ --rw-r--r-- root/root usr/include/libfm-1.0/fm-extra.h --rw-r--r-- root/root usr/include/libfm-1.0/fm-version.h --rw-r--r-- root/root usr/include/libfm-1.0/fm-xml-file.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libfm-extra.so -> libfm-extra.so.4.1.3 -lrwxrwxrwx root/root usr/lib/libfm-extra.so.4 -> libfm-extra.so.4.1.3 --rwxr-xr-x root/root usr/lib/libfm-extra.so.4.1.3 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libfm-extra.pc diff --git a/repos/xorg/libfm-extra/abuild b/repos/xorg/libfm-extra/abuild deleted file mode 100644 index 0d4a9a82..00000000 --- a/repos/xorg/libfm-extra/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libfm-extra -version=1.3.2 -release=1 -source="https://downloads.sourceforge.net/pcmanfm/libfm-$version.tar.xz" -build_opt="--with-extra-only --with-gtk=no" diff --git a/repos/xorg/libfm-extra/depends b/repos/xorg/libfm-extra/depends deleted file mode 100644 index d195319c..00000000 --- a/repos/xorg/libfm-extra/depends +++ /dev/null @@ -1,3 +0,0 @@ -glib -intltool -gettext-tiny diff --git a/repos/xorg/libfm/.checksum b/repos/xorg/libfm/.checksum deleted file mode 100644 index fe2fd51f..00000000 --- a/repos/xorg/libfm/.checksum +++ /dev/null @@ -1,3 +0,0 @@ -a801ad4b9358927145b461d09cd713a0f4f362333482e3459df5af73467301b2 fix-background-colour-gtk3.patch -ec09cfe9793082529f9c2b5857306f7d18ad0afa4818be1f5266b85ee49c6849 gcc14-support.patch -ab9b1f1998ef2a93ee623c743acf247ea0def26c1e158bfd476c8fe8e3fd4ee9 libfm-1.3.2.tar.xz diff --git a/repos/xorg/libfm/.files b/repos/xorg/libfm/.files deleted file mode 100644 index c6a355e5..00000000 --- a/repos/xorg/libfm/.files +++ /dev/null @@ -1,120 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/libfm/ --rw-r--r-- root/root etc/xdg/libfm/libfm.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/libfm-pref-apps --rwxr-xr-x root/root usr/bin/lxshortcut -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/libfm/ --rw-r--r-- root/root usr/include/libfm/fm-action.h --rw-r--r-- root/root usr/include/libfm/fm-app-chooser-combo-box.h --rw-r--r-- root/root usr/include/libfm/fm-app-chooser-dlg.h --rw-r--r-- root/root usr/include/libfm/fm-app-info.h --rw-r--r-- root/root usr/include/libfm/fm-app-menu-view.h --rw-r--r-- root/root usr/include/libfm/fm-archiver.h --rw-r--r-- root/root usr/include/libfm/fm-bookmarks.h --rw-r--r-- root/root usr/include/libfm/fm-cell-renderer-pixbuf.h --rw-r--r-- root/root usr/include/libfm/fm-cell-renderer-text.h --rw-r--r-- root/root usr/include/libfm/fm-clipboard.h --rw-r--r-- root/root usr/include/libfm/fm-config.h --rw-r--r-- root/root usr/include/libfm/fm-deep-count-job.h --rw-r--r-- root/root usr/include/libfm/fm-dir-list-job.h --rw-r--r-- root/root usr/include/libfm/fm-dir-tree-model.h --rw-r--r-- root/root usr/include/libfm/fm-dir-tree-view.h --rw-r--r-- root/root usr/include/libfm/fm-dnd-auto-scroll.h --rw-r--r-- root/root usr/include/libfm/fm-dnd-dest.h --rw-r--r-- root/root usr/include/libfm/fm-dnd-src.h --rw-r--r-- root/root usr/include/libfm/fm-dummy-monitor.h --rw-r--r-- root/root usr/include/libfm/fm-file-info-job.h --rw-r--r-- root/root usr/include/libfm/fm-file-info.h --rw-r--r-- root/root usr/include/libfm/fm-file-launcher.h --rw-r--r-- root/root usr/include/libfm/fm-file-menu.h --rw-r--r-- root/root usr/include/libfm/fm-file-ops-job-change-attr.h --rw-r--r-- root/root usr/include/libfm/fm-file-ops-job-delete.h --rw-r--r-- root/root usr/include/libfm/fm-file-ops-job-xfer.h --rw-r--r-- root/root usr/include/libfm/fm-file-ops-job.h --rw-r--r-- root/root usr/include/libfm/fm-file-properties.h --rw-r--r-- root/root usr/include/libfm/fm-file.h --rw-r--r-- root/root usr/include/libfm/fm-folder-config.h --rw-r--r-- root/root usr/include/libfm/fm-folder-model.h --rw-r--r-- root/root usr/include/libfm/fm-folder-view.h --rw-r--r-- root/root usr/include/libfm/fm-folder.h --rw-r--r-- root/root usr/include/libfm/fm-gtk-file-launcher.h --rw-r--r-- root/root usr/include/libfm/fm-gtk-marshal.h --rw-r--r-- root/root usr/include/libfm/fm-gtk-utils.h --rw-r--r-- root/root usr/include/libfm/fm-gtk.h --rw-r--r-- root/root usr/include/libfm/fm-icon-pixbuf.h --rw-r--r-- root/root usr/include/libfm/fm-icon.h --rw-r--r-- root/root usr/include/libfm/fm-job.h --rw-r--r-- root/root usr/include/libfm/fm-list.h --rw-r--r-- root/root usr/include/libfm/fm-marshal.h --rw-r--r-- root/root usr/include/libfm/fm-menu-tool-item.h --rw-r--r-- root/root usr/include/libfm/fm-mime-type.h --rw-r--r-- root/root usr/include/libfm/fm-module.h --rw-r--r-- root/root usr/include/libfm/fm-monitor.h --rw-r--r-- root/root usr/include/libfm/fm-nav-history.h --rw-r--r-- root/root usr/include/libfm/fm-path-bar.h --rw-r--r-- root/root usr/include/libfm/fm-path-entry.h --rw-r--r-- root/root usr/include/libfm/fm-path.h --rw-r--r-- root/root usr/include/libfm/fm-places-model.h --rw-r--r-- root/root usr/include/libfm/fm-places-view.h --rw-r--r-- root/root usr/include/libfm/fm-progress-dlg.h --rw-r--r-- root/root usr/include/libfm/fm-seal.h --rw-r--r-- root/root usr/include/libfm/fm-side-pane.h --rw-r--r-- root/root usr/include/libfm/fm-simple-job.h --rw-r--r-- root/root usr/include/libfm/fm-sortable.h --rw-r--r-- root/root usr/include/libfm/fm-standard-view.h --rw-r--r-- root/root usr/include/libfm/fm-tab-label.h --rw-r--r-- root/root usr/include/libfm/fm-templates.h --rw-r--r-- root/root usr/include/libfm/fm-terminal.h --rw-r--r-- root/root usr/include/libfm/fm-thumbnail-loader.h --rw-r--r-- root/root usr/include/libfm/fm-thumbnail.h --rw-r--r-- root/root usr/include/libfm/fm-thumbnailer.h --rw-r--r-- root/root usr/include/libfm/fm-utils.h --rw-r--r-- root/root usr/include/libfm/fm.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libfm-gtk3.so -> libfm-gtk3.so.4.1.3 -lrwxrwxrwx root/root usr/lib/libfm-gtk3.so.4 -> libfm-gtk3.so.4.1.3 --rwxr-xr-x root/root usr/lib/libfm-gtk3.so.4.1.3 -lrwxrwxrwx root/root usr/lib/libfm.so -> libfm.so.4.1.3 -lrwxrwxrwx root/root usr/lib/libfm.so.4 -> libfm.so.4.1.3 --rwxr-xr-x root/root usr/lib/libfm.so.4.1.3 -drwxr-xr-x root/root usr/lib/libfm/ -drwxr-xr-x root/root usr/lib/libfm/modules/ --rwxr-xr-x root/root usr/lib/libfm/modules/gtk-fileprop-x-desktop.so --rwxr-xr-x root/root usr/lib/libfm/modules/gtk-fileprop-x-shortcut.so --rwxr-xr-x root/root usr/lib/libfm/modules/gtk-menu-actions.so --rwxr-xr-x root/root usr/lib/libfm/modules/gtk-menu-trash.so --rwxr-xr-x root/root usr/lib/libfm/modules/vfs-menu.so --rwxr-xr-x root/root usr/lib/libfm/modules/vfs-search.so -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libfm-gtk3.pc --rw-r--r-- root/root usr/lib/pkgconfig/libfm.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/libfm-pref-apps.desktop --rw-r--r-- root/root usr/share/applications/lxshortcut.desktop -drwxr-xr-x root/root usr/share/libfm/ --rw-r--r-- root/root usr/share/libfm/archivers.list -drwxr-xr-x root/root usr/share/libfm/images/ --rw-r--r-- root/root usr/share/libfm/images/folder.png --rw-r--r-- root/root usr/share/libfm/images/unknown.png --rw-r--r-- root/root usr/share/libfm/terminals.list -drwxr-xr-x root/root usr/share/libfm/ui/ --rw-r--r-- root/root usr/share/libfm/ui/app-chooser.ui --rw-r--r-- root/root usr/share/libfm/ui/ask-rename.ui --rw-r--r-- root/root usr/share/libfm/ui/choose-icon.ui --rw-r--r-- root/root usr/share/libfm/ui/exec-file.ui --rw-r--r-- root/root usr/share/libfm/ui/file-prop.ui --rw-r--r-- root/root usr/share/libfm/ui/filesearch.ui --rw-r--r-- root/root usr/share/libfm/ui/preferred-apps.ui --rw-r--r-- root/root usr/share/libfm/ui/progress.ui -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/libfm-pref-apps.1.gz --rw-r--r-- root/root usr/share/man/man1/lxshortcut.1.gz -drwxr-xr-x root/root usr/share/mime/ -drwxr-xr-x root/root usr/share/mime/packages/ --rw-r--r-- root/root usr/share/mime/packages/libfm.xml diff --git a/repos/xorg/libfm/abuild b/repos/xorg/libfm/abuild deleted file mode 100644 index d8e071e1..00000000 --- a/repos/xorg/libfm/abuild +++ /dev/null @@ -1,37 +0,0 @@ -name=libfm -version=1.3.2 -release=1 -source="https://downloads.sourceforge.net/pcmanfm/$name-$version.tar.xz - gcc14-support.patch - fix-background-colour-gtk3.patch" -build_opt="--with-gtk=3 --disable-old-actions" - -prebuild() { - # Update xarchiver option - # https://github.com/lxde/libfm/issues/35 - sed -i 's/create=xarchiver --add-to %F/create=xarchiver --compress %F/' data/archivers.list - - # disable gtk-doc - sed -ie '/^SUBDIR.*=/s#docs##' Makefile.am - sed -ie '/^[[:space:]]*docs/d' configure.ac - - # faking gtkdocize - mkdir bin - touch bin/gtkdocize - chmod +x bin/gtkdocize - export PATH=$PATH:$PWD/bin - - autoreconf -fi -} - -postbuild() { - rm $PKG/usr/include/libfm - mv $PKG/usr/include/libfm-1.0 $PKG/usr/include/libfm - rm $PKG/usr/lib/libfm-extra.so* \ - $PKG/usr/lib/libfm-extra.a \ - $PKG/usr/lib/libfm-extra.la - rm $PKG/usr/lib/pkgconfig/libfm-extra.pc - rm $PKG/usr/include/libfm/fm-extra.h \ - $PKG/usr/include/libfm/fm-version.h \ - $PKG/usr/include/libfm/fm-xml-file.h -} diff --git a/repos/xorg/libfm/depends b/repos/xorg/libfm/depends deleted file mode 100644 index c5ebad1a..00000000 --- a/repos/xorg/libfm/depends +++ /dev/null @@ -1,5 +0,0 @@ -gtk3 -menu-cache -libexif -vala -lxmenu-data diff --git a/repos/xorg/libfm/fix-background-colour-gtk3.patch b/repos/xorg/libfm/fix-background-colour-gtk3.patch deleted file mode 100644 index 77f5a901..00000000 --- a/repos/xorg/libfm/fix-background-colour-gtk3.patch +++ /dev/null @@ -1,79 +0,0 @@ -From 126358218ea22bc9fff02953db1e72bf96c9f184 Mon Sep 17 00:00:00 2001 -From: Livanh <livanh@protonmail.com> -Date: Mon, 15 Mar 2021 16:13:23 +0100 -Subject: [PATCH 1/3] Fix background color with GTK3 - ---- - src/gtk/exo/exo-icon-view.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/src/gtk/exo/exo-icon-view.c b/src/gtk/exo/exo-icon-view.c -index 3ce98099..62229e25 100644 ---- a/src/gtk/exo/exo-icon-view.c -+++ b/src/gtk/exo/exo-icon-view.c -@@ -1878,6 +1878,16 @@ exo_icon_view_expose_event (GtkWidget *widget, - - if (!gtk_cairo_should_draw_window (cr, priv->bin_window)) - return FALSE; -+ -+ /* draw a background according to the css theme */ -+ style = gtk_widget_get_style_context (widget); -+ gtk_style_context_save (style); -+ gtk_style_context_add_class (style, GTK_STYLE_CLASS_VIEW); -+ gtk_render_background (style, cr, -+ 0, 0, -+ gtk_widget_get_allocated_width (widget), -+ gtk_widget_get_allocated_height (widget)); -+ gtk_style_context_restore (style); - #endif - - /* don't handle expose if the layout isn't done yet; the layout - -From 313bf9ee0a8bc318a50e17d22b7d963c29f51d0c Mon Sep 17 00:00:00 2001 -From: Livanh <livanh@protonmail.com> -Date: Tue, 16 Mar 2021 15:50:55 +0100 -Subject: [PATCH 2/3] Remove unneeded call to gtk_widget_get_style_context() - ---- - src/gtk/exo/exo-icon-view.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -diff --git a/src/gtk/exo/exo-icon-view.c b/src/gtk/exo/exo-icon-view.c -index 62229e25..4eb13de4 100644 ---- a/src/gtk/exo/exo-icon-view.c -+++ b/src/gtk/exo/exo-icon-view.c -@@ -1989,9 +1989,7 @@ exo_icon_view_expose_event (GtkWidget *widget, - } - - if (G_UNLIKELY (dest_item != NULL || priv->doing_rubberband)) --#if GTK_CHECK_VERSION(3, 0, 0) -- style = gtk_widget_get_style_context (widget); --#else -+#if !GTK_CHECK_VERSION(3, 0, 0) - style = gtk_widget_get_style (widget); - #endif - - -From 75d3986f8a0de55d7cd7235eb1f03e79bbe6e08a Mon Sep 17 00:00:00 2001 -From: Livanh <livanh@protonmail.com> -Date: Tue, 16 Mar 2021 17:36:02 +0100 -Subject: [PATCH 3/3] Fix possible "if" condition with empty body - ---- - src/gtk/exo/exo-icon-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/gtk/exo/exo-icon-view.c b/src/gtk/exo/exo-icon-view.c -index 4eb13de4..893576cb 100644 ---- a/src/gtk/exo/exo-icon-view.c -+++ b/src/gtk/exo/exo-icon-view.c -@@ -1988,8 +1988,8 @@ exo_icon_view_expose_event (GtkWidget *widget, - #endif - } - -- if (G_UNLIKELY (dest_item != NULL || priv->doing_rubberband)) - #if !GTK_CHECK_VERSION(3, 0, 0) -+ if (G_UNLIKELY (dest_item != NULL || priv->doing_rubberband)) - style = gtk_widget_get_style (widget); - #endif - diff --git a/repos/xorg/libfm/gcc14-support.patch b/repos/xorg/libfm/gcc14-support.patch deleted file mode 100644 index c04fd53c..00000000 --- a/repos/xorg/libfm/gcc14-support.patch +++ /dev/null @@ -1,55 +0,0 @@ -From ec6a21263d150aea918826941a80f335b45470a8 Mon Sep 17 00:00:00 2001 -From: Mamoru TASAKA <mtasaka@fedoraproject.org> -Date: Fri, 1 Mar 2024 14:19:46 +0900 -Subject: [PATCH] FIX: support gcc14 -Werror=incompatible-pointer-types - -gcc14 now defaults to -Werror=incompatible-pointer-types . -To support this, cast GTK related objects for assignment -properly. - -Fixes #100 . ---- - src/gtk/exo/exo-icon-view.c | 2 +- - src/gtk/fm-dnd-dest.c | 2 +- - src/gtk/fm-standard-view.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/gtk/exo/exo-icon-view.c b/src/gtk/exo/exo-icon-view.c -index 3ce98099..79e1c7ab 100644 ---- a/src/gtk/exo/exo-icon-view.c -+++ b/src/gtk/exo/exo-icon-view.c -@@ -2819,7 +2819,7 @@ exo_icon_view_key_press_event (GtkWidget *widget, - /* allocate a new event to forward */ - new_event = gdk_event_copy ((GdkEvent *) event); - g_object_unref (G_OBJECT (new_event->key.window)); -- new_event->key.window = g_object_ref (G_OBJECT (gtk_widget_get_window (icon_view->priv->search_entry))); -+ new_event->key.window = GDK_WINDOW(g_object_ref (G_OBJECT (gtk_widget_get_window (icon_view->priv->search_entry)))); - - /* send the event to the search entry. If the "preedit-changed" signal is - * emitted during this event, priv->search_imcontext_changed will be set. -diff --git a/src/gtk/fm-dnd-dest.c b/src/gtk/fm-dnd-dest.c -index 95d310d3..ce752758 100644 ---- a/src/gtk/fm-dnd-dest.c -+++ b/src/gtk/fm-dnd-dest.c -@@ -458,7 +458,7 @@ static GdkDragAction _ask_action_on_drop(GtkWidget *widget, - gtk_action_set_sensitive(act, FALSE); - } - } -- ri.menu = g_object_ref(gtk_ui_manager_get_widget(ui, "/popup")); -+ ri.menu = GTK_MENU(g_object_ref(gtk_ui_manager_get_widget(ui, "/popup"))); - g_signal_connect(ri.menu, "selection-done", G_CALLBACK(gtk_widget_destroy), NULL); - unmap_handler = g_signal_connect(ri.menu, "unmap", - G_CALLBACK(run_unmap_handler), &ri); -diff --git a/src/gtk/fm-standard-view.c b/src/gtk/fm-standard-view.c -index e0ff5a06..df920254 100644 ---- a/src/gtk/fm-standard-view.c -+++ b/src/gtk/fm-standard-view.c -@@ -637,7 +637,7 @@ static inline void create_icon_view(FmStandardView* fv, GList* sels) - "text", FM_FOLDER_MODEL_COL_NAME ); - if(fv->renderer_text) - g_object_unref(fv->renderer_text); -- fv->renderer_text = g_object_ref_sink(render); -+ fv->renderer_text = FM_CELL_RENDERER_TEXT(g_object_ref_sink(render)); - exo_icon_view_set_search_column((ExoIconView*)fv->view, FM_FOLDER_MODEL_COL_NAME); - g_signal_connect(fv->view, "item-activated", G_CALLBACK(on_icon_view_item_activated), fv); - g_signal_connect(fv->view, "selection-changed", G_CALLBACK(on_sel_changed), fv); diff --git a/repos/xorg/libfm/postinstall b/repos/xorg/libfm/postinstall deleted file mode 100755 index e2d50975..00000000 --- a/repos/xorg/libfm/postinstall +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -update-mime-database /usr/share/mime -update-desktop-database --quiet diff --git a/repos/xorg/libfontenc/.checksum b/repos/xorg/libfontenc/.checksum deleted file mode 100644 index c7d53b89..00000000 --- a/repos/xorg/libfontenc/.checksum +++ /dev/null @@ -1 +0,0 @@ -6ab127a335f7cb4892566e59448d91e9ec43ac522f31f97a3c94350f0a3ecaf4 libfontenc-1.1.8.tar.xz diff --git a/repos/xorg/libfontenc/.files b/repos/xorg/libfontenc/.files deleted file mode 100644 index 55186882..00000000 --- a/repos/xorg/libfontenc/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/fonts/ --rw-r--r-- root/root usr/include/X11/fonts/fontenc.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libfontenc.so -> libfontenc.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libfontenc.so.1 -> libfontenc.so.1.0.0 --rwxr-xr-x root/root usr/lib/libfontenc.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/fontenc.pc diff --git a/repos/xorg/libfontenc/abuild b/repos/xorg/libfontenc/abuild deleted file mode 100644 index 27aca122..00000000 --- a/repos/xorg/libfontenc/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libfontenc -version=1.1.8 -release=1 -source="https://www.x.org/pub/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/libfontenc/depends b/repos/xorg/libfontenc/depends deleted file mode 100644 index be3636df..00000000 --- a/repos/xorg/libfontenc/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -util-macros diff --git a/repos/xorg/libice/.checksum b/repos/xorg/libice/.checksum deleted file mode 100644 index f3614540..00000000 --- a/repos/xorg/libice/.checksum +++ /dev/null @@ -1 +0,0 @@ -3d1d41041e0a58799a5e9965fd258a4f6875143102644fbbc71061eb4c652577 libICE-1.1.2.tar.xz diff --git a/repos/xorg/libice/.files b/repos/xorg/libice/.files deleted file mode 100644 index 165931f0..00000000 --- a/repos/xorg/libice/.files +++ /dev/null @@ -1,17 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/ICE/ --rw-r--r-- root/root usr/include/X11/ICE/ICE.h --rw-r--r-- root/root usr/include/X11/ICE/ICEconn.h --rw-r--r-- root/root usr/include/X11/ICE/ICElib.h --rw-r--r-- root/root usr/include/X11/ICE/ICEmsg.h --rw-r--r-- root/root usr/include/X11/ICE/ICEproto.h --rw-r--r-- root/root usr/include/X11/ICE/ICEutil.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libICE.so -> libICE.so.6.3.0 -lrwxrwxrwx root/root usr/lib/libICE.so.6 -> libICE.so.6.3.0 --rwxr-xr-x root/root usr/lib/libICE.so.6.3.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/ice.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libice/abuild b/repos/xorg/libice/abuild deleted file mode 100644 index 3ec826fb..00000000 --- a/repos/xorg/libice/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libice -version=1.1.2 -release=1 -source="https://www.x.org/pub/individual/lib/libICE-$version.tar.xz" diff --git a/repos/xorg/libice/depends b/repos/xorg/libice/depends deleted file mode 100644 index 3511775d..00000000 --- a/repos/xorg/libice/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -xtrans diff --git a/repos/xorg/libnl/.checksum b/repos/xorg/libnl/.checksum deleted file mode 100644 index eaad69d0..00000000 --- a/repos/xorg/libnl/.checksum +++ /dev/null @@ -1 +0,0 @@ -d5f094be7b0a2f594f2a636af21358974a743c51753c4f3c622275b0ee770b58 libnl-3.11.0.tar.gz diff --git a/repos/xorg/libnl/.files b/repos/xorg/libnl/.files deleted file mode 100644 index 92e952f8..00000000 --- a/repos/xorg/libnl/.files +++ /dev/null @@ -1,257 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/libnl/ --rw-r--r-- root/root etc/libnl/classid.new --rw-r--r-- root/root etc/libnl/pktloc.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/genl-ctrl-list --rwxr-xr-x root/root usr/bin/idiag-socket-details --rwxr-xr-x root/root usr/bin/nf-ct-add --rwxr-xr-x root/root usr/bin/nf-ct-events --rwxr-xr-x root/root usr/bin/nf-ct-list --rwxr-xr-x root/root usr/bin/nf-exp-add --rwxr-xr-x root/root usr/bin/nf-exp-delete --rwxr-xr-x root/root usr/bin/nf-exp-list --rwxr-xr-x root/root usr/bin/nf-log --rwxr-xr-x root/root usr/bin/nf-monitor --rwxr-xr-x root/root usr/bin/nf-queue --rwxr-xr-x root/root usr/bin/nl-addr-add --rwxr-xr-x root/root usr/bin/nl-addr-delete --rwxr-xr-x root/root usr/bin/nl-addr-list --rwxr-xr-x root/root usr/bin/nl-class-add --rwxr-xr-x root/root usr/bin/nl-class-delete --rwxr-xr-x root/root usr/bin/nl-class-list --rwxr-xr-x root/root usr/bin/nl-classid-lookup --rwxr-xr-x root/root usr/bin/nl-cls-add --rwxr-xr-x root/root usr/bin/nl-cls-delete --rwxr-xr-x root/root usr/bin/nl-cls-list --rwxr-xr-x root/root usr/bin/nl-fib-lookup --rwxr-xr-x root/root usr/bin/nl-link-enslave --rwxr-xr-x root/root usr/bin/nl-link-ifindex2name --rwxr-xr-x root/root usr/bin/nl-link-list --rwxr-xr-x root/root usr/bin/nl-link-name2ifindex --rwxr-xr-x root/root usr/bin/nl-link-release --rwxr-xr-x root/root usr/bin/nl-link-set --rwxr-xr-x root/root usr/bin/nl-link-stats --rwxr-xr-x root/root usr/bin/nl-list-caches --rwxr-xr-x root/root usr/bin/nl-list-sockets --rwxr-xr-x root/root usr/bin/nl-monitor --rwxr-xr-x root/root usr/bin/nl-neigh-add --rwxr-xr-x root/root usr/bin/nl-neigh-delete --rwxr-xr-x root/root usr/bin/nl-neigh-list --rwxr-xr-x root/root usr/bin/nl-neightbl-list --rwxr-xr-x root/root usr/bin/nl-nh-list --rwxr-xr-x root/root usr/bin/nl-pktloc-lookup --rwxr-xr-x root/root usr/bin/nl-qdisc-add --rwxr-xr-x root/root usr/bin/nl-qdisc-delete --rwxr-xr-x root/root usr/bin/nl-qdisc-list --rwxr-xr-x root/root usr/bin/nl-route-add --rwxr-xr-x root/root usr/bin/nl-route-delete --rwxr-xr-x root/root usr/bin/nl-route-get --rwxr-xr-x root/root usr/bin/nl-route-list --rwxr-xr-x root/root usr/bin/nl-rule-list --rwxr-xr-x root/root usr/bin/nl-tctree-list --rwxr-xr-x root/root usr/bin/nl-util-addr -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/libnl3/ -drwxr-xr-x root/root usr/include/libnl3/netlink/ --rw-r--r-- root/root usr/include/libnl3/netlink/addr.h --rw-r--r-- root/root usr/include/libnl3/netlink/attr.h --rw-r--r-- root/root usr/include/libnl3/netlink/cache-api.h --rw-r--r-- root/root usr/include/libnl3/netlink/cache.h -drwxr-xr-x root/root usr/include/libnl3/netlink/cli/ --rw-r--r-- root/root usr/include/libnl3/netlink/cli/addr.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/class.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/cls.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/ct.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/exp.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/link.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/mdb.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/neigh.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/nh.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/qdisc.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/route.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/rule.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/tc.h --rw-r--r-- root/root usr/include/libnl3/netlink/cli/utils.h --rw-r--r-- root/root usr/include/libnl3/netlink/data.h --rw-r--r-- root/root usr/include/libnl3/netlink/errno.h -drwxr-xr-x root/root usr/include/libnl3/netlink/fib_lookup/ --rw-r--r-- root/root usr/include/libnl3/netlink/fib_lookup/lookup.h --rw-r--r-- root/root usr/include/libnl3/netlink/fib_lookup/request.h -drwxr-xr-x root/root usr/include/libnl3/netlink/genl/ --rw-r--r-- root/root usr/include/libnl3/netlink/genl/ctrl.h --rw-r--r-- root/root usr/include/libnl3/netlink/genl/family.h --rw-r--r-- root/root usr/include/libnl3/netlink/genl/genl.h --rw-r--r-- root/root usr/include/libnl3/netlink/genl/mngt.h --rw-r--r-- root/root usr/include/libnl3/netlink/handlers.h --rw-r--r-- root/root usr/include/libnl3/netlink/hash.h --rw-r--r-- root/root usr/include/libnl3/netlink/hashtable.h -drwxr-xr-x root/root usr/include/libnl3/netlink/idiag/ --rw-r--r-- root/root usr/include/libnl3/netlink/idiag/idiagnl.h --rw-r--r-- root/root usr/include/libnl3/netlink/idiag/meminfo.h --rw-r--r-- root/root usr/include/libnl3/netlink/idiag/msg.h --rw-r--r-- root/root usr/include/libnl3/netlink/idiag/req.h --rw-r--r-- root/root usr/include/libnl3/netlink/idiag/vegasinfo.h --rw-r--r-- root/root usr/include/libnl3/netlink/list.h --rw-r--r-- root/root usr/include/libnl3/netlink/msg.h -drwxr-xr-x root/root usr/include/libnl3/netlink/netfilter/ --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/ct.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/exp.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/log.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/log_msg.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/netfilter.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/nfnl.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/queue.h --rw-r--r-- root/root usr/include/libnl3/netlink/netfilter/queue_msg.h --rw-r--r-- root/root usr/include/libnl3/netlink/netlink-compat.h --rw-r--r-- root/root usr/include/libnl3/netlink/netlink-kernel.h --rw-r--r-- root/root usr/include/libnl3/netlink/netlink.h --rw-r--r-- root/root usr/include/libnl3/netlink/object-api.h --rw-r--r-- root/root usr/include/libnl3/netlink/object.h -drwxr-xr-x root/root usr/include/libnl3/netlink/route/ -drwxr-xr-x root/root usr/include/libnl3/netlink/route/act/ --rw-r--r-- root/root usr/include/libnl3/netlink/route/act/gact.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/act/mirred.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/act/nat.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/act/skbedit.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/act/vlan.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/action.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/addr.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/class.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/classifier.h -drwxr-xr-x root/root usr/include/libnl3/netlink/route/cls/ --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/basic.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/cgroup.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/ematch.h -drwxr-xr-x root/root usr/include/libnl3/netlink/route/cls/ematch/ --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/ematch/cmp.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/ematch/meta.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/ematch/nbyte.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/ematch/text.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/flower.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/fw.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/matchall.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/police.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/cls/u32.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link.h -drwxr-xr-x root/root usr/include/libnl3/netlink/route/link/ --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/api.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/bonding.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/bridge.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/bridge_info.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/can.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/geneve.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/inet.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/inet6.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/info-api.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ip6gre.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ip6tnl.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ip6vti.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ipgre.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ipip.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ipvlan.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ipvti.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/macsec.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/macvlan.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/macvtap.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/ppp.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/sit.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/sriov.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/team.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/veth.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/vlan.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/vrf.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/vxlan.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/link/xfrmi.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/mdb.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/neighbour.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/neightbl.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/netconf.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/nexthop.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/nh.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/pktloc.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc.h -drwxr-xr-x root/root usr/include/libnl3/netlink/route/qdisc/ --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/cbq.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/dsmark.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/fifo.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/fq_codel.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/hfsc.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/htb.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/mqprio.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/netem.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/plug.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/prio.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/red.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/sfq.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/qdisc/tbf.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/route.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/rtnl.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/rule.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/tc-api.h --rw-r--r-- root/root usr/include/libnl3/netlink/route/tc.h --rw-r--r-- root/root usr/include/libnl3/netlink/socket.h --rw-r--r-- root/root usr/include/libnl3/netlink/types.h --rw-r--r-- root/root usr/include/libnl3/netlink/utils.h --rw-r--r-- root/root usr/include/libnl3/netlink/version.h -drwxr-xr-x root/root usr/include/libnl3/netlink/xfrm/ --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/ae.h --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/lifetime.h --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/sa.h --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/selector.h --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/sp.h --rw-r--r-- root/root usr/include/libnl3/netlink/xfrm/template.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libnl-3.so -> libnl-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-3.so.200 -> libnl-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-cli-3.so -> libnl-cli-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-cli-3.so.200 -> libnl-cli-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-cli-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-genl-3.so -> libnl-genl-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-genl-3.so.200 -> libnl-genl-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-genl-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-idiag-3.so -> libnl-idiag-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-idiag-3.so.200 -> libnl-idiag-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-idiag-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-nf-3.so -> libnl-nf-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-nf-3.so.200 -> libnl-nf-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-nf-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-route-3.so -> libnl-route-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-route-3.so.200 -> libnl-route-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-route-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-xfrm-3.so -> libnl-xfrm-3.so.200.26.0 -lrwxrwxrwx root/root usr/lib/libnl-xfrm-3.so.200 -> libnl-xfrm-3.so.200.26.0 --rwxr-xr-x root/root usr/lib/libnl-xfrm-3.so.200.26.0 -drwxr-xr-x root/root usr/lib/libnl/ -drwxr-xr-x root/root usr/lib/libnl/cli/ -drwxr-xr-x root/root usr/lib/libnl/cli/cls/ --rwxr-xr-x root/root usr/lib/libnl/cli/cls/basic.so --rwxr-xr-x root/root usr/lib/libnl/cli/cls/cgroup.so -drwxr-xr-x root/root usr/lib/libnl/cli/qdisc/ --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/bfifo.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/blackhole.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/fq_codel.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/hfsc.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/htb.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/ingress.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/pfifo.so --rwxr-xr-x root/root usr/lib/libnl/cli/qdisc/plug.so -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libnl-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-cli-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-genl-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-idiag-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-nf-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-route-3.0.pc --rw-r--r-- root/root usr/lib/pkgconfig/libnl-xfrm-3.0.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/genl-ctrl-list.8.gz --rw-r--r-- root/root usr/share/man/man8/nl-classid-lookup.8.gz --rw-r--r-- root/root usr/share/man/man8/nl-pktloc-lookup.8.gz --rw-r--r-- root/root usr/share/man/man8/nl-qdisc-add.8.gz --rw-r--r-- root/root usr/share/man/man8/nl-qdisc-delete.8.gz --rw-r--r-- root/root usr/share/man/man8/nl-qdisc-list.8.gz diff --git a/repos/xorg/libnl/abuild b/repos/xorg/libnl/abuild deleted file mode 100644 index a600f69e..00000000 --- a/repos/xorg/libnl/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libnl -version=3.11.0 -v=$(echo $version | sed 's/\./_/g') -release=1 -source="https://github.com/thom311/$name/releases/download/$name${v}/$name-$version.tar.gz" diff --git a/repos/xorg/libptytty/.checksum b/repos/xorg/libptytty/.checksum deleted file mode 100644 index 8ef8b37a..00000000 --- a/repos/xorg/libptytty/.checksum +++ /dev/null @@ -1 +0,0 @@ -f9581bf8182bc68ede5b7ee5d02e67e7bfba32d20d8ab7a0e1120e61222d585f libptytty-2.0.tar.gz diff --git a/repos/xorg/libptytty/.files b/repos/xorg/libptytty/.files deleted file mode 100644 index 8495ba73..00000000 --- a/repos/xorg/libptytty/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/libptytty.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libptytty.so -> libptytty.so.0 --rwxr-xr-x root/root usr/lib/libptytty.so.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libptytty.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/libptytty.3.gz diff --git a/repos/xorg/libptytty/abuild b/repos/xorg/libptytty/abuild deleted file mode 100644 index f19b1345..00000000 --- a/repos/xorg/libptytty/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libptytty -version=2.0 -release=1 -source="http://dist.schmorp.de/${name}/${name}-${version}.tar.gz" -build_opt="-DBUILD_SHARED_LIBS=ON -DPT_WTMPX_FILE=\"/dev/null/wtmp\"" diff --git a/repos/xorg/librsvg/.checksum b/repos/xorg/librsvg/.checksum deleted file mode 100644 index b2d97e21..00000000 --- a/repos/xorg/librsvg/.checksum +++ /dev/null @@ -1 +0,0 @@ -268503ff645a1a7c5255273f748ec97940382b25d010e1a6b324504255346bed librsvg-2.59.2.tar.xz diff --git a/repos/xorg/librsvg/.files b/repos/xorg/librsvg/.files deleted file mode 100644 index 48995e8e..00000000 --- a/repos/xorg/librsvg/.files +++ /dev/null @@ -1,32 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/rsvg-convert -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/librsvg-2.0/ -drwxr-xr-x root/root usr/include/librsvg-2.0/librsvg/ --rw-r--r-- root/root usr/include/librsvg-2.0/librsvg/rsvg-cairo.h --rw-r--r-- root/root usr/include/librsvg-2.0/librsvg/rsvg-features.h --rw-r--r-- root/root usr/include/librsvg-2.0/librsvg/rsvg-pixbuf.h --rw-r--r-- root/root usr/include/librsvg-2.0/librsvg/rsvg-version.h --rw-r--r-- root/root usr/include/librsvg-2.0/librsvg/rsvg.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/gdk-pixbuf-2.0/ -drwxr-xr-x root/root usr/lib/gdk-pixbuf-2.0/2.10.0/ -drwxr-xr-x root/root usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/ --rwxr-xr-x root/root usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader_svg.so -drwxr-xr-x root/root usr/lib/girepository-1.0/ --rw-r--r-- root/root usr/lib/girepository-1.0/Rsvg-2.0.typelib -lrwxrwxrwx root/root usr/lib/librsvg-2.so -> librsvg-2.so.2 -lrwxrwxrwx root/root usr/lib/librsvg-2.so.2 -> librsvg-2.so.2.59.2 --rwxr-xr-x root/root usr/lib/librsvg-2.so.2.59.2 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/librsvg-2.0.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/gir-1.0/ --rw-r--r-- root/root usr/share/gir-1.0/Rsvg-2.0.gir -drwxr-xr-x root/root usr/share/thumbnailers/ --rw-r--r-- root/root usr/share/thumbnailers/librsvg.thumbnailer -drwxr-xr-x root/root usr/share/vala/ -drwxr-xr-x root/root usr/share/vala/vapi/ --rw-r--r-- root/root usr/share/vala/vapi/librsvg-2.0.deps --rw-r--r-- root/root usr/share/vala/vapi/librsvg-2.0.vapi diff --git a/repos/xorg/librsvg/abuild b/repos/xorg/librsvg/abuild deleted file mode 100644 index d101a357..00000000 --- a/repos/xorg/librsvg/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=librsvg -version=2.59.2 -release=1 -source="https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz" diff --git a/repos/xorg/librsvg/depends b/repos/xorg/librsvg/depends deleted file mode 100644 index 439bd13e..00000000 --- a/repos/xorg/librsvg/depends +++ /dev/null @@ -1,4 +0,0 @@ -gdk-pixbuf -pango -cargo-c -vala diff --git a/repos/xorg/libsm/.checksum b/repos/xorg/libsm/.checksum deleted file mode 100644 index 8941fd69..00000000 --- a/repos/xorg/libsm/.checksum +++ /dev/null @@ -1 +0,0 @@ -f008eaca9e17a688479b6c7b7f2e3d0f01b2d275cd769980b18c84bac9dd95cf libSM-1.2.5.tar.xz diff --git a/repos/xorg/libsm/.files b/repos/xorg/libsm/.files deleted file mode 100644 index 2adcb03e..00000000 --- a/repos/xorg/libsm/.files +++ /dev/null @@ -1,14 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/SM/ --rw-r--r-- root/root usr/include/X11/SM/SM.h --rw-r--r-- root/root usr/include/X11/SM/SMlib.h --rw-r--r-- root/root usr/include/X11/SM/SMproto.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libSM.so -> libSM.so.6.0.1 -lrwxrwxrwx root/root usr/lib/libSM.so.6 -> libSM.so.6.0.1 --rwxr-xr-x root/root usr/lib/libSM.so.6.0.1 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/sm.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libsm/abuild b/repos/xorg/libsm/abuild deleted file mode 100644 index cb53d2db..00000000 --- a/repos/xorg/libsm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libsm -version=1.2.5 -release=1 -source="https://www.x.org/pub/individual/lib/libSM-$version.tar.xz" diff --git a/repos/xorg/libsm/depends b/repos/xorg/libsm/depends deleted file mode 100644 index 8c64b01c..00000000 --- a/repos/xorg/libsm/depends +++ /dev/null @@ -1 +0,0 @@ -libice diff --git a/repos/xorg/libtirpc/.checksum b/repos/xorg/libtirpc/.checksum deleted file mode 100644 index c87dac07..00000000 --- a/repos/xorg/libtirpc/.checksum +++ /dev/null @@ -1 +0,0 @@ -3ca1feefee3a216bb82bba35dfb455cac8524b8d8404767b01772f3b8fd00eea libtirpc-1.3.6.tar.bz2 diff --git a/repos/xorg/libtirpc/.files b/repos/xorg/libtirpc/.files deleted file mode 100644 index c816d83d..00000000 --- a/repos/xorg/libtirpc/.files +++ /dev/null @@ -1,69 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/bindresvport.blacklist.new --rw-r--r-- root/root etc/netconfig.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/tirpc/ --rw-r--r-- root/root usr/include/tirpc/netconfig.h -drwxr-xr-x root/root usr/include/tirpc/rpc/ --rw-r--r-- root/root usr/include/tirpc/rpc/auth.h --rw-r--r-- root/root usr/include/tirpc/rpc/auth_des.h --rw-r--r-- root/root usr/include/tirpc/rpc/auth_unix.h --rw-r--r-- root/root usr/include/tirpc/rpc/clnt.h --rw-r--r-- root/root usr/include/tirpc/rpc/clnt_soc.h --rw-r--r-- root/root usr/include/tirpc/rpc/clnt_stat.h --rw-r--r-- root/root usr/include/tirpc/rpc/des.h --rw-r--r-- root/root usr/include/tirpc/rpc/des_crypt.h --rw-r--r-- root/root usr/include/tirpc/rpc/key_prot.h --rw-r--r-- root/root usr/include/tirpc/rpc/nettype.h --rw-r--r-- root/root usr/include/tirpc/rpc/pmap_clnt.h --rw-r--r-- root/root usr/include/tirpc/rpc/pmap_prot.h --rw-r--r-- root/root usr/include/tirpc/rpc/pmap_rmt.h --rw-r--r-- root/root usr/include/tirpc/rpc/raw.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpc.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpc_com.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpc_msg.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpcb_clnt.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpcb_prot.h --rw-r--r-- root/root usr/include/tirpc/rpc/rpcb_prot.x --rw-r--r-- root/root usr/include/tirpc/rpc/rpcent.h --rw-r--r-- root/root usr/include/tirpc/rpc/svc.h --rw-r--r-- root/root usr/include/tirpc/rpc/svc_auth.h --rw-r--r-- root/root usr/include/tirpc/rpc/svc_dg.h --rw-r--r-- root/root usr/include/tirpc/rpc/svc_mt.h --rw-r--r-- root/root usr/include/tirpc/rpc/svc_soc.h --rw-r--r-- root/root usr/include/tirpc/rpc/types.h --rw-r--r-- root/root usr/include/tirpc/rpc/xdr.h -drwxr-xr-x root/root usr/include/tirpc/rpcsvc/ --rw-r--r-- root/root usr/include/tirpc/rpcsvc/crypt.h --rw-r--r-- root/root usr/include/tirpc/rpcsvc/crypt.x -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libtirpc.so -> libtirpc.so.3.0.0 -lrwxrwxrwx root/root usr/lib/libtirpc.so.3 -> libtirpc.so.3.0.0 --rwxr-xr-x root/root usr/lib/libtirpc.so.3.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libtirpc.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/bindresvport.3t.gz --rw-r--r-- root/root usr/share/man/man3/des_crypt.3t.gz --rw-r--r-- root/root usr/share/man/man3/getnetconfig.3t.gz --rw-r--r-- root/root usr/share/man/man3/getnetpath.3t.gz --rw-r--r-- root/root usr/share/man/man3/getrpcent.3t.gz --rw-r--r-- root/root usr/share/man/man3/getrpcport.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_clnt_auth.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_clnt_calls.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_clnt_create.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_secure.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_soc.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_svc_calls.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_svc_create.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_svc_err.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_svc_reg.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpc_xdr.3t.gz --rw-r--r-- root/root usr/share/man/man3/rpcbind.3t.gz --rw-r--r-- root/root usr/share/man/man3/rtime.3t.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/netconfig.5.gz diff --git a/repos/xorg/libtirpc/abuild b/repos/xorg/libtirpc/abuild deleted file mode 100644 index 6fadc494..00000000 --- a/repos/xorg/libtirpc/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libtirpc -version=1.3.6 -release=1 -source="https://downloads.sourceforge.net/$name/$name-$version.tar.bz2" -build_opt="--disable-gssapi" diff --git a/repos/xorg/libx11/.checksum b/repos/xorg/libx11/.checksum deleted file mode 100644 index be24eac4..00000000 --- a/repos/xorg/libx11/.checksum +++ /dev/null @@ -1 +0,0 @@ -0cdd01aab2049f74d139146f3f517d334db4d61fde27f3902a8930ccf01feff4 libX11-1.8.10.tar.xz diff --git a/repos/xorg/libx11/.files b/repos/xorg/libx11/.files deleted file mode 100644 index 6cc071ca..00000000 --- a/repos/xorg/libx11/.files +++ /dev/null @@ -1,1095 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/ImUtil.h --rw-r--r-- root/root usr/include/X11/XKBlib.h --rw-r--r-- root/root usr/include/X11/Xcms.h --rw-r--r-- root/root usr/include/X11/Xlib-xcb.h --rw-r--r-- root/root usr/include/X11/Xlib.h --rw-r--r-- root/root usr/include/X11/XlibConf.h --rw-r--r-- root/root usr/include/X11/Xlibint.h --rw-r--r-- root/root usr/include/X11/Xlocale.h --rw-r--r-- root/root usr/include/X11/Xregion.h --rw-r--r-- root/root usr/include/X11/Xresource.h --rw-r--r-- root/root usr/include/X11/Xutil.h --rw-r--r-- root/root usr/include/X11/cursorfont.h -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/XKBgeom.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libX11-xcb.so -> libX11-xcb.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libX11-xcb.so.1 -> libX11-xcb.so.1.0.0 --rwxr-xr-x root/root usr/lib/libX11-xcb.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libX11.so -> libX11.so.6.4.0 -lrwxrwxrwx root/root usr/lib/libX11.so.6 -> libX11.so.6.4.0 --rwxr-xr-x root/root usr/lib/libX11.so.6.4.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/x11-xcb.pc --rw-r--r-- root/root usr/lib/pkgconfig/x11.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ --rw-r--r-- root/root usr/share/X11/XErrorDB --rw-r--r-- root/root usr/share/X11/Xcms.txt -drwxr-xr-x root/root usr/share/X11/locale/ -drwxr-xr-x root/root usr/share/X11/locale/C/ --rw-r--r-- root/root usr/share/X11/locale/C/Compose --rw-r--r-- root/root usr/share/X11/locale/C/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/C/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/am_ET.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/am_ET.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/am_ET.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/am_ET.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/armscii-8/ --rw-r--r-- root/root usr/share/X11/locale/armscii-8/Compose --rw-r--r-- root/root usr/share/X11/locale/armscii-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/armscii-8/XLC_LOCALE --rw-r--r-- root/root usr/share/X11/locale/compose.dir -drwxr-xr-x root/root usr/share/X11/locale/cs_CZ.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/cs_CZ.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/cs_CZ.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/cs_CZ.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/el_GR.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/el_GR.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/el_GR.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/el_GR.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/en_US.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/en_US.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/en_US.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/fi_FI.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/fi_FI.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/fi_FI.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/fi_FI.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/georgian-academy/ --rw-r--r-- root/root usr/share/X11/locale/georgian-academy/Compose --rw-r--r-- root/root usr/share/X11/locale/georgian-academy/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/georgian-academy/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/georgian-ps/ --rw-r--r-- root/root usr/share/X11/locale/georgian-ps/Compose --rw-r--r-- root/root usr/share/X11/locale/georgian-ps/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/georgian-ps/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ibm-cp1133/ --rw-r--r-- root/root usr/share/X11/locale/ibm-cp1133/Compose --rw-r--r-- root/root usr/share/X11/locale/ibm-cp1133/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ibm-cp1133/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iscii-dev/ --rw-r--r-- root/root usr/share/X11/locale/iscii-dev/Compose --rw-r--r-- root/root usr/share/X11/locale/iscii-dev/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iscii-dev/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/isiri-3342/ --rw-r--r-- root/root usr/share/X11/locale/isiri-3342/Compose --rw-r--r-- root/root usr/share/X11/locale/isiri-3342/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/isiri-3342/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-1/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-1/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-1/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-1/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-10/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-10/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-10/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-10/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-11/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-11/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-11/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-11/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-13/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-13/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-13/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-13/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-14/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-14/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-14/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-14/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-15/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-15/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-15/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-15/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-2/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-2/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-2/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-2/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-3/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-3/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-3/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-3/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-4/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-4/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-4/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-4/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-5/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-5/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-5/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-5/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-6/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-6/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-6/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-6/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-7/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-7/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-7/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-7/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-8/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-8/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-9/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-9/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-9/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-9/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/iso8859-9e/ --rw-r--r-- root/root usr/share/X11/locale/iso8859-9e/Compose --rw-r--r-- root/root usr/share/X11/locale/iso8859-9e/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/iso8859-9e/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ja.JIS/ --rw-r--r-- root/root usr/share/X11/locale/ja.JIS/Compose --rw-r--r-- root/root usr/share/X11/locale/ja.JIS/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ja.JIS/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ja.SJIS/ --rw-r--r-- root/root usr/share/X11/locale/ja.SJIS/Compose --rw-r--r-- root/root usr/share/X11/locale/ja.SJIS/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ja.SJIS/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ja/ --rw-r--r-- root/root usr/share/X11/locale/ja/Compose --rw-r--r-- root/root usr/share/X11/locale/ja/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ja/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ja_JP.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/ja_JP.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/ja_JP.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ja_JP.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/km_KH.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/km_KH.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/km_KH.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/km_KH.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ko/ --rw-r--r-- root/root usr/share/X11/locale/ko/Compose --rw-r--r-- root/root usr/share/X11/locale/ko/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ko/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ko_KR.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/ko_KR.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/ko_KR.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ko_KR.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/koi8-c/ --rw-r--r-- root/root usr/share/X11/locale/koi8-c/Compose --rw-r--r-- root/root usr/share/X11/locale/koi8-c/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/koi8-c/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/koi8-r/ --rw-r--r-- root/root usr/share/X11/locale/koi8-r/Compose --rw-r--r-- root/root usr/share/X11/locale/koi8-r/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/koi8-r/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/koi8-u/ --rw-r--r-- root/root usr/share/X11/locale/koi8-u/Compose --rw-r--r-- root/root usr/share/X11/locale/koi8-u/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/koi8-u/XLC_LOCALE --rw-r--r-- root/root usr/share/X11/locale/locale.alias --rw-r--r-- root/root usr/share/X11/locale/locale.dir -drwxr-xr-x root/root usr/share/X11/locale/microsoft-cp1251/ --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1251/Compose --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1251/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1251/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/microsoft-cp1255/ --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1255/Compose --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1255/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1255/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/microsoft-cp1256/ --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1256/Compose --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1256/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/microsoft-cp1256/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/mulelao-1/ --rw-r--r-- root/root usr/share/X11/locale/mulelao-1/Compose --rw-r--r-- root/root usr/share/X11/locale/mulelao-1/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/mulelao-1/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/nokhchi-1/ --rw-r--r-- root/root usr/share/X11/locale/nokhchi-1/Compose --rw-r--r-- root/root usr/share/X11/locale/nokhchi-1/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/nokhchi-1/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/pt_BR.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/pt_BR.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/pt_BR.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/pt_BR.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/pt_PT.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/pt_PT.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/pt_PT.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/pt_PT.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/ru_RU.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/ru_RU.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/ru_RU.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/ru_RU.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/sr_RS.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/sr_RS.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/sr_RS.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/sr_RS.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/tatar-cyr/ --rw-r--r-- root/root usr/share/X11/locale/tatar-cyr/Compose --rw-r--r-- root/root usr/share/X11/locale/tatar-cyr/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/tatar-cyr/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/th_TH.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/th_TH.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/th_TH.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/th_TH.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/th_TH/ --rw-r--r-- root/root usr/share/X11/locale/th_TH/Compose --rw-r--r-- root/root usr/share/X11/locale/th_TH/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/th_TH/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/tscii-0/ --rw-r--r-- root/root usr/share/X11/locale/tscii-0/Compose --rw-r--r-- root/root usr/share/X11/locale/tscii-0/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/tscii-0/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/vi_VN.tcvn/ --rw-r--r-- root/root usr/share/X11/locale/vi_VN.tcvn/Compose --rw-r--r-- root/root usr/share/X11/locale/vi_VN.tcvn/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/vi_VN.tcvn/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/vi_VN.viscii/ --rw-r--r-- root/root usr/share/X11/locale/vi_VN.viscii/Compose --rw-r--r-- root/root usr/share/X11/locale/vi_VN.viscii/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/vi_VN.viscii/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_CN.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/zh_CN.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_CN.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_CN.gb18030/ --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gb18030/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gb18030/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gb18030/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_CN.gbk/ --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gbk/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gbk/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_CN.gbk/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_CN/ --rw-r--r-- root/root usr/share/X11/locale/zh_CN/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_CN/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_CN/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_HK.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/zh_HK.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_HK.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_HK.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_HK.big5/ --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_HK.big5hkscs/ --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5hkscs/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_TW.UTF-8/ --rw-r--r-- root/root usr/share/X11/locale/zh_TW.UTF-8/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_TW.UTF-8/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_TW.UTF-8/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_TW.big5/ --rw-r--r-- root/root usr/share/X11/locale/zh_TW.big5/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_TW.big5/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_TW.big5/XLC_LOCALE -drwxr-xr-x root/root usr/share/X11/locale/zh_TW/ --rw-r--r-- root/root usr/share/X11/locale/zh_TW/Compose --rw-r--r-- root/root usr/share/X11/locale/zh_TW/XI18N_OBJS --rw-r--r-- root/root usr/share/X11/locale/zh_TW/XLC_LOCALE -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/AllPlanes.3.gz --rw-r--r-- root/root usr/share/man/man3/BitmapBitOrder.3.gz --rw-r--r-- root/root usr/share/man/man3/BitmapPad.3.gz --rw-r--r-- root/root usr/share/man/man3/BitmapUnit.3.gz --rw-r--r-- root/root usr/share/man/man3/BlackPixel.3.gz --rw-r--r-- root/root usr/share/man/man3/BlackPixelOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/CellsOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/ClientWhitePointOfCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/ConnectionNumber.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultColormapOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultDepth.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultDepthOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultGC.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultGCOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultRootWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultScreenOfDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultVisual.3.gz --rw-r--r-- root/root usr/share/man/man3/DefaultVisualOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayCells.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayHeight.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayHeightMM.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayOfCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayPlanes.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayString.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayWidth.3.gz --rw-r--r-- root/root usr/share/man/man3/DisplayWidthMM.3.gz --rw-r--r-- root/root usr/share/man/man3/DoesBackingStore.3.gz --rw-r--r-- root/root usr/share/man/man3/DoesSaveUnders.3.gz --rw-r--r-- root/root usr/share/man/man3/EventMaskOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/HeightMMOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/HeightOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/ImageByteOrder.3.gz --rw-r--r-- root/root usr/share/man/man3/IsCursorKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsFunctionKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsKeypadKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsMiscFunctionKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsModifierKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsPFKey.3.gz --rw-r--r-- root/root usr/share/man/man3/IsPrivateKeypadKey.3.gz --rw-r--r-- root/root usr/share/man/man3/LastKnownRequestProcessed.3.gz --rw-r--r-- root/root usr/share/man/man3/MaxCmapsOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/MinCmapsOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/NextRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/PlanesOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/ProtocolRevision.3.gz --rw-r--r-- root/root usr/share/man/man3/ProtocolVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/QLength.3.gz --rw-r--r-- root/root usr/share/man/man3/RootWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/RootWindowOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/ScreenCount.3.gz --rw-r--r-- root/root usr/share/man/man3/ScreenNumberOfCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/ScreenOfDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/ScreenWhitePointOfCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/ServerVendor.3.gz --rw-r--r-- root/root usr/share/man/man3/VendorRelease.3.gz --rw-r--r-- root/root usr/share/man/man3/VisualOfCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/WhitePixel.3.gz --rw-r--r-- root/root usr/share/man/man3/WhitePixelOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/WidthMMOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/WidthOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XActivateScreenSaver.3.gz --rw-r--r-- root/root usr/share/man/man3/XAddConnectionWatch.3.gz --rw-r--r-- root/root usr/share/man/man3/XAddHost.3.gz --rw-r--r-- root/root usr/share/man/man3/XAddHosts.3.gz --rw-r--r-- root/root usr/share/man/man3/XAddPixel.3.gz --rw-r--r-- root/root usr/share/man/man3/XAddToSaveSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocClassHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocColorCells.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocColorPlanes.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocIconSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocNamedColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocSizeHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocStandardColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllocWMHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XAllowEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XAnyEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XArc.3.gz --rw-r--r-- root/root usr/share/man/man3/XAutoRepeatOff.3.gz --rw-r--r-- root/root usr/share/man/man3/XAutoRepeatOn.3.gz --rw-r--r-- root/root usr/share/man/man3/XBaseFontNameListOfFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XButtonEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeActivePointerGrab.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeKeyboardControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeKeyboardMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangePointerControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeSaveSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XChar2b.3.gz --rw-r--r-- root/root usr/share/man/man3/XCharStruct.3.gz --rw-r--r-- root/root usr/share/man/man3/XCheckIfEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCheckMaskEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCheckTypedEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCheckTypedWindowEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCheckWindowEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCirculateEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCirculateRequestEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCirculateSubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XCirculateSubwindowsDown.3.gz --rw-r--r-- root/root usr/share/man/man3/XCirculateSubwindowsUp.3.gz --rw-r--r-- root/root usr/share/man/man3/XClassHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XClearArea.3.gz --rw-r--r-- root/root usr/share/man/man3/XClearWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XClientMessageEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XClipBox.3.gz --rw-r--r-- root/root usr/share/man/man3/XCloseDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XCloseIM.3.gz --rw-r--r-- root/root usr/share/man/man3/XCloseOM.3.gz --rw-r--r-- root/root usr/share/man/man3/XColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XColormapEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompose.3.gz --rw-r--r-- root/root usr/share/man/man3/XConfigureEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XConfigureRequestEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XConfigureWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XContextDependentDrawing.3.gz --rw-r--r-- root/root usr/share/man/man3/XContextualDrawing.3.gz --rw-r--r-- root/root usr/share/man/man3/XConvertCase.3.gz --rw-r--r-- root/root usr/share/man/man3/XConvertSelection.3.gz --rw-r--r-- root/root usr/share/man/man3/XCopyArea.3.gz --rw-r--r-- root/root usr/share/man/man3/XCopyColormapAndFree.3.gz --rw-r--r-- root/root usr/share/man/man3/XCopyGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XCopyPlane.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateBitmapFromData.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateFontCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateGlyphCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateIC.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateOC.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreatePixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreatePixmapCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreatePixmapFromBitmapData.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateSimpleWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCreateWindowEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XCrossingEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XDefaultString.3.gz --rw-r--r-- root/root usr/share/man/man3/XDefineCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeleteContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeleteModifiermapEntry.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeleteProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyIC.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyOC.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroySubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XDestroyWindowEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XDirectionalDependentDrawing.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisableAccessControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisplayKeycodes.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisplayMotionBufferSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisplayName.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisplayOfIM.3.gz --rw-r--r-- root/root usr/share/man/man3/XDisplayOfOM.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawArc.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawArcs.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawImageString.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawImageString16.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawLine.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawLines.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawPoint.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawPoints.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawRectangle.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawSegments.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawString.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawString16.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawText.3.gz --rw-r--r-- root/root usr/share/man/man3/XDrawText16.3.gz --rw-r--r-- root/root usr/share/man/man3/XEmptyRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XEnableAccessControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XEqualRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XErrorEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XEventsQueued.3.gz --rw-r--r-- root/root usr/share/man/man3/XExposeEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XExtendedMaxRequestSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XExtentsOfFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XFetchBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XFetchBytes.3.gz --rw-r--r-- root/root usr/share/man/man3/XFetchName.3.gz --rw-r--r-- root/root usr/share/man/man3/XFillArc.3.gz --rw-r--r-- root/root usr/share/man/man3/XFillArcs.3.gz --rw-r--r-- root/root usr/share/man/man3/XFillPolygon.3.gz --rw-r--r-- root/root usr/share/man/man3/XFillRectangle.3.gz --rw-r--r-- root/root usr/share/man/man3/XFillRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XFilterEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XFindContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XFlush.3.gz --rw-r--r-- root/root usr/share/man/man3/XFocusChangeEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XFontProp.3.gz --rw-r--r-- root/root usr/share/man/man3/XFontSetExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XFontStruct.3.gz --rw-r--r-- root/root usr/share/man/man3/XFontsOfFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XForceScreenSaver.3.gz --rw-r--r-- root/root usr/share/man/man3/XFree.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeEventData.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeExtensionList.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeFontInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeFontNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeFontPath.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeModifiermap.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreePixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeStringList.3.gz --rw-r--r-- root/root usr/share/man/man3/XGCValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGContextFromGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XGenericEventCookie.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetAtomName.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetAtomNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetClassHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetCommand.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetErrorDatabaseText.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetErrorText.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetEventData.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetFontPath.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetFontProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetGCValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetICValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetIMValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetIconName.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetIconSizes.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetInputFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetKeyboardControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetKeyboardMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetModifierMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetMotionEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetOCValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetOMValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetPixel.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetPointerControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetPointerMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetRGBColormaps.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetScreenSaver.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetSelectionOwner.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetSubImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetTransientForHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMClientMachine.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMColormapWindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMIconName.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMName.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMNormalHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMProtocols.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWMSizeHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetWindowProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetXCBConnection.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabServer.3.gz --rw-r--r-- root/root usr/share/man/man3/XGraphicsExposeEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XGravityEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XHostAddress.3.gz --rw-r--r-- root/root usr/share/man/man3/XIMOfIC.3.gz --rw-r--r-- root/root usr/share/man/man3/XIconSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XIconifyWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XIfEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XInitImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XInitThreads.3.gz --rw-r--r-- root/root usr/share/man/man3/XInsertModifiermapEntry.3.gz --rw-r--r-- root/root usr/share/man/man3/XInstallColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XInternAtom.3.gz --rw-r--r-- root/root usr/share/man/man3/XInternAtoms.3.gz --rw-r--r-- root/root usr/share/man/man3/XInternalConnectionNumbers.3.gz --rw-r--r-- root/root usr/share/man/man3/XIntersectRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeyEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeyboardControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeycodeToKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeymapEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeysymToKeycode.3.gz --rw-r--r-- root/root usr/share/man/man3/XKeysymToString.3.gz --rw-r--r-- root/root usr/share/man/man3/XKillClient.3.gz --rw-r--r-- root/root usr/share/man/man3/XListDepths.3.gz --rw-r--r-- root/root usr/share/man/man3/XListExtensions.3.gz --rw-r--r-- root/root usr/share/man/man3/XListFonts.3.gz --rw-r--r-- root/root usr/share/man/man3/XListFontsWithInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XListHosts.3.gz --rw-r--r-- root/root usr/share/man/man3/XListInstalledColormaps.3.gz --rw-r--r-- root/root usr/share/man/man3/XListPixmapFormats.3.gz --rw-r--r-- root/root usr/share/man/man3/XListProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XLoadFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XLoadQueryFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XLocaleOfFontSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XLocaleOfIM.3.gz --rw-r--r-- root/root usr/share/man/man3/XLocaleOfOM.3.gz --rw-r--r-- root/root usr/share/man/man3/XLockDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XLookupColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XLookupKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XLookupString.3.gz --rw-r--r-- root/root usr/share/man/man3/XLowerWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XMapEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XMapRaised.3.gz --rw-r--r-- root/root usr/share/man/man3/XMapRequestEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XMapSubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XMapWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XMappingEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XMaskEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XMatchVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XMaxRequestSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XModifierKeymap.3.gz --rw-r--r-- root/root usr/share/man/man3/XMotionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XMoveResizeWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XMoveWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XNewModifiermap.3.gz --rw-r--r-- root/root usr/share/man/man3/XNextEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XNoExposeEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XNoOp.3.gz --rw-r--r-- root/root usr/share/man/man3/XOMOfOC.3.gz --rw-r--r-- root/root usr/share/man/man3/XOffsetRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XOpenDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XOpenIM.3.gz --rw-r--r-- root/root usr/share/man/man3/XOpenOM.3.gz --rw-r--r-- root/root usr/share/man/man3/XParseColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XParseGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XPeekEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XPeekIfEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XPending.3.gz --rw-r--r-- root/root usr/share/man/man3/XPixmapFormatValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XPoint.3.gz --rw-r--r-- root/root usr/share/man/man3/XPointInRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XPolygonRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XProcessInternalConnection.3.gz --rw-r--r-- root/root usr/share/man/man3/XPropertyEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XPutBackEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XPutImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XPutPixel.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryBestCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryBestSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryBestStipple.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryBestTile.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryKeymap.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryTextExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryTextExtents16.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryTree.3.gz --rw-r--r-- root/root usr/share/man/man3/XRaiseWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XReadBitmapFile.3.gz --rw-r--r-- root/root usr/share/man/man3/XReadBitmapFileData.3.gz --rw-r--r-- root/root usr/share/man/man3/XRebindKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XRecolorCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XReconfigureWMWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XRectInRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XRectangle.3.gz --rw-r--r-- root/root usr/share/man/man3/XRefreshKeyboardMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XRegisterIMInstantiateCallback.3.gz --rw-r--r-- root/root usr/share/man/man3/XRemoveConnectionWatch.3.gz --rw-r--r-- root/root usr/share/man/man3/XRemoveFromSaveSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XRemoveHost.3.gz --rw-r--r-- root/root usr/share/man/man3/XRemoveHosts.3.gz --rw-r--r-- root/root usr/share/man/man3/XReparentEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XReparentWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XResetScreenSaver.3.gz --rw-r--r-- root/root usr/share/man/man3/XResizeRequestEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XResizeWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XResourceManagerString.3.gz --rw-r--r-- root/root usr/share/man/man3/XRestackWindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XRotateBuffers.3.gz --rw-r--r-- root/root usr/share/man/man3/XRotateWindowProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XSaveContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenNumberOfScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenResourceString.3.gz --rw-r--r-- root/root usr/share/man/man3/XSegment.3.gz --rw-r--r-- root/root usr/share/man/man3/XSelectInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XSelectionClearEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSelectionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSelectionRequestEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSendEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetAccessControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetAfterFunction.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetArcMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetBackground.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetClassHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetClipMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetClipOrigin.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetClipRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetCloseDownMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetCommand.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDashes.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetErrorHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetEventQueueOwner.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetFillRule.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetFillStyle.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetFontPath.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetForeground.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetFunction.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetGraphicsExposure.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetICFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetICValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetIMValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetIOErrorHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetIconName.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetIconSizes.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetInputFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetLineAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetLocaleModifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetModifierMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetOCValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetOMValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetPlaneMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetPointerMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetRGBColormaps.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetScreenSaver.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetSelectionOwner.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetState.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetStipple.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetSubwindowMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetTSOrigin.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetTile.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetTransientForHint.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMClientMachine.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMColormapWindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMIconName.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMName.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMNormalHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMProtocols.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWMSizeHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowBackground.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowBackgroundPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowBorder.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowBorderPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowBorderWidth.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetWindowColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XShrinkRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XSizeHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XStandardColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreBytes.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreName.3.gz --rw-r--r-- root/root usr/share/man/man3/XStoreNamedColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XStringListToTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XStringToKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XSubImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XSubtractRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XSupportsLocale.3.gz --rw-r--r-- root/root usr/share/man/man3/XSync.3.gz --rw-r--r-- root/root usr/share/man/man3/XSynchronize.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextExtents16.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextItem.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextItem16.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextPropertyToStringList.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextWidth.3.gz --rw-r--r-- root/root usr/share/man/man3/XTextWidth16.3.gz --rw-r--r-- root/root usr/share/man/man3/XTimeCoord.3.gz --rw-r--r-- root/root usr/share/man/man3/XTranslateCoordinates.3.gz --rw-r--r-- root/root usr/share/man/man3/XUndefineCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabServer.3.gz --rw-r--r-- root/root usr/share/man/man3/XUninstallColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnionRectWithRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnionRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XUniqueContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnloadFont.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnlockDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnmapEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnmapSubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnmapWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnregisterIMInstantiateCallback.3.gz --rw-r--r-- root/root usr/share/man/man3/XUnsetICFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XVaCreateNestedList.3.gz --rw-r--r-- root/root usr/share/man/man3/XVisibilityEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XVisualIDFromVisual.3.gz --rw-r--r-- root/root usr/share/man/man3/XVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XWMGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XWMHints.3.gz --rw-r--r-- root/root usr/share/man/man3/XWarpPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XWindowChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XWindowEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XWithdrawWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XWriteBitmapFile.3.gz --rw-r--r-- root/root usr/share/man/man3/XXorRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsAllocColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsAllocNamedColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCCCOfColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELab.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELabQueryMaxC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELabQueryMaxL.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELabQueryMaxLC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELabQueryMinL.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELuv.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELuvQueryMaxC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELuvQueryMaxL.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELuvQueryMaxLC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIELuvQueryMinL.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIEXYZ.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIEuvY.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCIExyY.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsConvertColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsCreateCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsDefaultCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsFreeCCC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsLookupColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsPad.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryBlack.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryBlue.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryGreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryRed.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsQueryWhite.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsRGB.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsRGBi.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsSetCCCOfColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsSetWhiteAdjustProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsSetWhitePoint.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsStoreColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsStoreColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVCQueryMaxC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVCQueryMaxV.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVCQueryMaxVC.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVCQueryMaxVSamples.3.gz --rw-r--r-- root/root usr/share/man/man3/XcmsTekHVCQueryMinV.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbActionCtrls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbActionSetCtrls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddDeviceLedInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomColor.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomDoodad.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomKeyAlias.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomOutline.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomOverlay.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomOverlayKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomOverlayRow.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomRow.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomSection.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddGeomShape.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAddSymInterpret.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocClientMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocCompatMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomDoodads.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomKeyAliases.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomKeys.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomOutlines.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomOverlayKeys.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomOverlayRows.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomOverlays.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomPoints.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomProps.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomRows.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomSectionDoodads.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomSections.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeomShapes.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocIndicatorMaps.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbAllocServerMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbApplyCompatMapToKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbBellEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeEnabledControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbChangeTypesOfKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbComputeRowBounds.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbComputeSectionBounds.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbComputeShapeBounds.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbComputeShapeTop.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbCopyKeyType.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbCopyKeyTypes.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbDeviceBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbDeviceBellEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFindOverlayForKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbForceBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbForceDeviceBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeClientMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeCompatMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeComponentList.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomDoodads.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomKeyAliases.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomKeys.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomOutlines.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomOverlayKeys.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomOverlayRows.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomOverlays.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomPoints.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomRows.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomSections.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeomShapes.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeIndicatorMaps.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbFreeServerMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetAutoRepeatRate.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetAutoResetControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetCompatMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetControlsChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetDetectableAutoRepeat.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetDeviceButtonActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetDeviceInfoChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetDeviceLedInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetIndicatorMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetIndicatorState.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyBehaviors.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyExplicitComponents.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyModifierMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeySyms.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyTypes.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyVirtualModMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetKeyboardByName.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetNamedDeviceIndicator.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetNamedGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetNamedIndicator.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetState.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetUpdatedMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetVirtualMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbGetXlibControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbIgnoreExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbInitCanonicalKeyTypes.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyAction.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyActionEntry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyActionsPtr.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyGroupInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyGroupWidth.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyGroupsWidth.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyHasActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyKeyType.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyKeyTypeIndex.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyNumActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyNumGroups.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyNumSyms.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeySymEntry.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeySymsPtr.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeyTypesForCoreSymbols.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeycodeToKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbKeysymToModifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLatchGroup.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLatchModifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLibraryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbListComponents.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLockGroup.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLockModifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLookupKeyBinding.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbLookupKeySym.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbModActionVMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbNoteControlsChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbNoteDeviceChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbNoteNameChanges.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbOpenDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbOutOfRangeGroupInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbOutOfRangeGroupNumber.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbPtrActionX.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbPtrActionY.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbRefreshKeyboardMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbResizeDeviceButtonActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbResizeKeyActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbResizeKeySyms.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbResizeKeyType.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSAGroup.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSAPtrDfltValue.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSARedirectSetVMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSARedirectSetVModsMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSARedirectVMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSARedirectVModsMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSAScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSASetGroup.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSASetPtrDfltValue.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSASetScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSelectEventDetails.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSelectEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetAutoRepeatRate.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetAutoResetControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetCompatMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetDebuggingFlags.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetDetectableAutoRepeat.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetDeviceButtonActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetIgnoreLockMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetIndicatorMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetMap.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetModActionVMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetNamedDeviceIndicator.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetNamedIndicator.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetNames.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetPtrActionX.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetPtrActionY.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetServerInternalMods.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbSetXlibControls.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbTranslateKeyCode.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbTranslateKeySym.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbUpdateMapFromCore.3.gz --rw-r--r-- root/root usr/share/man/man3/XkbVirtualModsToReal.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbDrawImageString.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbDrawString.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbDrawText.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbLookupString.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbResetIC.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbSetWMProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbTextEscapement.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbTextExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbTextListToTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbTextPerCharExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbTextPropertyToTextList.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmCombineDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmCombineFileDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmDestroyDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmEnumerateDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmGetDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmGetFileDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmGetResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmGetStringDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmLocaleOfDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmMergeDatabases.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmOptionDescRec.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmOptionKind.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmParseCommand.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmPermStringToQuark.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmPutFileDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmPutLineResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmPutResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmPutStringResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQGetResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQGetSearchList.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQGetSearchResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQPutResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQPutStringResource.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmQuarkToString.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmSetDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmStringToBindingQuarkList.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmStringToQuark.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmStringToQuarkList.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmUniqueQuark.3.gz --rw-r--r-- root/root usr/share/man/man3/XrmValue.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8DrawImageString.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8DrawString.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8DrawText.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8LookupString.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8ResetIC.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8SetWMProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8TextEscapement.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8TextExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8TextListToTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8TextPerCharExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/Xutf8TextPropertyToTextList.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcDrawImageString.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcDrawString.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcDrawText.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcFreeStringList.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcLookupString.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcResetIC.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcTextEscapement.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcTextExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcTextListToTextProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcTextPerCharExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XwcTextPropertyToTextList.3.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/Compose.5.gz --rw-r--r-- root/root usr/share/man/man5/XCompose.5.gz diff --git a/repos/xorg/libx11/abuild b/repos/xorg/libx11/abuild deleted file mode 100644 index 6f512312..00000000 --- a/repos/xorg/libx11/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libx11 -version=1.8.10 -release=1 -source="https://www.x.org/pub/individual/lib/libX11-$version.tar.xz" diff --git a/repos/xorg/libx11/depends b/repos/xorg/libx11/depends deleted file mode 100644 index 784b5b10..00000000 --- a/repos/xorg/libx11/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxcb -xtrans diff --git a/repos/xorg/libxau/.checksum b/repos/xorg/libxau/.checksum deleted file mode 100644 index 1a47a4af..00000000 --- a/repos/xorg/libxau/.checksum +++ /dev/null @@ -1 +0,0 @@ -674bc71a888eec20f0e29989e4669df90309d4baacad058107cdf89d23803bcc libXau-1.0.12.tar.xz diff --git a/repos/xorg/libxau/.files b/repos/xorg/libxau/.files deleted file mode 100644 index 76b933d1..00000000 --- a/repos/xorg/libxau/.files +++ /dev/null @@ -1,22 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/Xauth.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXau.so -> libXau.so.6 -lrwxrwxrwx root/root usr/lib/libXau.so.6 -> libXau.so.6.0.0 --rwxr-xr-x root/root usr/lib/libXau.so.6.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xau.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xau.3.gz --rw-r--r-- root/root usr/share/man/man3/XauDisposeAuth.3.gz --rw-r--r-- root/root usr/share/man/man3/XauFileName.3.gz --rw-r--r-- root/root usr/share/man/man3/XauGetAuthByAddr.3.gz --rw-r--r-- root/root usr/share/man/man3/XauGetBestAuthByAddr.3.gz --rw-r--r-- root/root usr/share/man/man3/XauLockAuth.3.gz --rw-r--r-- root/root usr/share/man/man3/XauReadAuth.3.gz --rw-r--r-- root/root usr/share/man/man3/XauUnlockAuth.3.gz --rw-r--r-- root/root usr/share/man/man3/XauWriteAuth.3.gz diff --git a/repos/xorg/libxau/abuild b/repos/xorg/libxau/abuild deleted file mode 100644 index 499af7fd..00000000 --- a/repos/xorg/libxau/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxau -version=1.0.12 -release=1 -source="https://www.x.org/pub/individual/lib/libXau-$version.tar.xz" diff --git a/repos/xorg/libxau/depends b/repos/xorg/libxau/depends deleted file mode 100644 index be3636df..00000000 --- a/repos/xorg/libxau/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -util-macros diff --git a/repos/xorg/libxaw/.checksum b/repos/xorg/libxaw/.checksum deleted file mode 100644 index 4deeb216..00000000 --- a/repos/xorg/libxaw/.checksum +++ /dev/null @@ -1 +0,0 @@ -f2a3b4955508dc7a576ad473119562b724f7936d312c85c79cb32f614c60f0c5 libXaw-1.0.16.tar.xz diff --git a/repos/xorg/libxaw/.files b/repos/xorg/libxaw/.files deleted file mode 100644 index bb660b97..00000000 --- a/repos/xorg/libxaw/.files +++ /dev/null @@ -1,92 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/Xaw/ --rw-r--r-- root/root usr/include/X11/Xaw/AllWidgets.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiSink.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiSinkP.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiSrc.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiSrcP.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiText.h --rw-r--r-- root/root usr/include/X11/Xaw/AsciiTextP.h --rw-r--r-- root/root usr/include/X11/Xaw/Box.h --rw-r--r-- root/root usr/include/X11/Xaw/BoxP.h --rw-r--r-- root/root usr/include/X11/Xaw/Cardinals.h --rw-r--r-- root/root usr/include/X11/Xaw/Command.h --rw-r--r-- root/root usr/include/X11/Xaw/CommandP.h --rw-r--r-- root/root usr/include/X11/Xaw/Dialog.h --rw-r--r-- root/root usr/include/X11/Xaw/DialogP.h --rw-r--r-- root/root usr/include/X11/Xaw/Form.h --rw-r--r-- root/root usr/include/X11/Xaw/FormP.h --rw-r--r-- root/root usr/include/X11/Xaw/Grip.h --rw-r--r-- root/root usr/include/X11/Xaw/GripP.h --rw-r--r-- root/root usr/include/X11/Xaw/Label.h --rw-r--r-- root/root usr/include/X11/Xaw/LabelP.h --rw-r--r-- root/root usr/include/X11/Xaw/List.h --rw-r--r-- root/root usr/include/X11/Xaw/ListP.h --rw-r--r-- root/root usr/include/X11/Xaw/MenuButtoP.h --rw-r--r-- root/root usr/include/X11/Xaw/MenuButton.h --rw-r--r-- root/root usr/include/X11/Xaw/MultiSink.h --rw-r--r-- root/root usr/include/X11/Xaw/MultiSinkP.h --rw-r--r-- root/root usr/include/X11/Xaw/MultiSrc.h --rw-r--r-- root/root usr/include/X11/Xaw/MultiSrcP.h --rw-r--r-- root/root usr/include/X11/Xaw/Paned.h --rw-r--r-- root/root usr/include/X11/Xaw/PanedP.h --rw-r--r-- root/root usr/include/X11/Xaw/Panner.h --rw-r--r-- root/root usr/include/X11/Xaw/PannerP.h --rw-r--r-- root/root usr/include/X11/Xaw/Porthole.h --rw-r--r-- root/root usr/include/X11/Xaw/PortholeP.h --rw-r--r-- root/root usr/include/X11/Xaw/Repeater.h --rw-r--r-- root/root usr/include/X11/Xaw/RepeaterP.h --rw-r--r-- root/root usr/include/X11/Xaw/Reports.h --rw-r--r-- root/root usr/include/X11/Xaw/Scrollbar.h --rw-r--r-- root/root usr/include/X11/Xaw/ScrollbarP.h --rw-r--r-- root/root usr/include/X11/Xaw/Simple.h --rw-r--r-- root/root usr/include/X11/Xaw/SimpleMenP.h --rw-r--r-- root/root usr/include/X11/Xaw/SimpleMenu.h --rw-r--r-- root/root usr/include/X11/Xaw/SimpleP.h --rw-r--r-- root/root usr/include/X11/Xaw/Sme.h --rw-r--r-- root/root usr/include/X11/Xaw/SmeBSB.h --rw-r--r-- root/root usr/include/X11/Xaw/SmeBSBP.h --rw-r--r-- root/root usr/include/X11/Xaw/SmeLine.h --rw-r--r-- root/root usr/include/X11/Xaw/SmeLineP.h --rw-r--r-- root/root usr/include/X11/Xaw/SmeP.h --rw-r--r-- root/root usr/include/X11/Xaw/StripCharP.h --rw-r--r-- root/root usr/include/X11/Xaw/StripChart.h --rw-r--r-- root/root usr/include/X11/Xaw/Template.c --rw-r--r-- root/root usr/include/X11/Xaw/Template.h --rw-r--r-- root/root usr/include/X11/Xaw/TemplateP.h --rw-r--r-- root/root usr/include/X11/Xaw/Text.h --rw-r--r-- root/root usr/include/X11/Xaw/TextP.h --rw-r--r-- root/root usr/include/X11/Xaw/TextSink.h --rw-r--r-- root/root usr/include/X11/Xaw/TextSinkP.h --rw-r--r-- root/root usr/include/X11/Xaw/TextSrc.h --rw-r--r-- root/root usr/include/X11/Xaw/TextSrcP.h --rw-r--r-- root/root usr/include/X11/Xaw/Tip.h --rw-r--r-- root/root usr/include/X11/Xaw/TipP.h --rw-r--r-- root/root usr/include/X11/Xaw/Toggle.h --rw-r--r-- root/root usr/include/X11/Xaw/ToggleP.h --rw-r--r-- root/root usr/include/X11/Xaw/Tree.h --rw-r--r-- root/root usr/include/X11/Xaw/TreeP.h --rw-r--r-- root/root usr/include/X11/Xaw/VendorEP.h --rw-r--r-- root/root usr/include/X11/Xaw/Viewport.h --rw-r--r-- root/root usr/include/X11/Xaw/ViewportP.h --rw-r--r-- root/root usr/include/X11/Xaw/XawImP.h --rw-r--r-- root/root usr/include/X11/Xaw/XawInit.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXaw.so -> libXaw7.so -lrwxrwxrwx root/root usr/lib/libXaw.so.6 -> libXaw6.so.6 -lrwxrwxrwx root/root usr/lib/libXaw.so.7 -> libXaw7.so.7 -lrwxrwxrwx root/root usr/lib/libXaw6.so -> libXaw6.so.6.0.1 -lrwxrwxrwx root/root usr/lib/libXaw6.so.6 -> libXaw6.so.6.0.1 --rwxr-xr-x root/root usr/lib/libXaw6.so.6.0.1 -lrwxrwxrwx root/root usr/lib/libXaw7.so -> libXaw7.so.7.0.0 -lrwxrwxrwx root/root usr/lib/libXaw7.so.7 -> libXaw7.so.7.0.0 --rwxr-xr-x root/root usr/lib/libXaw7.so.7.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xaw6.pc --rw-r--r-- root/root usr/lib/pkgconfig/xaw7.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xaw.3.gz diff --git a/repos/xorg/libxaw/abuild b/repos/xorg/libxaw/abuild deleted file mode 100644 index ac7278f0..00000000 --- a/repos/xorg/libxaw/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxaw -version=1.0.16 -release=1 -source="https://www.x.org/pub/individual/lib/libXaw-$version.tar.xz" diff --git a/repos/xorg/libxaw/depends b/repos/xorg/libxaw/depends deleted file mode 100644 index 9bb89b33..00000000 --- a/repos/xorg/libxaw/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxmu -libxpm diff --git a/repos/xorg/libxcb/.checksum b/repos/xorg/libxcb/.checksum deleted file mode 100644 index cb9453c6..00000000 --- a/repos/xorg/libxcb/.checksum +++ /dev/null @@ -1 +0,0 @@ -3dce3b8adc257177dfec9b6b6cf55eeac13921520dd6c372fd8f9d867600337b libxcb-1.17.0.tar.xz diff --git a/repos/xorg/libxcb/.files b/repos/xorg/libxcb/.files deleted file mode 100644 index f08a6cb8..00000000 --- a/repos/xorg/libxcb/.files +++ /dev/null @@ -1,2452 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/bigreq.h --rw-r--r-- root/root usr/include/xcb/composite.h --rw-r--r-- root/root usr/include/xcb/damage.h --rw-r--r-- root/root usr/include/xcb/dbe.h --rw-r--r-- root/root usr/include/xcb/dpms.h --rw-r--r-- root/root usr/include/xcb/dri2.h --rw-r--r-- root/root usr/include/xcb/dri3.h --rw-r--r-- root/root usr/include/xcb/ge.h --rw-r--r-- root/root usr/include/xcb/glx.h --rw-r--r-- root/root usr/include/xcb/present.h --rw-r--r-- root/root usr/include/xcb/randr.h --rw-r--r-- root/root usr/include/xcb/record.h --rw-r--r-- root/root usr/include/xcb/render.h --rw-r--r-- root/root usr/include/xcb/res.h --rw-r--r-- root/root usr/include/xcb/screensaver.h --rw-r--r-- root/root usr/include/xcb/shape.h --rw-r--r-- root/root usr/include/xcb/shm.h --rw-r--r-- root/root usr/include/xcb/sync.h --rw-r--r-- root/root usr/include/xcb/xc_misc.h --rw-r--r-- root/root usr/include/xcb/xcb.h --rw-r--r-- root/root usr/include/xcb/xcbext.h --rw-r--r-- root/root usr/include/xcb/xevie.h --rw-r--r-- root/root usr/include/xcb/xf86dri.h --rw-r--r-- root/root usr/include/xcb/xfixes.h --rw-r--r-- root/root usr/include/xcb/xinerama.h --rw-r--r-- root/root usr/include/xcb/xinput.h --rw-r--r-- root/root usr/include/xcb/xkb.h --rw-r--r-- root/root usr/include/xcb/xprint.h --rw-r--r-- root/root usr/include/xcb/xproto.h --rw-r--r-- root/root usr/include/xcb/xselinux.h --rw-r--r-- root/root usr/include/xcb/xtest.h --rw-r--r-- root/root usr/include/xcb/xv.h --rw-r--r-- root/root usr/include/xcb/xvmc.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-composite.so -> libxcb-composite.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-composite.so.0 -> libxcb-composite.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-composite.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-damage.so -> libxcb-damage.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-damage.so.0 -> libxcb-damage.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-damage.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dbe.so -> libxcb-dbe.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dbe.so.0 -> libxcb-dbe.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-dbe.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dpms.so -> libxcb-dpms.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dpms.so.0 -> libxcb-dpms.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-dpms.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dri2.so -> libxcb-dri2.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dri2.so.0 -> libxcb-dri2.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-dri2.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-dri3.so -> libxcb-dri3.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-dri3.so.0 -> libxcb-dri3.so.0.1.0 --rwxr-xr-x root/root usr/lib/libxcb-dri3.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-glx.so -> libxcb-glx.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-glx.so.0 -> libxcb-glx.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-glx.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-present.so -> libxcb-present.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-present.so.0 -> libxcb-present.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-present.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-randr.so -> libxcb-randr.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-randr.so.0 -> libxcb-randr.so.0.1.0 --rwxr-xr-x root/root usr/lib/libxcb-randr.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-record.so -> libxcb-record.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-record.so.0 -> libxcb-record.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-record.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-render.so -> libxcb-render.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-render.so.0 -> libxcb-render.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-render.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-res.so -> libxcb-res.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-res.so.0 -> libxcb-res.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-res.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-screensaver.so -> libxcb-screensaver.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-screensaver.so.0 -> libxcb-screensaver.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-screensaver.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-shape.so -> libxcb-shape.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-shape.so.0 -> libxcb-shape.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-shape.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-shm.so -> libxcb-shm.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-shm.so.0 -> libxcb-shm.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-shm.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-sync.so -> libxcb-sync.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-sync.so.1 -> libxcb-sync.so.1.0.0 --rwxr-xr-x root/root usr/lib/libxcb-sync.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xf86dri.so -> libxcb-xf86dri.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xf86dri.so.0 -> libxcb-xf86dri.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xf86dri.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xfixes.so -> libxcb-xfixes.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xfixes.so.0 -> libxcb-xfixes.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xfixes.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xinerama.so -> libxcb-xinerama.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xinerama.so.0 -> libxcb-xinerama.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xinerama.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xinput.so -> libxcb-xinput.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-xinput.so.0 -> libxcb-xinput.so.0.1.0 --rwxr-xr-x root/root usr/lib/libxcb-xinput.so.0.1.0 -lrwxrwxrwx root/root usr/lib/libxcb-xkb.so -> libxcb-xkb.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xkb.so.1 -> libxcb-xkb.so.1.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xkb.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xtest.so -> libxcb-xtest.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xtest.so.0 -> libxcb-xtest.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xtest.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xv.so -> libxcb-xv.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xv.so.0 -> libxcb-xv.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xv.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xvmc.so -> libxcb-xvmc.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xvmc.so.0 -> libxcb-xvmc.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xvmc.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb.so -> libxcb.so.1.1.0 -lrwxrwxrwx root/root usr/lib/libxcb.so.1 -> libxcb.so.1.1.0 --rwxr-xr-x root/root usr/lib/libxcb.so.1.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-composite.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-damage.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-dbe.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-dpms.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-dri2.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-dri3.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-glx.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-present.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-randr.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-record.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-render.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-res.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-screensaver.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-shape.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-shm.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-sync.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xf86dri.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xfixes.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xinerama.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xinput.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xkb.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xtest.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xv.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xvmc.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/xcb-examples.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb-requests.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_masks.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_masks_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_masks_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_pixels.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_pixels_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_pixels_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_cells_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes_pixels.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes_pixels_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes_pixels_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_planes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_color_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_named_color.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_named_color_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_alloc_named_color_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_allow_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_allow_events_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_bell.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_bell_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_big_requests_enable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_big_requests_enable_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_big_requests_enable_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_button_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_active_pointer_grab.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_active_pointer_grab_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_gc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_gc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_hosts.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_hosts_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_keyboard_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_keyboard_control_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_keyboard_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_keyboard_mapping_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_pointer_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_pointer_control_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_save_set.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_save_set_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_window_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_change_window_attributes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_circulate_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_circulate_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_circulate_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_clear_area.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_clear_area_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_client_message_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_close_font.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_close_font_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_colormap_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_create_region_from_border_clip.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_create_region_from_border_clip_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_get_overlay_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_get_overlay_window_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_get_overlay_window_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_name_window_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_name_window_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_redirect_subwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_redirect_subwindows_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_redirect_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_redirect_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_release_overlay_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_release_overlay_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_unredirect_subwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_unredirect_subwindows_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_unredirect_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_composite_unredirect_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_configure_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_configure_request_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_configure_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_configure_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_convert_selection.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_convert_selection_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_area.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_area_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_colormap_and_free.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_colormap_and_free_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_gc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_gc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_plane.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_copy_plane_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_colormap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_colormap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_gc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_gc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_glyph_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_glyph_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_create_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_add.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_add_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_create.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_create_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_destroy_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_subtract.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_damage_subtract_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_allocate_back_buffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_allocate_back_buffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_begin_idiom.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_begin_idiom_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_deallocate_back_buffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_deallocate_back_buffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_end_idiom.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_end_idiom_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_back_buffer_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_back_buffer_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_back_buffer_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_visual_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_visual_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_visual_info_supported_visuals_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_visual_info_supported_visuals_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_get_visual_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_swap_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dbe_swap_buffers_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_delete_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_delete_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_destroy_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_destroy_subwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_destroy_subwindows_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_destroy_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_destroy_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_capable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_capable_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_capable_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_disable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_disable_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_enable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_enable_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_force_level.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_force_level_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_timeouts.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_timeouts_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_timeouts_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_get_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_info_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_set_timeouts.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dpms_set_timeouts_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_authenticate.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_authenticate_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_authenticate_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_buffer_swap_complete_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_alignment_pad.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_alignment_pad_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_alignment_pad_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_device_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_device_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_device_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_driver_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_driver_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_driver_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_connect_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_copy_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_copy_region_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_copy_region_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_create_drawable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_create_drawable_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_destroy_drawable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_destroy_drawable_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_buffers_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_buffers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format_buffers_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format_buffers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_buffers_with_format_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_msc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_msc_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_msc_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_param.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_param_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_get_param_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_invalidate_buffers_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_swap_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_swap_buffers_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_swap_buffers_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_swap_interval.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_swap_interval_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_msc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_msc_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_msc_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_sbc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_sbc_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri2_wait_sbc_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffer_from_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffer_from_pixmap_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffer_from_pixmap_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_buffers_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_buffers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_offsets.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_offsets_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_offsets_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_strides.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_strides_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_strides_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_buffers_from_pixmap_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_fd_from_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_fd_from_fence_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_fd_from_fence_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_fence_from_fd.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_fence_from_fd_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_free_syncobj.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_free_syncobj_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_window_modifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_window_modifiers_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_get_supported_modifiers_window_modifiers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_import_syncobj.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_import_syncobj_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_open.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_open_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_open_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_pixmap_from_buffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_pixmap_from_buffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_pixmap_from_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_pixmap_from_buffers_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_set_drm_device_in_use.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_dri3_set_drm_device_in_use_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_enter_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_expose_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_fill_poly.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_fill_poly_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_focus_in_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_force_screen_saver.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_force_screen_saver_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_colormap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_colormap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_colors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_colors_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_gc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_gc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_free_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ge_generic_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_genericevent_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_genericevent_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_genericevent_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_atom_name_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_font_path.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_font_path_path_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_font_path_path_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_font_path_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_font_path_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_geometry.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_geometry_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_geometry_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_image_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_input_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_input_focus_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_input_focus_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_control_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_control_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping_keysyms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping_keysyms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping_keysyms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_keyboard_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping_keycodes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping_keycodes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping_keycodes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_modifier_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events_events_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events_events_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_motion_events_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_control_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_control_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping_map_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping_map_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_pointer_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property_value.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property_value_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_property_value_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_screen_saver.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_screen_saver_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_screen_saver_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_selection_owner.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_selection_owner_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_selection_owner_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_window_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_window_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_get_window_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_are_textures_resident_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_buffer_swap_complete_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_change_drawable_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_change_drawable_attributes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_client_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_client_info_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_copy_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_copy_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_context_attribs_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_context_attribs_arb_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_glx_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_glx_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_new_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_new_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_pbuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_pbuffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_create_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_lists.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_lists_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_queries_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_queries_arb_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_textures.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_textures_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_delete_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_glx_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_glx_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_pbuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_pbuffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_destroy_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_end_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_end_list_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_feedback_buffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_feedback_buffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_finish.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_finish_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_finish_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_flush.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_flush_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_lists.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_lists_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_lists_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_queries_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_gen_textures_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_booleanv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_clip_plane_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_color_table_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_compressed_tex_image_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_filter_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_convolution_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_doublev_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes_attribs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes_attribs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes_attribs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_drawable_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_error.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_error_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_error_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs_property_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs_property_list_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs_property_list_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_fb_configs_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_floatv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_histogram_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_integerv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_lightiv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapdv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_mapiv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_materialiv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_minmax_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapuiv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_pixel_mapusv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_polygon_stipple_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectiv_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_query_objectuiv_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_queryiv_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter_rows_and_cols.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter_rows_and_cols_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter_rows_and_cols_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_separable_filter_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string_string_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string_string_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_string_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_envfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_enviv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_gendv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_genfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_geniv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_image_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_level_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameterfv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_tex_parameteriv_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs_property_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs_property_list_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs_property_list_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_get_visual_configs_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_direct.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_direct_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_direct_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_enabled.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_enabled_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_enabled_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_list_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_list_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_query_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_query_arb_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_query_arb_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_texture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_texture_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_is_texture_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_context_current.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_context_current_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_context_current_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_current.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_current_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_make_current_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_new_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_new_list_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_pbuffer_clobber_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_pixel_storef.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_pixel_storef_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_pixel_storei.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_pixel_storei_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context_attribs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context_attribs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context_attribs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_extensions_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_extensions_string_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_extensions_string_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string_string_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string_string_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_server_string_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_read_pixels_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_large.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_large_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_render_mode_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_select_buffer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_select_buffer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_set_client_info_2arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_set_client_info_2arb_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_set_client_info_arb.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_set_client_info_arb_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_swap_buffers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_swap_buffers_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_use_x_font.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_use_x_font_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply_data_2.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply_data_2_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply_data_2_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_vendor_private_with_reply_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_wait_gl.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_wait_gl_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_wait_x.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_glx_wait_x_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_button.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_button_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_key.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_key_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_keyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_keyboard_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_keyboard_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_pointer_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_pointer_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_server.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_grab_server_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_graphics_exposure_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_gravity_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_image_text_16.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_image_text_16_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_image_text_8.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_image_text_8_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_allow_device_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_allow_device_events_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_barrier_hit_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_button_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_control_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_control_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_dont_propagate_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_dont_propagate_list_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_key_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_key_mapping_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_device_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_feedback_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_feedback_control_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_keyboard_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_keyboard_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_keyboard_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_pointer_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_pointer_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_change_pointer_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_close_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_close_device_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_delete_device_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_delete_device_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_bell.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_bell_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_button_state_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_changed_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_focus_in_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_key_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_key_state_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_mapping_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_presence_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_property_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_state_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_device_valuator_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_enter_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_gesture_pinch_begin_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_gesture_swipe_begin_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_map_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_map_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_pad_1.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_button_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_control_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_control_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_control_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list_classes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list_classes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list_classes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_dont_propagate_list_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_focus_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_focus_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping_keysyms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping_keysyms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping_keysyms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_key_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping_keymaps.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping_keymaps_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping_keymaps_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_modifier_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_motion_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_motion_events_events_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_motion_events_events_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_motion_events_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_motion_events_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_property_items.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_device_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_extension_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_extension_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_extension_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_feedback_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_feedback_control_feedbacks_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_feedback_control_feedbacks_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_feedback_control_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_feedback_control_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_all_classes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_all_classes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_all_classes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_this_classes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_this_classes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_this_classes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_get_selected_extension_events_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_button.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_button_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_key.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_key_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_grab_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_hierarchy_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_key_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties_atoms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties_atoms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties_atoms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_device_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_devices.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_devices_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_devices_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_infos_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_infos_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_names_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_names_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_pad_1.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_list_input_devices_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_class_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_class_info_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_class_info_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_pad_1.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_open_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_property_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_query_device_state.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_query_device_state_classes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_query_device_state_classes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_query_device_state_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_query_device_state_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_raw_button_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_raw_key_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_raw_touch_begin_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_select_extension_event.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_select_extension_event_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_send_extension_event.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_send_extension_event_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_button_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_button_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_button_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_focus_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_mode_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_mode_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_modifier_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_modifier_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_modifier_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_valuators.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_valuators_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_set_device_valuators_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_touch_begin_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_touch_ownership_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device_button.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device_button_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device_key.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_ungrab_device_key_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_allow_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_allow_events_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_barrier_release_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_barrier_release_pointer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_hierarchy.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_hierarchy_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_change_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_delete_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_delete_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_client_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_client_pointer_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_client_pointer_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_focus_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_focus_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_property_items.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_selected_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_selected_events_masks_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_selected_events_masks_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_selected_events_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_get_selected_events_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_grab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_grab_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_grab_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties_properties_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties_properties_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_list_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device_modifiers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device_modifiers_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device_modifiers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_grab_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_ungrab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_passive_ungrab_device_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_device_infos_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_device_infos_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_device_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_device_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer_buttons.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer_buttons_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer_buttons_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_pointer_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_select_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_select_events_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_set_client_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_set_client_pointer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_set_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_set_focus_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_ungrab_device.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_ungrab_device_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_warp_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_input_xi_warp_pointer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_install_colormap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_install_colormap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_intern_atom.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_intern_atom_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_intern_atom_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_key_press_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_keymap_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_kill_client.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_kill_client_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_extensions.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_extensions_names_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_extensions_names_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_extensions_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_extensions_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_names_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_names_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_properties_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_properties_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_fonts_with_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_hosts.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_hosts_hosts_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_hosts_hosts_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_hosts_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_hosts_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps_cmaps.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps_cmaps_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps_cmaps_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_installed_colormaps_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties_atoms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties_atoms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties_atoms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_list_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_lookup_color.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_lookup_color_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_lookup_color_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_request_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_subwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_subwindows_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_map_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_mapping_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_motion_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_no_exposure_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_no_operation.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_no_operation_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_open_font.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_open_font_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_arc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_arc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_fill_arc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_fill_arc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_fill_rectangle.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_fill_rectangle_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_line.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_line_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_point.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_point_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_rectangle.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_rectangle_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_segment.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_segment_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_text_16.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_text_16_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_text_8.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_poly_text_8_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_complete_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_configure_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_generic_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_idle_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_notify_msc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_notify_msc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_pixmap_synced.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_pixmap_synced_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_capabilities.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_capabilities_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_capabilities_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_redirect_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_present_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_property_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_put_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_put_image_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_best_size.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_best_size_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_best_size_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors_colors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors_colors_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors_colors_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_colors_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_extension.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_extension_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_extension_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_char_infos.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_char_infos_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_char_infos_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_properties_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_properties_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_font_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_keymap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_keymap_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_keymap_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_pointer_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_pointer_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_text_extents.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_text_extents_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_text_extents_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree_children.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree_children_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree_children_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_query_tree_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_add_output_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_add_output_mode_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_change_output_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_change_output_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_change_provider_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_change_provider_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_configure_output_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_configure_output_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_configure_provider_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_configure_provider_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_lease.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_lease_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_lease_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_mode_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_create_mode_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_monitor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_monitor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_output_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_output_mode_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_output_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_output_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_provider_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_delete_provider_property_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_destroy_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_destroy_mode_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_free_lease.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_free_lease_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_blue.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_blue_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_blue_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_green.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_green_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_green_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_red.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_red_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_red_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_size.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_size_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_size_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_gamma_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_outputs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_outputs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_outputs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_possible.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_possible_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_possible_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_filter_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_filter_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_filter_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_params.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_params_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_current_params_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pad_3.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pad_4.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_params.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_params_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_pending_params_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_crtc_transform_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_monitors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_monitors_monitors_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_monitors_monitors_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_monitors_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_monitors_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_clones.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_clones_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_clones_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_crtcs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_crtcs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_crtcs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_modes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_modes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_modes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_primary.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_primary_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_primary_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_output_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_panning.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_panning_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_panning_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_capability.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_capability_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_capability_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_providers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_providers_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_associated_providers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_crtcs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_crtcs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_crtcs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_outputs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_outputs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_outputs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_provider_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers_providers.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers_providers_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers_providers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_providers_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_rates_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_rates_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_sizes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_sizes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_sizes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_crtcs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_crtcs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_crtcs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_crtcs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_crtcs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_crtcs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_modes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_modes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_modes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_names.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_names_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_names_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_outputs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_outputs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_outputs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_current_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_modes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_modes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_modes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_names.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_names_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_names_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_outputs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_outputs_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_outputs_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_resources_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_size_range.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_size_range_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_get_screen_size_range_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties_atoms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties_atoms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties_atoms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_output_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties_atoms.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties_atoms_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties_atoms_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_list_provider_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property_valid_values.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property_valid_values_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_output_property_valid_values_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property_valid_values.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property_valid_values_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_provider_property_valid_values_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_screen_change_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_config.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_config_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_config_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_gamma.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_gamma_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_transform.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_crtc_transform_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_monitor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_monitor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_output_primary.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_output_primary_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_panning.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_panning_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_panning_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_provider_offload_sink.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_provider_offload_sink_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_provider_output_source.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_provider_output_source_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_screen_config.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_screen_config_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_screen_config_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_screen_size.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_randr_set_screen_size_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_recolor_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_recolor_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_disable_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_disable_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_enable_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_free_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_free_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_get_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_get_context_intercepted_clients_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_get_context_intercepted_clients_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_get_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_get_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_register_clients.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_register_clients_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_unregister_clients.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_record_unregister_clients_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_add_glyphs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_add_glyphs_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_add_traps.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_add_traps_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_change_picture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_change_picture_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_16.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_16_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_32.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_32_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_8.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_composite_glyphs_8_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_anim_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_anim_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_conical_gradient.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_conical_gradient_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_glyph_set.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_glyph_set_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_linear_gradient.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_linear_gradient_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_picture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_picture_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_radial_gradient.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_radial_gradient_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_solid_fill.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_create_solid_fill_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_fill_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_fill_rectangles_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_glyph_set.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_glyph_set_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_glyphs.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_glyphs_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_picture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_free_picture_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_aliases.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_aliases_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_aliases_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_filters_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_filters_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_filters_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_formats.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_formats_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_formats_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_screens_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_screens_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_subpixels.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_subpixels_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_subpixels_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_formats_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values_values.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values_values_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_pict_index_values_values_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_reference_glyph_set.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_reference_glyph_set_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_clip_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_clip_rectangles_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_filter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_filter_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_transform.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_set_picture_transform_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_trapezoids.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_trapezoids_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_tri_fan.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_tri_fan_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_tri_strip.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_tri_strip_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_triangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_render_triangles_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_reparent_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_reparent_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_reparent_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_ids.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_ids_ids_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_ids_ids_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_ids_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_ids_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_pixmap_bytes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_pixmap_bytes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_pixmap_bytes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources_types.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources_types_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources_types_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_client_resources_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients_clients.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients_clients_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients_clients_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_clients_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_resource_bytes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_resource_bytes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_resource_bytes_sizes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_resource_bytes_sizes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_resource_bytes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_res_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_resize_request_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_rotate_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_rotate_properties_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_set_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_set_attributes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_suspend.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_suspend_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_unset_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_screensaver_unset_attributes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selection_clear_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selection_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selection_request_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_client_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_device_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_data_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_property_use_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_data_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_selection_use_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context_context_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context_context_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_get_window_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_properties.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_properties_properties_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_properties_properties_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_properties_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_properties_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_selections.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_selections_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_selections_selections_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_selections_selections_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_list_selections_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_device_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_device_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_device_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_device_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_property_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_property_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_property_use_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_property_use_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_selection_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_selection_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_selection_use_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_selection_use_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_window_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_selinux_set_window_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_send_event.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_send_event_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_access_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_access_control_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_clip_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_clip_rectangles_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_close_down_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_close_down_mode_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_dashes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_dashes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_font_path.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_font_path_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_input_focus.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_input_focus_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_modifier_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_modifier_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_modifier_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_pointer_mapping.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_pointer_mapping_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_pointer_mapping_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_screen_saver.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_screen_saver_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_selection_owner.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_set_selection_owner_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_combine.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_combine_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles_rectangles_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles_rectangles_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_get_rectangles_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_input_selected.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_input_selected_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_input_selected_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_mask.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_mask_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_offset.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_offset_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_extents.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_extents_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_extents_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_rectangles_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shape_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_attach.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_attach_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_attach_fd.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_attach_fd_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_completion_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_create_pixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_create_pixmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_create_segment.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_create_segment_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_create_segment_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_detach.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_detach_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_get_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_get_image_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_get_image_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_put_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_put_image_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_shm_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_store_colors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_store_colors_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_store_named_color.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_store_named_color_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_alarm_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_await.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_await_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_await_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_await_fence_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_change_alarm.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_change_alarm_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_change_counter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_change_counter_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_counter_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_alarm.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_alarm_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_counter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_counter_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_create_fence_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_alarm.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_alarm_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_counter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_counter_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_destroy_fence_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_get_priority.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_get_priority_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_get_priority_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_initialize.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_initialize_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_initialize_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_list_system_counters.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_list_system_counters_counters_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_list_system_counters_counters_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_list_system_counters_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_list_system_counters_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_alarm.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_alarm_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_alarm_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_counter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_counter_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_counter_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_fence_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_query_fence_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_reset_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_reset_fence_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_set_counter.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_set_counter_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_set_priority.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_set_priority_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_trigger_fence.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_sync_trigger_fence_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_compare_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_compare_cursor_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_compare_cursor_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_fake_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_fake_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_get_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_get_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_get_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_grab_control.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_test_grab_control_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_translate_coordinates.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_translate_coordinates_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_translate_coordinates_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_button.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_button_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_key.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_key_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_keyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_keyboard_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_pointer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_server.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_ungrab_server_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_uninstall_colormap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_uninstall_colormap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_unmap_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_unmap_subwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_unmap_subwindows_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_unmap_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_unmap_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_visibility_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_warp_pointer.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_warp_pointer_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_attribut_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_create_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_destroy_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_destroy_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_doc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_doc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_job.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_job_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_page.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_end_page_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes_attributes_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes_attributes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_document_data_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_image_resolution.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_image_resolution_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_image_resolution_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes_value.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes_value_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_one_attributes_value_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_page_dimensions.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_page_dimensions_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_page_dimensions_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_printer_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_printer_list_printers_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_printer_list_printers_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_printer_list_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_printer_list_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_screen_of_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_screen_of_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_get_screen_of_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_input_selected.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_input_selected_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_input_selected_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_put_document_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_put_document_data_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens_roots.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens_roots_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens_roots_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_screens_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_rehash_printer_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_rehash_printer_list_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_select_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_attributes_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_image_resolution.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_image_resolution_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_set_image_resolution_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_doc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_doc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_job.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_job_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_page.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_x_print_print_start_page_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list_ids.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list_ids_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list_ids_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_list_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_range.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_range_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xc_misc_get_xid_range_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_end_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_end_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_select_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_select_input_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_select_input_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_send.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_send_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_send_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_start.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_start_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xevie_start_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_auth_connection.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_auth_connection_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_auth_connection_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_close_connection.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_close_connection_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_drawable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_drawable_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_create_drawable_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_destroy_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_destroy_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_destroy_drawable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_destroy_drawable_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_client_driver_name_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info_device_private.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info_device_private_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info_device_private_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_device_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_get_drawable_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection_bus_id.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection_bus_id_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection_bus_id_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_open_connection_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_direct_rendering_capable.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_direct_rendering_capable_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_direct_rendering_capable_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xf86dri_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_cursor_by_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_cursor_by_name_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_save_set.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_change_save_set_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_copy_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_copy_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_pointer_barrier.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_pointer_barrier_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_bitmap.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_bitmap_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_gc.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_gc_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_picture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_picture_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_window.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_create_region_from_window_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_cursor_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_delete_pointer_barrier.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_delete_pointer_barrier_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_destroy_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_destroy_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_expand_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_expand_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region_rectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region_rectangles_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region_rectangles_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_fetch_region_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_client_disconnect_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_client_disconnect_mode_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_client_disconnect_mode_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_and_name_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_cursor_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_cursor_image_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_cursor_image_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_image_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_get_cursor_name_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_hide_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_hide_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_intersect_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_intersect_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_invert_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_invert_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_region_extents.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_region_extents_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_select_cursor_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_select_cursor_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_select_selection_input.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_select_selection_input_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_selection_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_client_disconnect_mode.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_client_disconnect_mode_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_cursor_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_cursor_name_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_gc_clip_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_gc_clip_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_picture_clip_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_picture_clip_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_window_shape_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_set_window_shape_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_show_cursor.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_show_cursor_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_subtract_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_subtract_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_translate_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_translate_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_union_region.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xfixes_union_region_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_count.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_count_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_count_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_size.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_size_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_screen_size_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_state.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_state_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_get_state_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_is_active.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_is_active_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_is_active_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens_screen_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens_screen_info_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens_screen_info_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_screens_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xinerama_query_version_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_access_x_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_action_message_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_bell.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_bell_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_bell_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_compat_map_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_controls_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_extension_device_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_group_rtrn.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_group_rtrn_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_group_rtrn_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_si_rtrn.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_si_rtrn_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_si_rtrn_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_compat_map_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_controls.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_controls_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_controls_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_btn_actions.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_btn_actions_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_btn_actions_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_leds_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_leds_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_name_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_name_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_pad_1.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_device_info_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map_maps.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map_maps_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map_maps_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_map_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_state.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_state_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_indicator_state_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_kbd_by_name.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_kbd_by_name_replies.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_kbd_by_name_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_kbd_by_name_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_map_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_map_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_map_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_named_indicator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_named_indicator_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_named_indicator_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_names.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_names_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_names_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_names_value_list.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_state.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_state_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_get_state_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_indicator_map_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_indicator_state_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_latch_lock_state.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_latch_lock_state_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_compat_maps_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_compat_maps_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_geometries_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_geometries_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_keycodes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_keycodes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_keymaps_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_keymaps_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_symbols_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_symbols_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_types_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_types_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_list_components_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_map_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_names_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_new_keyboard_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_per_client_flags.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_per_client_flags_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_per_client_flags_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_select_events.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_select_events_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_compat_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_compat_map_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_controls.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_controls_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_debugging_flags.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_debugging_flags_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_debugging_flags_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_device_info.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_device_info_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_indicator_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_indicator_map_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_map.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_map_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_named_indicator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_named_indicator_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_names.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_set_names_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_state_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_use_extension.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_use_extension_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xkb_use_extension_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_port_attribute.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_port_attribute_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_port_attribute_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_still.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_still_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_video.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_get_video_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_grab_port.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_grab_port_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_grab_port_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats_format.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats_format_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats_format_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_list_image_formats_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_port_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_image_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_still.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_still_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_video.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_put_video_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_adaptors.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_adaptors_info_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_adaptors_info_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_adaptors_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_adaptors_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_best_size.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_best_size_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_best_size_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_encodings.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_encodings_info_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_encodings_info_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_encodings_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_encodings_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_extension.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_extension_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_extension_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_offsets.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_offsets_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_offsets_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_pitches.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_pitches_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_pitches_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_image_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_port_attributes.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_port_attributes_attributes_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_port_attributes_attributes_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_port_attributes_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_query_port_attributes_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_select_port_notify.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_select_port_notify_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_select_video_notify.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_select_video_notify_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_set_port_attribute.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_set_port_attribute_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_shm_put_image.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_shm_put_image_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_stop_video.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_stop_video_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_ungrab_port.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_ungrab_port_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xv_video_notify_event_t.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context_priv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context_priv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context_priv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_context_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture_priv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture_priv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture_priv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_subpicture_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface_priv_data.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface_priv_data_end.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface_priv_data_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_create_surface_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_context.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_context_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_subpicture.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_subpicture_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_surface.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_destroy_surface_checked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types_types.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types_types_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types_types_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_subpicture_types_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types_surfaces.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types_surfaces_iterator.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types_surfaces_length.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_list_surface_types_unchecked.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_query_version.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_query_version_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xcb_xvmc_query_version_unchecked.3.gz diff --git a/repos/xorg/libxcb/abuild b/repos/xorg/libxcb/abuild deleted file mode 100644 index 63bbb6b4..00000000 --- a/repos/xorg/libxcb/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxcb -version=1.17.0 -release=1 -source="https://xorg.freedesktop.org/archive/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/libxcb/depends b/repos/xorg/libxcb/depends deleted file mode 100644 index 9eedc17f..00000000 --- a/repos/xorg/libxcb/depends +++ /dev/null @@ -1,2 +0,0 @@ -xcb-proto -libxau diff --git a/repos/xorg/libxcomposite/.checksum b/repos/xorg/libxcomposite/.checksum deleted file mode 100644 index 8c193b5a..00000000 --- a/repos/xorg/libxcomposite/.checksum +++ /dev/null @@ -1 +0,0 @@ -7e02026864066869aefc1d688415b1e8c6ab0b639556f93b6f5e86063aa1bbac libXcomposite-0.4.6.tar.xz diff --git a/repos/xorg/libxcomposite/.files b/repos/xorg/libxcomposite/.files deleted file mode 100644 index 068d2bf9..00000000 --- a/repos/xorg/libxcomposite/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xcomposite.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXcomposite.so -> libXcomposite.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXcomposite.so.1 -> libXcomposite.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXcomposite.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcomposite.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XCompositeCreateRegionFromBorderClip.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeGetOverlayWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeNameWindowPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeRedirectSubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeRedirectWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeReleaseOverlayWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeUnredirectSubwindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeUnredirectWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XCompositeVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/Xcomposite.3.gz diff --git a/repos/xorg/libxcomposite/abuild b/repos/xorg/libxcomposite/abuild deleted file mode 100644 index 38c2b17a..00000000 --- a/repos/xorg/libxcomposite/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxcomposite -version=0.4.6 -release=1 -source="https://www.x.org/pub/individual/lib/libXcomposite-$version.tar.xz" diff --git a/repos/xorg/libxcomposite/depends b/repos/xorg/libxcomposite/depends deleted file mode 100644 index 90ab113b..00000000 --- a/repos/xorg/libxcomposite/depends +++ /dev/null @@ -1 +0,0 @@ -libxfixes diff --git a/repos/xorg/libxcursor/.checksum b/repos/xorg/libxcursor/.checksum deleted file mode 100644 index fc238585..00000000 --- a/repos/xorg/libxcursor/.checksum +++ /dev/null @@ -1 +0,0 @@ -78369818c0dd2fb10374b55458429c3f53409995d01a53a07def1980290af66d libXcursor-1.2.3.tar.xz diff --git a/repos/xorg/libxcursor/.files b/repos/xorg/libxcursor/.files deleted file mode 100644 index 49f8ded8..00000000 --- a/repos/xorg/libxcursor/.files +++ /dev/null @@ -1,74 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/Xcursor/ --rw-r--r-- root/root usr/include/X11/Xcursor/Xcursor.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXcursor.so -> libXcursor.so.1.0.2 -lrwxrwxrwx root/root usr/lib/libXcursor.so.1 -> libXcursor.so.1.0.2 --rwxr-xr-x root/root usr/lib/libXcursor.so.1.0.2 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcursor.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xcursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorAnimateCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorAnimateDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorAnimateNext.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCommentCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCommentDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCommentsCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCommentsDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCursorsCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorCursorsDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileLoad.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileLoadAllImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileLoadImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileLoadImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileSave.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFileSaveImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoad.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoadAllImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoadCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoadCursors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoadImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameLoadImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameSave.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorFilenameSaveImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorGetDefaultSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorGetTheme.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorGetThemeCore.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImageCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImageDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImageHash.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImageLoadCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImagesCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImagesDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImagesLoadCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImagesLoadCursors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorImagesSetName.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryLoadCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryLoadCursors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryLoadImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryLoadImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryPath.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorLibraryShape.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorNoticeCreateBitmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorNoticePutBitmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorSetDefaultSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorSetTheme.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorSetThemeCore.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorShapeLoadCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorShapeLoadCursors.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorShapeLoadImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorShapeLoadImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorSupportsARGB.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorSupportsAnim.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorTryShapeBitmapCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorTryShapeCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorXcFileLoad.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorXcFileLoadAllImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorXcFileLoadImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorXcFileLoadImages.3.gz --rw-r--r-- root/root usr/share/man/man3/XcursorXcFileSave.3.gz diff --git a/repos/xorg/libxcursor/abuild b/repos/xorg/libxcursor/abuild deleted file mode 100644 index f695383b..00000000 --- a/repos/xorg/libxcursor/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxcursor -version=1.2.3 -release=1 -source="https://www.x.org/pub/individual/lib/libXcursor-$version.tar.xz" diff --git a/repos/xorg/libxcursor/depends b/repos/xorg/libxcursor/depends deleted file mode 100644 index fd6c4a9c..00000000 --- a/repos/xorg/libxcursor/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxfixes -libxrender diff --git a/repos/xorg/libxcvt/.checksum b/repos/xorg/libxcvt/.checksum deleted file mode 100644 index 6e9f603b..00000000 --- a/repos/xorg/libxcvt/.checksum +++ /dev/null @@ -1 +0,0 @@ -a6c8f264a70a742d2634f53d19489b984c28df11cb5653042e8921f7596534bb libxcvt-0.1.3.tar.xz diff --git a/repos/xorg/libxcvt/.files b/repos/xorg/libxcvt/.files deleted file mode 100644 index eb365c4d..00000000 --- a/repos/xorg/libxcvt/.files +++ /dev/null @@ -1,17 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/cvt -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/libxcvt/ --rw-r--r-- root/root usr/include/libxcvt/libxcvt.h --rw-r--r-- root/root usr/include/libxcvt/libxcvt_mode.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcvt.so -> libxcvt.so.0 -lrwxrwxrwx root/root usr/lib/libxcvt.so.0 -> libxcvt.so.0.1.3 --rwxr-xr-x root/root usr/lib/libxcvt.so.0.1.3 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libxcvt.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/cvt.1.gz diff --git a/repos/xorg/libxcvt/abuild b/repos/xorg/libxcvt/abuild deleted file mode 100644 index 2407ab88..00000000 --- a/repos/xorg/libxcvt/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxcvt -version=0.1.3 -release=1 -source="https://www.x.org/pub/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/libxdamage/.checksum b/repos/xorg/libxdamage/.checksum deleted file mode 100644 index 0b98e319..00000000 --- a/repos/xorg/libxdamage/.checksum +++ /dev/null @@ -1 +0,0 @@ -d3d75f2656027288f87b9ddda8bf019862c63c6e4aeadd92f45870df6c2a7ce9 libXdamage-1.1.6.tar.xz diff --git a/repos/xorg/libxdamage/.files b/repos/xorg/libxdamage/.files deleted file mode 100644 index 46cf8753..00000000 --- a/repos/xorg/libxdamage/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xdamage.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXdamage.so -> libXdamage.so.1.1.0 -lrwxrwxrwx root/root usr/lib/libXdamage.so.1 -> libXdamage.so.1.1.0 --rwxr-xr-x root/root usr/lib/libXdamage.so.1.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xdamage.pc diff --git a/repos/xorg/libxdamage/abuild b/repos/xorg/libxdamage/abuild deleted file mode 100644 index 682e8e2e..00000000 --- a/repos/xorg/libxdamage/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxdamage -version=1.1.6 -release=1 -source="https://www.x.org/pub/individual/lib/libXdamage-$version.tar.xz" diff --git a/repos/xorg/libxdamage/depends b/repos/xorg/libxdamage/depends deleted file mode 100644 index 90ab113b..00000000 --- a/repos/xorg/libxdamage/depends +++ /dev/null @@ -1 +0,0 @@ -libxfixes diff --git a/repos/xorg/libxdmcp/.checksum b/repos/xorg/libxdmcp/.checksum deleted file mode 100644 index ebf69660..00000000 --- a/repos/xorg/libxdmcp/.checksum +++ /dev/null @@ -1 +0,0 @@ -d93c5ceb04019228ee6f034c4d10826025a7ae756d7b2f884fc2f768577173ba libXdmcp-1.1.5.tar.xz diff --git a/repos/xorg/libxdmcp/.files b/repos/xorg/libxdmcp/.files deleted file mode 100644 index 1ef091ea..00000000 --- a/repos/xorg/libxdmcp/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/Xdmcp.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXdmcp.so -> libXdmcp.so.6.0.0 -lrwxrwxrwx root/root usr/lib/libXdmcp.so.6 -> libXdmcp.so.6.0.0 --rwxr-xr-x root/root usr/lib/libXdmcp.so.6.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xdmcp.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libxdmcp/abuild b/repos/xorg/libxdmcp/abuild deleted file mode 100644 index fdbaa4e9..00000000 --- a/repos/xorg/libxdmcp/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxdmcp -version=1.1.5 -release=1 -source="https://www.x.org/pub/individual/lib/libXdmcp-$version.tar.xz" diff --git a/repos/xorg/libxdmcp/depends b/repos/xorg/libxdmcp/depends deleted file mode 100644 index be3636df..00000000 --- a/repos/xorg/libxdmcp/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -util-macros diff --git a/repos/xorg/libxext/.checksum b/repos/xorg/libxext/.checksum deleted file mode 100644 index 1908eef6..00000000 --- a/repos/xorg/libxext/.checksum +++ /dev/null @@ -1 +0,0 @@ -4c24887ba3913728f3c0be945006f6babbc2c44c8118d4b1ca5366294e3f4406 libXext-1.3.6.tar.xz diff --git a/repos/xorg/libxext/.files b/repos/xorg/libxext/.files deleted file mode 100644 index dbd468bb..00000000 --- a/repos/xorg/libxext/.files +++ /dev/null @@ -1,90 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/MITMisc.h --rw-r--r-- root/root usr/include/X11/extensions/XEVI.h --rw-r--r-- root/root usr/include/X11/extensions/XLbx.h --rw-r--r-- root/root usr/include/X11/extensions/XShm.h --rw-r--r-- root/root usr/include/X11/extensions/Xag.h --rw-r--r-- root/root usr/include/X11/extensions/Xcup.h --rw-r--r-- root/root usr/include/X11/extensions/Xdbe.h --rw-r--r-- root/root usr/include/X11/extensions/Xext.h --rw-r--r-- root/root usr/include/X11/extensions/Xge.h --rw-r--r-- root/root usr/include/X11/extensions/dpms.h --rw-r--r-- root/root usr/include/X11/extensions/extutil.h --rw-r--r-- root/root usr/include/X11/extensions/multibuf.h --rw-r--r-- root/root usr/include/X11/extensions/security.h --rw-r--r-- root/root usr/include/X11/extensions/shape.h --rw-r--r-- root/root usr/include/X11/extensions/sync.h --rw-r--r-- root/root usr/include/X11/extensions/xtestext1.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXext.so -> libXext.so.6.4.0 -lrwxrwxrwx root/root usr/lib/libXext.so.6 -> libXext.so.6.4.0 --rwxr-xr-x root/root usr/lib/libXext.so.6.4.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xext.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/DBE.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSCapable.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSDisable.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSEnable.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSForceLevel.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSGetTimeouts.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSGetVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/DPMSSetTimeouts.3.gz --rw-r--r-- root/root usr/share/man/man3/XShape.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeCombineMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeCombineRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeCombineRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeCombineShape.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeGetRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeInputSelected.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeOffsetShape.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeQueryExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XShapeSelectInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XShm.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmAttach.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmCreateImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmCreatePixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmDetach.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmGetEventBase.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmGetImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmPixmapFormat.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmPutImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XShmQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XcupGetReservedColormapEntries.3.gz --rw-r--r-- root/root usr/share/man/man3/XcupQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XcupStoreColors.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeAllocateBackBufferName.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeBeginIdiom.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeDeallocateBackBufferName.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeEndIdiom.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeFreeVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeGetBackBufferAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeGetVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XdbeSwapBuffers.3.gz --rw-r--r-- root/root usr/share/man/man3/Xevi.3.gz --rw-r--r-- root/root usr/share/man/man3/XeviGetVisualInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XeviQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XeviQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/Xmbuf.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufChangeBufferAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufChangeWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufCreateBuffers.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufCreateStereoWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufDestroyBuffers.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufDisplayBuffers.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufGetBufferAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufGetScreenInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufGetVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufGetWindowAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XmbufQueryExtension.3.gz diff --git a/repos/xorg/libxext/abuild b/repos/xorg/libxext/abuild deleted file mode 100644 index 0fe152df..00000000 --- a/repos/xorg/libxext/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxext -version=1.3.6 -release=1 -source="https://www.x.org/pub/individual/lib/libXext-$version.tar.xz" diff --git a/repos/xorg/libxext/depends b/repos/xorg/libxext/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/libxext/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/libxfixes/.checksum b/repos/xorg/libxfixes/.checksum deleted file mode 100644 index 8ea379fd..00000000 --- a/repos/xorg/libxfixes/.checksum +++ /dev/null @@ -1 +0,0 @@ -ccbae58717aa81f1ef52a2e6cbb7c57553a98b93f5a7a6f8a78e793a3a0c7f78 libXfixes-6.0.1.tar.xz diff --git a/repos/xorg/libxfixes/.files b/repos/xorg/libxfixes/.files deleted file mode 100644 index db7ab7b7..00000000 --- a/repos/xorg/libxfixes/.files +++ /dev/null @@ -1,15 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xfixes.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXfixes.so -> libXfixes.so.3.1.0 -lrwxrwxrwx root/root usr/lib/libXfixes.so.3 -> libXfixes.so.3.1.0 --rwxr-xr-x root/root usr/lib/libXfixes.so.3.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xfixes.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xfixes.3.gz diff --git a/repos/xorg/libxfixes/abuild b/repos/xorg/libxfixes/abuild deleted file mode 100644 index 2a22c6c3..00000000 --- a/repos/xorg/libxfixes/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxfixes -version=6.0.1 -release=1 -source="https://www.x.org/pub/individual/lib/libXfixes-$version.tar.xz" diff --git a/repos/xorg/libxfixes/depends b/repos/xorg/libxfixes/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/libxfixes/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/libxfont2/.checksum b/repos/xorg/libxfont2/.checksum deleted file mode 100644 index 1cb61059..00000000 --- a/repos/xorg/libxfont2/.checksum +++ /dev/null @@ -1 +0,0 @@ -9b4951683df21108e45fda23dbd25dcb47b67a3a0e224a36374fbc2d0f489cac libXfont2-2.0.7.tar.xz diff --git a/repos/xorg/libxfont2/.files b/repos/xorg/libxfont2/.files deleted file mode 100644 index 14aa1e81..00000000 --- a/repos/xorg/libxfont2/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/fonts/ --rw-r--r-- root/root usr/include/X11/fonts/libxfont2.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXfont2.so -> libXfont2.so.2.0.0 -lrwxrwxrwx root/root usr/lib/libXfont2.so.2 -> libXfont2.so.2.0.0 --rwxr-xr-x root/root usr/lib/libXfont2.so.2.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xfont2.pc diff --git a/repos/xorg/libxfont2/abuild b/repos/xorg/libxfont2/abuild deleted file mode 100644 index 4317efec..00000000 --- a/repos/xorg/libxfont2/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libxfont2 -version=2.0.7 -release=1 -source="https://www.x.org/pub/individual/lib/libXfont2-$version.tar.xz" -build_opt="--disable-devel-docs" diff --git a/repos/xorg/libxfont2/depends b/repos/xorg/libxfont2/depends deleted file mode 100644 index 6e095f35..00000000 --- a/repos/xorg/libxfont2/depends +++ /dev/null @@ -1,3 +0,0 @@ -libfontenc -freetype -xtrans diff --git a/repos/xorg/libxft/.checksum b/repos/xorg/libxft/.checksum deleted file mode 100644 index 8284c3a4..00000000 --- a/repos/xorg/libxft/.checksum +++ /dev/null @@ -1 +0,0 @@ -89a070e53a1170a6f7c679a7c1860293813caeaa029f7e99917c6ddc73669ccf libXft-2.3.8.tar.xz diff --git a/repos/xorg/libxft/.files b/repos/xorg/libxft/.files deleted file mode 100644 index 026c01f5..00000000 --- a/repos/xorg/libxft/.files +++ /dev/null @@ -1,93 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/Xft/ --rw-r--r-- root/root usr/include/X11/Xft/Xft.h --rw-r--r-- root/root usr/include/X11/Xft/XftCompat.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXft.so -> libXft.so.2.3.8 -lrwxrwxrwx root/root usr/lib/libXft.so.2 -> libXft.so.2.3.8 --rwxr-xr-x root/root usr/lib/libXft.so.2.3.8 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xft.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xft.3.gz --rw-r--r-- root/root usr/share/man/man3/XftCharExists.3.gz --rw-r--r-- root/root usr/share/man/man3/XftCharFontSpecRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftCharIndex.3.gz --rw-r--r-- root/root usr/share/man/man3/XftCharSpecRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftColorAllocName.3.gz --rw-r--r-- root/root usr/share/man/man3/XftColorAllocValue.3.gz --rw-r--r-- root/root usr/share/man/man3/XftColorFree.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDefaultHasRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDefaultSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDefaultSubstitute.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawChange.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawCharFontSpec.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawCharSpec.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawColormap.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawCreateAlpha.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawCreateBitmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawDrawable.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawGlyphFontSpec.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawGlyphSpec.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawGlyphs.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawPicture.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawRect.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawSetClip.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawSetClipRectangles.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawSetSubwindowMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawSrcPicture.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawString16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawString32.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawString8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawStringUtf16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawStringUtf8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftDrawVisual.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontCheckGlyph.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontClose.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontCopy.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontInfoCreate.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontInfoDestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontInfoEqual.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontInfoHash.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontLoadGlyphs.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontMatch.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontOpen.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontOpenInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontOpenName.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontOpenPattern.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontOpenXlfd.3.gz --rw-r--r-- root/root usr/share/man/man3/XftFontUnloadGlyphs.3.gz --rw-r--r-- root/root usr/share/man/man3/XftGetVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XftGlyphExtents.3.gz --rw-r--r-- root/root usr/share/man/man3/XftGlyphFontSpecRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftGlyphRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftGlyphSpecRender.3.gz --rw-r--r-- root/root usr/share/man/man3/XftInit.3.gz --rw-r--r-- root/root usr/share/man/man3/XftInitFtLibrary.3.gz --rw-r--r-- root/root usr/share/man/man3/XftListFonts.3.gz --rw-r--r-- root/root usr/share/man/man3/XftLockFace.3.gz --rw-r--r-- root/root usr/share/man/man3/XftNameParse.3.gz --rw-r--r-- root/root usr/share/man/man3/XftNameUnparse.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextExtents16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextExtents32.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextExtents8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextExtentsUtf16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextExtentsUtf8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender16BE.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender16LE.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender32.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender32BE.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender32LE.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRender8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRenderUtf16.3.gz --rw-r--r-- root/root usr/share/man/man3/XftTextRenderUtf8.3.gz --rw-r--r-- root/root usr/share/man/man3/XftUnlockFace.3.gz --rw-r--r-- root/root usr/share/man/man3/XftXlfdParse.3.gz diff --git a/repos/xorg/libxft/abuild b/repos/xorg/libxft/abuild deleted file mode 100644 index 151c0d27..00000000 --- a/repos/xorg/libxft/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxft -version=2.3.8 -release=1 -source="https://www.x.org/pub/individual/lib/libXft-$version.tar.xz" diff --git a/repos/xorg/libxft/depends b/repos/xorg/libxft/depends deleted file mode 100644 index 97eb995a..00000000 --- a/repos/xorg/libxft/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxrender -fontconfig diff --git a/repos/xorg/libxi/.checksum b/repos/xorg/libxi/.checksum deleted file mode 100644 index 651659e6..00000000 --- a/repos/xorg/libxi/.checksum +++ /dev/null @@ -1 +0,0 @@ -8f0acdd884dc928c6c8bc4b6bca1f4c67c726fdb03e30910c09bdb41fd841d3e libXi-1.8.2.tar.xz diff --git a/repos/xorg/libxi/.files b/repos/xorg/libxi/.files deleted file mode 100644 index 308db292..00000000 --- a/repos/xorg/libxi/.files +++ /dev/null @@ -1,89 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/XInput.h --rw-r--r-- root/root usr/include/X11/extensions/XInput2.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXi.so -> libXi.so.6.1.0 -lrwxrwxrwx root/root usr/lib/libXi.so.6 -> libXi.so.6.1.0 --rwxr-xr-x root/root usr/lib/libXi.so.6.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xi.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XAllowDeviceEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeDeviceControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeDeviceDontPropagateList.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeDeviceKeyMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeDeviceProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeFeedbackControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangeKeyboardDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XChangePointerDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XCloseDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeleteDeviceProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeviceBell.3.gz --rw-r--r-- root/root usr/share/man/man3/XDeviceTimeCoord.3.gz --rw-r--r-- root/root usr/share/man/man3/XFreeDeviceList.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceButtonMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceDontPropagateList.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceKeyMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceModifierMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceMotionEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetDeviceProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetExtensionVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetFeedbackControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XGetSelectedExtensionEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabDeviceButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XGrabDeviceKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XIAllowEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XIBarrierReleasePointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XIBarrierReleasePointers.3.gz --rw-r--r-- root/root usr/share/man/man3/XIChangeHierarchy.3.gz --rw-r--r-- root/root usr/share/man/man3/XIChangeProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XIDefineCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XIDeleteProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XIFreeDeviceInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGetClientPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGetFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGetProperty.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGetSelectedEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabEnter.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabFocusIn.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabKeycode.3.gz --rw-r--r-- root/root usr/share/man/man3/XIGrabTouchBegin.3.gz --rw-r--r-- root/root usr/share/man/man3/XIListProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XIQueryDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XIQueryPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XIQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XISelectEvents.3.gz --rw-r--r-- root/root usr/share/man/man3/XISetClientPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XISetFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUndefineCursor.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabEnter.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabFocusIn.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabKeycode.3.gz --rw-r--r-- root/root usr/share/man/man3/XIUngrabTouchBegin.3.gz --rw-r--r-- root/root usr/share/man/man3/XIWarpPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XListDeviceProperties.3.gz --rw-r--r-- root/root usr/share/man/man3/XListInputDevices.3.gz --rw-r--r-- root/root usr/share/man/man3/XOpenDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XQueryDeviceState.3.gz --rw-r--r-- root/root usr/share/man/man3/XSelectExtensionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSendExtensionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDeviceButtonMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDeviceFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDeviceMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDeviceModifierMapping.3.gz --rw-r--r-- root/root usr/share/man/man3/XSetDeviceValuators.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabDevice.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabDeviceButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XUngrabDeviceKey.3.gz diff --git a/repos/xorg/libxi/abuild b/repos/xorg/libxi/abuild deleted file mode 100644 index ca43bd4b..00000000 --- a/repos/xorg/libxi/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxi -version=1.8.2 -release=1 -source="https://www.x.org/pub/individual/lib/libXi-$version.tar.xz" diff --git a/repos/xorg/libxi/depends b/repos/xorg/libxi/depends deleted file mode 100644 index 7679b770..00000000 --- a/repos/xorg/libxi/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxext -libxfixes diff --git a/repos/xorg/libxinerama/.checksum b/repos/xorg/libxinerama/.checksum deleted file mode 100644 index 62c2b25e..00000000 --- a/repos/xorg/libxinerama/.checksum +++ /dev/null @@ -1 +0,0 @@ -58b4020c8a8fb62707f5073f967bf8abbc8dc7cff35c5750fabe097f46a924b4 libXinerama-1.1.5.tar.xz diff --git a/repos/xorg/libxinerama/.files b/repos/xorg/libxinerama/.files deleted file mode 100644 index 3514867b..00000000 --- a/repos/xorg/libxinerama/.files +++ /dev/null @@ -1,20 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xinerama.h --rw-r--r-- root/root usr/include/X11/extensions/panoramiXext.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXinerama.so -> libXinerama.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXinerama.so.1 -> libXinerama.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXinerama.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xinerama.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/Xinerama.3.gz --rw-r--r-- root/root usr/share/man/man3/XineramaIsActive.3.gz --rw-r--r-- root/root usr/share/man/man3/XineramaQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XineramaQueryScreens.3.gz --rw-r--r-- root/root usr/share/man/man3/XineramaQueryVersion.3.gz diff --git a/repos/xorg/libxinerama/abuild b/repos/xorg/libxinerama/abuild deleted file mode 100644 index df415158..00000000 --- a/repos/xorg/libxinerama/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxinerama -version=1.1.5 -release=1 -source="https://www.x.org/pub/individual/lib/libXinerama-$version.tar.xz" diff --git a/repos/xorg/libxinerama/depends b/repos/xorg/libxinerama/depends deleted file mode 100644 index 86f32413..00000000 --- a/repos/xorg/libxinerama/depends +++ /dev/null @@ -1 +0,0 @@ -libxext diff --git a/repos/xorg/libxkbfile/.checksum b/repos/xorg/libxkbfile/.checksum deleted file mode 100644 index 899a9ed9..00000000 --- a/repos/xorg/libxkbfile/.checksum +++ /dev/null @@ -1 +0,0 @@ -9566ee417df1127f21dd0e1fbcfcc14dacb366c07a1ec2de51f89af12535c06d libxkbfile-1.1.3.tar.xz diff --git a/repos/xorg/libxkbfile/.files b/repos/xorg/libxkbfile/.files deleted file mode 100644 index 09035607..00000000 --- a/repos/xorg/libxkbfile/.files +++ /dev/null @@ -1,16 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/XKBbells.h --rw-r--r-- root/root usr/include/X11/extensions/XKBconfig.h --rw-r--r-- root/root usr/include/X11/extensions/XKBfile.h --rw-r--r-- root/root usr/include/X11/extensions/XKBrules.h --rw-r--r-- root/root usr/include/X11/extensions/XKM.h --rw-r--r-- root/root usr/include/X11/extensions/XKMformat.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxkbfile.so -> libxkbfile.so.1 -lrwxrwxrwx root/root usr/lib/libxkbfile.so.1 -> libxkbfile.so.1.0.2 --rwxr-xr-x root/root usr/lib/libxkbfile.so.1.0.2 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xkbfile.pc diff --git a/repos/xorg/libxkbfile/abuild b/repos/xorg/libxkbfile/abuild deleted file mode 100644 index 67ae4201..00000000 --- a/repos/xorg/libxkbfile/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxkbfile -version=1.1.3 -release=1 -source="https://www.x.org/pub/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/libxkbfile/depends b/repos/xorg/libxkbfile/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/libxkbfile/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/libxmu/.checksum b/repos/xorg/libxmu/.checksum deleted file mode 100644 index 2fde790d..00000000 --- a/repos/xorg/libxmu/.checksum +++ /dev/null @@ -1 +0,0 @@ -466f7ab160c4e9f04866e9c895dbecb6a76ed1817ae16721d404c556d88f047e libXmu-1.2.1.tar.xz diff --git a/repos/xorg/libxmu/.files b/repos/xorg/libxmu/.files deleted file mode 100644 index f2bd5994..00000000 --- a/repos/xorg/libxmu/.files +++ /dev/null @@ -1,38 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/Xmu/ --rw-r--r-- root/root usr/include/X11/Xmu/Atoms.h --rw-r--r-- root/root usr/include/X11/Xmu/CharSet.h --rw-r--r-- root/root usr/include/X11/Xmu/CloseHook.h --rw-r--r-- root/root usr/include/X11/Xmu/Converters.h --rw-r--r-- root/root usr/include/X11/Xmu/CurUtil.h --rw-r--r-- root/root usr/include/X11/Xmu/CvtCache.h --rw-r--r-- root/root usr/include/X11/Xmu/DisplayQue.h --rw-r--r-- root/root usr/include/X11/Xmu/Drawing.h --rw-r--r-- root/root usr/include/X11/Xmu/Editres.h --rw-r--r-- root/root usr/include/X11/Xmu/EditresP.h --rw-r--r-- root/root usr/include/X11/Xmu/Error.h --rw-r--r-- root/root usr/include/X11/Xmu/ExtAgent.h --rw-r--r-- root/root usr/include/X11/Xmu/Initer.h --rw-r--r-- root/root usr/include/X11/Xmu/Lookup.h --rw-r--r-- root/root usr/include/X11/Xmu/Misc.h --rw-r--r-- root/root usr/include/X11/Xmu/StdCmap.h --rw-r--r-- root/root usr/include/X11/Xmu/StdSel.h --rw-r--r-- root/root usr/include/X11/Xmu/SysUtil.h --rw-r--r-- root/root usr/include/X11/Xmu/WhitePoint.h --rw-r--r-- root/root usr/include/X11/Xmu/WidgetNode.h --rw-r--r-- root/root usr/include/X11/Xmu/WinUtil.h --rw-r--r-- root/root usr/include/X11/Xmu/Xct.h --rw-r--r-- root/root usr/include/X11/Xmu/Xmu.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXmu.so -> libXmu.so.6.2.0 -lrwxrwxrwx root/root usr/lib/libXmu.so.6 -> libXmu.so.6.2.0 --rwxr-xr-x root/root usr/lib/libXmu.so.6.2.0 -lrwxrwxrwx root/root usr/lib/libXmuu.so -> libXmuu.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXmuu.so.1 -> libXmuu.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXmuu.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xmu.pc --rw-r--r-- root/root usr/lib/pkgconfig/xmuu.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libxmu/abuild b/repos/xorg/libxmu/abuild deleted file mode 100644 index ef4537a5..00000000 --- a/repos/xorg/libxmu/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxmu -version=1.2.1 -release=1 -source="https://www.x.org/pub/individual/lib/libXmu-$version.tar.xz" diff --git a/repos/xorg/libxmu/depends b/repos/xorg/libxmu/depends deleted file mode 100644 index 9a048ee7..00000000 --- a/repos/xorg/libxmu/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxext -libxt diff --git a/repos/xorg/libxpm/.checksum b/repos/xorg/libxpm/.checksum deleted file mode 100644 index 9f65127a..00000000 --- a/repos/xorg/libxpm/.checksum +++ /dev/null @@ -1 +0,0 @@ -0cc9bbdc6d9c9d6ce100249b7bb68bff4550de43ee31d815fd9b21c8d178cd9e libXpm-3.5.17.tar.xz diff --git a/repos/xorg/libxpm/.files b/repos/xorg/libxpm/.files deleted file mode 100644 index 76a5b0cb..00000000 --- a/repos/xorg/libxpm/.files +++ /dev/null @@ -1,60 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/cxpm --rwxr-xr-x root/root usr/bin/sxpm -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/xpm.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXpm.so -> libXpm.so.4.11.0 -lrwxrwxrwx root/root usr/lib/libXpm.so.4 -> libXpm.so.4.11.0 --rwxr-xr-x root/root usr/lib/libXpm.so.4.11.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xpm.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/cxpm.1.gz --rw-r--r-- root/root usr/share/man/man1/sxpm.1.gz -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XpmAttributesSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateBufferFromImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateBufferFromPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateBufferFromXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateData.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateDataFromImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateDataFromPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateDataFromXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateImageFromBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateImageFromData.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateImageFromXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreatePixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreatePixmapFromBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreatePixmapFromData.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreatePixmapFromXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateXpmImageFromBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateXpmImageFromData.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateXpmImageFromImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmCreateXpmImageFromPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmFree.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmFreeAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmFreeExtensions.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmFreeXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmFreeXpmInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmGetErrorString.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmLibraryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmMisc.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmRead.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmReadFileToBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmReadFileToData.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmReadFileToImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmReadFileToPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmReadFileToXpmImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmWrite.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmWriteFileFromBuffer.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmWriteFileFromImage.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmWriteFileFromPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XpmWriteFileFromXpmImage.3.gz diff --git a/repos/xorg/libxpm/abuild b/repos/xorg/libxpm/abuild deleted file mode 100644 index 78a79bd1..00000000 --- a/repos/xorg/libxpm/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libxpm -version=3.5.17 -release=1 -source="https://www.x.org/pub/individual/lib/libXpm-$version.tar.xz" -build_opt="--disable-open-zfile" diff --git a/repos/xorg/libxpm/depends b/repos/xorg/libxpm/depends deleted file mode 100644 index 32ff068d..00000000 --- a/repos/xorg/libxpm/depends +++ /dev/null @@ -1,3 +0,0 @@ -libxext -libxt -gettext-tiny diff --git a/repos/xorg/libxpresent/.checksum b/repos/xorg/libxpresent/.checksum deleted file mode 100644 index 277ab612..00000000 --- a/repos/xorg/libxpresent/.checksum +++ /dev/null @@ -1 +0,0 @@ -58d4a053144038ca3a6d7b6ee1dd668265ea53141f2f29d9480c443e41e83eed libXpresent-1.0.1.tar.xz diff --git a/repos/xorg/libxpresent/.files b/repos/xorg/libxpresent/.files deleted file mode 100644 index 9d3029dd..00000000 --- a/repos/xorg/libxpresent/.files +++ /dev/null @@ -1,23 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xpresent.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXpresent.so -> libXpresent.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXpresent.so.1 -> libXpresent.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXpresent.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xpresent.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XPresentFreeInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentNotifyMSC.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentPixmap.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentQueryCapabilities.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentSelectInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XPresentVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/Xpresent.3.gz diff --git a/repos/xorg/libxpresent/abuild b/repos/xorg/libxpresent/abuild deleted file mode 100644 index 7211187f..00000000 --- a/repos/xorg/libxpresent/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxpresent -version=1.0.1 -release=1 -source="https://www.x.org/releases/individual/lib/libXpresent-${version}.tar.xz" diff --git a/repos/xorg/libxpresent/depends b/repos/xorg/libxpresent/depends deleted file mode 100644 index f89880a6..00000000 --- a/repos/xorg/libxpresent/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxfixes -libxrandr diff --git a/repos/xorg/libxrandr/.checksum b/repos/xorg/libxrandr/.checksum deleted file mode 100644 index d3b04172..00000000 --- a/repos/xorg/libxrandr/.checksum +++ /dev/null @@ -1 +0,0 @@ -c107a47d9c4329996d74d7a1ab8d254a2cf3aecea1575d7e146da9a06b762081 libXrandr-1.5.4.tar.xz diff --git a/repos/xorg/libxrandr/.files b/repos/xorg/libxrandr/.files deleted file mode 100644 index c6033337..00000000 --- a/repos/xorg/libxrandr/.files +++ /dev/null @@ -1,29 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xrandr.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXrandr.so -> libXrandr.so.2.2.0 -lrwxrwxrwx root/root usr/lib/libXrandr.so.2 -> libXrandr.so.2.2.0 --rwxr-xr-x root/root usr/lib/libXrandr.so.2.2.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xrandr.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XRRConfigCurrentConfiguration.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRConfigCurrentRate.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRConfigRates.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRConfigRotations.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRConfigSizes.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRConfigTimes.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRFreeScreenConfigInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRGetScreenInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRRootToScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRSelectInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRSetScreenConfig.3.gz --rw-r--r-- root/root usr/share/man/man3/XRRSetScreenConfigAndRate.3.gz --rw-r--r-- root/root usr/share/man/man3/Xrandr.3.gz diff --git a/repos/xorg/libxrandr/abuild b/repos/xorg/libxrandr/abuild deleted file mode 100644 index c3a7947a..00000000 --- a/repos/xorg/libxrandr/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxrandr -version=1.5.4 -release=1 -source="https://www.x.org/pub/individual/lib/libXrandr-$version.tar.xz" diff --git a/repos/xorg/libxrandr/depends b/repos/xorg/libxrandr/depends deleted file mode 100644 index 79374b57..00000000 --- a/repos/xorg/libxrandr/depends +++ /dev/null @@ -1,2 +0,0 @@ -libxext -libxrender diff --git a/repos/xorg/libxrender/.checksum b/repos/xorg/libxrender/.checksum deleted file mode 100644 index cd60cf13..00000000 --- a/repos/xorg/libxrender/.checksum +++ /dev/null @@ -1 +0,0 @@ -900b431ad77835029a88fd0d874bbd0d748ff150b9e0c3841b3ce7a346cf396a libXrender-0.9.12.tar.xz diff --git a/repos/xorg/libxrender/.files b/repos/xorg/libxrender/.files deleted file mode 100644 index 1d252190..00000000 --- a/repos/xorg/libxrender/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/Xrender.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXrender.so -> libXrender.so.1.3.0 -lrwxrwxrwx root/root usr/lib/libXrender.so.1 -> libXrender.so.1.3.0 --rwxr-xr-x root/root usr/lib/libXrender.so.1.3.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xrender.pc -drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/libxrender/abuild b/repos/xorg/libxrender/abuild deleted file mode 100644 index 940485fc..00000000 --- a/repos/xorg/libxrender/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxrender -version=0.9.12 -release=1 -source="https://www.x.org/pub/individual/lib/libXrender-$version.tar.xz" diff --git a/repos/xorg/libxrender/depends b/repos/xorg/libxrender/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/libxrender/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/libxscrnsaver/.checksum b/repos/xorg/libxscrnsaver/.checksum deleted file mode 100644 index ae025ef5..00000000 --- a/repos/xorg/libxscrnsaver/.checksum +++ /dev/null @@ -1 +0,0 @@ -35ea09d2ebb75aa8f0c0094fbb3e31dbe2026b4c62c9a7953ce0d5fe5db5feca libXScrnSaver-1.2.4.tar.xz diff --git a/repos/xorg/libxscrnsaver/.files b/repos/xorg/libxscrnsaver/.files deleted file mode 100644 index d7bebae2..00000000 --- a/repos/xorg/libxscrnsaver/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/scrnsaver.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXss.so -> libXss.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXss.so.1 -> libXss.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXss.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xscrnsaver.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XScreenSaverAllocInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverGetRegistered.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverQueryInfo.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverRegister.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverSelectInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverSetAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverSuspend.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverUnregister.3.gz --rw-r--r-- root/root usr/share/man/man3/XScreenSaverUnsetAttributes.3.gz --rw-r--r-- root/root usr/share/man/man3/Xss.3.gz diff --git a/repos/xorg/libxscrnsaver/abuild b/repos/xorg/libxscrnsaver/abuild deleted file mode 100644 index 0e311566..00000000 --- a/repos/xorg/libxscrnsaver/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxscrnsaver -version=1.2.4 -release=1 -source="https://www.x.org/pub/individual/lib/libXScrnSaver-$version.tar.xz" diff --git a/repos/xorg/libxscrnsaver/depends b/repos/xorg/libxscrnsaver/depends deleted file mode 100644 index 86f32413..00000000 --- a/repos/xorg/libxscrnsaver/depends +++ /dev/null @@ -1 +0,0 @@ -libxext diff --git a/repos/xorg/libxshmfence/.checksum b/repos/xorg/libxshmfence/.checksum deleted file mode 100644 index b782bc99..00000000 --- a/repos/xorg/libxshmfence/.checksum +++ /dev/null @@ -1 +0,0 @@ -b6f6572eb8b8c44ecf0fadc53d86a030558ab2d210a1c2addd70822bdaacb7f3 libxshmfence-1.3.3.tar.xz diff --git a/repos/xorg/libxshmfence/.files b/repos/xorg/libxshmfence/.files deleted file mode 100644 index 7c20acb4..00000000 --- a/repos/xorg/libxshmfence/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/xshmfence.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxshmfence.so -> libxshmfence.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxshmfence.so.1 -> libxshmfence.so.1.0.0 --rwxr-xr-x root/root usr/lib/libxshmfence.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xshmfence.pc diff --git a/repos/xorg/libxshmfence/abuild b/repos/xorg/libxshmfence/abuild deleted file mode 100644 index 7529c954..00000000 --- a/repos/xorg/libxshmfence/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxshmfence -version=1.3.3 -release=1 -source="https://www.x.org/pub/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/libxshmfence/depends b/repos/xorg/libxshmfence/depends deleted file mode 100644 index be3636df..00000000 --- a/repos/xorg/libxshmfence/depends +++ /dev/null @@ -1,2 +0,0 @@ -xorgproto -util-macros diff --git a/repos/xorg/libxt/.checksum b/repos/xorg/libxt/.checksum deleted file mode 100644 index c3255177..00000000 --- a/repos/xorg/libxt/.checksum +++ /dev/null @@ -1 +0,0 @@ -fbf21683ce3e6d104529289254977bb08b355ecf7a36c763e8369acf85f15f24 libXt-1.3.1.tar.xz diff --git a/repos/xorg/libxt/.files b/repos/xorg/libxt/.files deleted file mode 100644 index 7efbb4cd..00000000 --- a/repos/xorg/libxt/.files +++ /dev/null @@ -1,313 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/CallbackI.h --rw-r--r-- root/root usr/include/X11/Composite.h --rw-r--r-- root/root usr/include/X11/CompositeP.h --rw-r--r-- root/root usr/include/X11/ConstrainP.h --rw-r--r-- root/root usr/include/X11/Constraint.h --rw-r--r-- root/root usr/include/X11/ConvertI.h --rw-r--r-- root/root usr/include/X11/Core.h --rw-r--r-- root/root usr/include/X11/CoreP.h --rw-r--r-- root/root usr/include/X11/CreateI.h --rw-r--r-- root/root usr/include/X11/EventI.h --rw-r--r-- root/root usr/include/X11/HookObjI.h --rw-r--r-- root/root usr/include/X11/InitialI.h --rw-r--r-- root/root usr/include/X11/Intrinsic.h --rw-r--r-- root/root usr/include/X11/IntrinsicI.h --rw-r--r-- root/root usr/include/X11/IntrinsicP.h --rw-r--r-- root/root usr/include/X11/Object.h --rw-r--r-- root/root usr/include/X11/ObjectP.h --rw-r--r-- root/root usr/include/X11/PassivGraI.h --rw-r--r-- root/root usr/include/X11/RectObj.h --rw-r--r-- root/root usr/include/X11/RectObjP.h --rw-r--r-- root/root usr/include/X11/ResConfigP.h --rw-r--r-- root/root usr/include/X11/ResourceI.h --rw-r--r-- root/root usr/include/X11/SelectionI.h --rw-r--r-- root/root usr/include/X11/Shell.h --rw-r--r-- root/root usr/include/X11/ShellI.h --rw-r--r-- root/root usr/include/X11/ShellP.h --rw-r--r-- root/root usr/include/X11/StringDefs.h --rw-r--r-- root/root usr/include/X11/ThreadsI.h --rw-r--r-- root/root usr/include/X11/TranslateI.h --rw-r--r-- root/root usr/include/X11/VarargsI.h --rw-r--r-- root/root usr/include/X11/Vendor.h --rw-r--r-- root/root usr/include/X11/VendorP.h --rw-r--r-- root/root usr/include/X11/Xtos.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXt.so -> libXt.so.6.0.0 -lrwxrwxrwx root/root usr/lib/libXt.so.6 -> libXt.so.6.0.0 --rwxr-xr-x root/root usr/lib/libXt.so.6.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xt.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/MenuPopdown.3.gz --rw-r--r-- root/root usr/share/man/man3/MenuPopup.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddCallback.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddCallbacks.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddExposureToRegion.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddGrab.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddRawEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddTimeOut.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAddWorkProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAllocateGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddActionHook.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddActions.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddBlockHook.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddSignal.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddTimeOut.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppAddWorkProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppCreateShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppError.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppErrorMsg.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppGetErrorDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppGetErrorDatabaseText.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppGetExitFlag.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppGetSelectionTimeout.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppLock.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppMainLoop.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppNextEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppPeekEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppPending.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppProcessEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppReleaseCacheRefs.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetErrorHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetErrorMsgHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetExitFlag.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetFallbackResources.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetSelectionTimeout.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetTypeConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetWarningHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppSetWarningMsgHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppUnlock.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppWarning.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAppWarningMsg.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAsprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/XtAugmentTranslations.3.gz --rw-r--r-- root/root usr/share/man/man3/XtBuildEventMask.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallAcceptFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallActionProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallCallbackList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallCallbacks.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallbackExclusive.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallbackNone.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallbackNonexclusive.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCallbackPopdown.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCalloc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCancelSelectionRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtChangeManagedSet.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCheckSubclass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtClass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCloseDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XtConfigureWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtConvert.3.gz --rw-r--r-- root/root usr/share/man/man3/XtConvertAndStore.3.gz --rw-r--r-- root/root usr/share/man/man3/XtConvertCase.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateApplicationContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateApplicationShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateManagedWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreatePopupShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateSelectionRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtCreateWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDestroyApplicationContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDestroyWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDirectConvert.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisownSelection.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDispatchEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDispatchEventToWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisplayInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisplayOfObject.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisplayStringConversionWarning.3.gz --rw-r--r-- root/root usr/share/man/man3/XtDisplayToApplicationContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XtError.3.gz --rw-r--r-- root/root usr/share/man/man3/XtErrorMsg.3.gz --rw-r--r-- root/root usr/share/man/man3/XtFindFile.3.gz --rw-r--r-- root/root usr/share/man/man3/XtFree.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetActionKeysym.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetActionList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetApplicationNameAndClass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetApplicationResources.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetClassExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetConstraintResourceList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetDisplays.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetErrorDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetErrorDatabaseText.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetKeyboardFocusWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetKeysymTable.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetMultiClickTime.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetResourceList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionParameters.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionTimeout.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionValue.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionValueIncremental.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSelectionValuesIncremental.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSubresources.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetSubvalues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGetValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGrabKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGrabKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XtGrabPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XtHasCallbacks.3.gz --rw-r--r-- root/root usr/share/man/man3/XtHooksOfDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInitializeWidgetClass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInsertEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInsertEventTypeHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInsertRawEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInstallAccelerators.3.gz --rw-r--r-- root/root usr/share/man/man3/XtInstallAllAccelerators.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsApplicationShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsComposite.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsConstraint.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsManaged.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsObject.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsOverrideShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsRealized.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsRectObj.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsSensitive.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsSessionShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsSubclass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsTopLevelShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsTransientShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsVendorShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsWMShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtIsWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtKeysymToKeycodeList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtLastEventProcessed.3.gz --rw-r--r-- root/root usr/share/man/man3/XtLastTimestampProcessed.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMainLoop.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMakeGeometryRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMakeResizeRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMalloc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtManageChild.3.gz --rw-r--r-- root/root usr/share/man/man3/XtManageChildren.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMapWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMergeArgLists.3.gz --rw-r--r-- root/root usr/share/man/man3/XtMoveWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtName.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNameToWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNew.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNewString.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNextEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNoticeSignal.3.gz --rw-r--r-- root/root usr/share/man/man3/XtNumber.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOffset.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOffsetOf.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOpenApplication.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOpenDisplay.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOverrideTranslations.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOwnSelection.3.gz --rw-r--r-- root/root usr/share/man/man3/XtOwnSelectionIncremental.3.gz --rw-r--r-- root/root usr/share/man/man3/XtParent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtParseAcceleratorTable.3.gz --rw-r--r-- root/root usr/share/man/man3/XtParseTranslationTable.3.gz --rw-r--r-- root/root usr/share/man/man3/XtPeekEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtPending.3.gz --rw-r--r-- root/root usr/share/man/man3/XtPopdown.3.gz --rw-r--r-- root/root usr/share/man/man3/XtPopup.3.gz --rw-r--r-- root/root usr/share/man/man3/XtPopupSpringLoaded.3.gz --rw-r--r-- root/root usr/share/man/man3/XtProcessEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XtProcessLock.3.gz --rw-r--r-- root/root usr/share/man/man3/XtProcessUnlock.3.gz --rw-r--r-- root/root usr/share/man/man3/XtQueryGeometry.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRealizeWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRealloc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRegisterCaseConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRegisterDrawable.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRegisterExtensionSelector.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRegisterGrabAction.3.gz --rw-r--r-- root/root usr/share/man/man3/XtReleaseGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XtReleasePropertyAtom.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveActionHook.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveAllCallbacks.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveBlockHook.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveCallback.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveCallbacks.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveEventTypeHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveGrab.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveInput.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveRawEventHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveSignal.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveTimeOut.3.gz --rw-r--r-- root/root usr/share/man/man3/XtRemoveWorkProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtReservePropertyAtom.3.gz --rw-r--r-- root/root usr/share/man/man3/XtResizeWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtResolvePathname.3.gz --rw-r--r-- root/root usr/share/man/man3/XtScreen.3.gz --rw-r--r-- root/root usr/share/man/man3/XtScreenDatabase.3.gz --rw-r--r-- root/root usr/share/man/man3/XtScreenOfObject.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSendSelectionRequest.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSessionGetToken.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSessionReturnToken.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetArg.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetErrorHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetErrorMsgHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetEventDispatcher.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetKeyTranslator.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetKeyboardFocus.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetLanguageProc.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetMappedWhenManaged.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetMultiClickTime.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetSelectionParameters.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetSelectionTimeout.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetSensitive.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetSubvalues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetTypeConverter.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetWMColormapWindows.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetWarningHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSetWarningMsgHandler.3.gz --rw-r--r-- root/root usr/share/man/man3/XtStringConversionWarning.3.gz --rw-r--r-- root/root usr/share/man/man3/XtSuperclass.3.gz --rw-r--r-- root/root usr/share/man/man3/XtToolkitInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtToolkitThreadInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtTranslateCoords.3.gz --rw-r--r-- root/root usr/share/man/man3/XtTranslateKeycode.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUngrabButton.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUngrabKey.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUngrabKeyboard.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUngrabPointer.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUninstallTranslations.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUnmanageChild.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUnmanageChildren.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUnmapWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUnrealizeWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtUnregisterDrawable.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaAppCreateShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaAppInitialize.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaCreateArgsList.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaCreateManagedWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaCreatePopupShell.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaCreateWidget.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaGetApplicationResources.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaGetSubresources.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaGetSubvalues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaGetValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaOpenApplication.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaSetSubvalues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtVaSetValues.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWarning.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWarningMsg.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWidgetToApplicationContext.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWindowOfObject.3.gz --rw-r--r-- root/root usr/share/man/man3/XtWindowToWidget.3.gz diff --git a/repos/xorg/libxt/abuild b/repos/xorg/libxt/abuild deleted file mode 100644 index 99f6b6e4..00000000 --- a/repos/xorg/libxt/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=libxt -version=1.3.1 -release=1 -source="https://www.x.org/pub/individual/lib/libXt-$version.tar.xz" -#build_opt="--with-appdefaultdir=/etc/X11/app-defaults" diff --git a/repos/xorg/libxt/depends b/repos/xorg/libxt/depends deleted file mode 100644 index 53b0894d..00000000 --- a/repos/xorg/libxt/depends +++ /dev/null @@ -1,2 +0,0 @@ -libsm -libx11 diff --git a/repos/xorg/libxtst/.checksum b/repos/xorg/libxtst/.checksum deleted file mode 100644 index ef016e7e..00000000 --- a/repos/xorg/libxtst/.checksum +++ /dev/null @@ -1 +0,0 @@ -14daad01275697ffcacba237a3f1cf60cddfd0e5cfb25053c7a43fb282bf604c libXtst-1.2.5.tar.xz diff --git a/repos/xorg/libxtst/.files b/repos/xorg/libxtst/.files deleted file mode 100644 index 3845f436..00000000 --- a/repos/xorg/libxtst/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/XTest.h --rw-r--r-- root/root usr/include/X11/extensions/record.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXtst.so -> libXtst.so.6.1.0 -lrwxrwxrwx root/root usr/lib/libXtst.so.6 -> libXtst.so.6.1.0 --rwxr-xr-x root/root usr/lib/libXtst.so.6.1.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xtst.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XTestCompareCurrentCursorWithWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestCompareCursorWithWindow.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestDiscard.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestFakeButtonEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestFakeKeyEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestFakeMotionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestFakeRelativeMotionEvent.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestGrabControl.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestSetGContextOfGC.3.gz --rw-r--r-- root/root usr/share/man/man3/XTestSetVisualIDOfVisual.3.gz diff --git a/repos/xorg/libxtst/abuild b/repos/xorg/libxtst/abuild deleted file mode 100644 index 5a794265..00000000 --- a/repos/xorg/libxtst/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxtst -version=1.2.5 -release=1 -source="https://www.x.org/pub/individual/lib/libXtst-$version.tar.xz" diff --git a/repos/xorg/libxtst/depends b/repos/xorg/libxtst/depends deleted file mode 100644 index fe8ea518..00000000 --- a/repos/xorg/libxtst/depends +++ /dev/null @@ -1 +0,0 @@ -libxi diff --git a/repos/xorg/libxtst/depends2 b/repos/xorg/libxtst/depends2 deleted file mode 100644 index 03343f53..00000000 --- a/repos/xorg/libxtst/depends2 +++ /dev/null @@ -1,4 +0,0 @@ -libx11 -libxext -libxi -util-macros diff --git a/repos/xorg/libxxf86vm/.checksum b/repos/xorg/libxxf86vm/.checksum deleted file mode 100644 index 4fb367a6..00000000 --- a/repos/xorg/libxxf86vm/.checksum +++ /dev/null @@ -1 +0,0 @@ -cd99c05a03e81f8579a56272debd554b2a44c2ac8211f0170a39be86e03221bb libXxf86vm-1.1.6.tar.xz diff --git a/repos/xorg/libxxf86vm/.files b/repos/xorg/libxxf86vm/.files deleted file mode 100644 index d52354f8..00000000 --- a/repos/xorg/libxxf86vm/.files +++ /dev/null @@ -1,37 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/xf86vmode.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libXxf86vm.so -> libXxf86vm.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libXxf86vm.so.1 -> libXxf86vm.so.1.0.0 --rwxr-xr-x root/root usr/lib/libXxf86vm.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xxf86vm.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/XF86VM.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeAddModeLine.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeDeleteModeLine.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetAllModeLines.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetDotClocks.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetGamma.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetGammaRamp.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetGammaRampSize.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetModeLine.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetMonitor.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetPermissions.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeGetViewPort.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeLockModeSwitch.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeModModeLine.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeQueryExtension.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeQueryVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSetClientVersion.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSetGamma.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSetGammaRamp.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSetViewPort.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSwitchMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeSwitchToMode.3.gz --rw-r--r-- root/root usr/share/man/man3/XF86VidModeValidateModeLine.3.gz diff --git a/repos/xorg/libxxf86vm/abuild b/repos/xorg/libxxf86vm/abuild deleted file mode 100755 index 356f49aa..00000000 --- a/repos/xorg/libxxf86vm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=libxxf86vm -version=1.1.6 -release=1 -source="https://www.x.org/pub/individual/lib/libXxf86vm-$version.tar.xz" diff --git a/repos/xorg/libxxf86vm/depends b/repos/xorg/libxxf86vm/depends deleted file mode 100755 index 86f32413..00000000 --- a/repos/xorg/libxxf86vm/depends +++ /dev/null @@ -1 +0,0 @@ -libxext diff --git a/repos/xorg/lxappearance/.checksum b/repos/xorg/lxappearance/.checksum deleted file mode 100644 index 0d17fd60..00000000 --- a/repos/xorg/lxappearance/.checksum +++ /dev/null @@ -1 +0,0 @@ -afd2b5732c0fc5f9e077bafef0803a852b50c414b79b6eaec49092f763066470 lxappearance-0.6.3.tar.xz diff --git a/repos/xorg/lxappearance/.files b/repos/xorg/lxappearance/.files deleted file mode 100644 index 41ae388c..00000000 --- a/repos/xorg/lxappearance/.files +++ /dev/null @@ -1,19 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/lxappearance -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/lxappearance/ --rw-r--r-- root/root usr/include/lxappearance/lxappearance.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/lxappearance.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/lxappearance.desktop -drwxr-xr-x root/root usr/share/lxappearance/ -drwxr-xr-x root/root usr/share/lxappearance/ui/ --rw-r--r-- root/root usr/share/lxappearance/ui/about.ui --rw-r--r-- root/root usr/share/lxappearance/ui/lxappearance.ui -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/lxappearance.1.gz diff --git a/repos/xorg/lxappearance/abuild b/repos/xorg/lxappearance/abuild deleted file mode 100644 index 2400c019..00000000 --- a/repos/xorg/lxappearance/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=lxappearance -version=0.6.3 -release=1 -source="https://downloads.sourceforge.net/lxde/$name-$version.tar.xz" -build_opt="--enable-gtk3" diff --git a/repos/xorg/lxappearance/depends b/repos/xorg/lxappearance/depends deleted file mode 100644 index 768be442..00000000 --- a/repos/xorg/lxappearance/depends +++ /dev/null @@ -1,2 +0,0 @@ -intltool -gtk3 diff --git a/repos/xorg/lxmenu-data/.checksum b/repos/xorg/lxmenu-data/.checksum deleted file mode 100644 index 6b7e7232..00000000 --- a/repos/xorg/lxmenu-data/.checksum +++ /dev/null @@ -1 +0,0 @@ -76968df533983a361aeb2018db688f6340fdb7354d94276b734e1c9af557ff03 lxmenu-data-0.1.6.tar.gz diff --git a/repos/xorg/lxmenu-data/.files b/repos/xorg/lxmenu-data/.files deleted file mode 100644 index f51acf77..00000000 --- a/repos/xorg/lxmenu-data/.files +++ /dev/null @@ -1,21 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/menus/ --rw-r--r-- root/root etc/xdg/menus/lxde-applications.menu.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/desktop-directories/ --rw-r--r-- root/root usr/share/desktop-directories/lxde-audio-video.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-development.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-education.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-game.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-graphics.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-menu-applications.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-network.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-office.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-other.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-science.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-settings.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-system.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-utility-accessibility.directory --rw-r--r-- root/root usr/share/desktop-directories/lxde-utility.directory diff --git a/repos/xorg/lxmenu-data/abuild b/repos/xorg/lxmenu-data/abuild deleted file mode 100644 index 72fd1ffe..00000000 --- a/repos/xorg/lxmenu-data/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=lxmenu-data -version=0.1.6 -release=1 -source="https://github.com/lxde/${name}/archive/${version}/${name}-${version}.tar.gz" - -prebuild() { - autoreconf -fi -} diff --git a/repos/xorg/lxmenu-data/depends b/repos/xorg/lxmenu-data/depends deleted file mode 100644 index d195319c..00000000 --- a/repos/xorg/lxmenu-data/depends +++ /dev/null @@ -1,3 +0,0 @@ -glib -intltool -gettext-tiny diff --git a/repos/xorg/lxrandr/.checksum b/repos/xorg/lxrandr/.checksum deleted file mode 100644 index 5d30aa49..00000000 --- a/repos/xorg/lxrandr/.checksum +++ /dev/null @@ -1 +0,0 @@ -2526c5d3d643e50ed790695d1d4df7c54b0b8bc0dc93d9028c78823f2d383d3f lxrandr-0.3.2.tar.xz diff --git a/repos/xorg/lxrandr/.files b/repos/xorg/lxrandr/.files deleted file mode 100644 index 685fe09a..00000000 --- a/repos/xorg/lxrandr/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/lxrandr -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/lxrandr.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/lxrandr.1.gz diff --git a/repos/xorg/lxrandr/abuild b/repos/xorg/lxrandr/abuild deleted file mode 100644 index 5925d2a1..00000000 --- a/repos/xorg/lxrandr/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=lxrandr -version=0.3.2 -release=1 -source="https://downloads.sourceforge.net/lxde/$name-$version.tar.xz" -build_opt="--enable-gtk3" diff --git a/repos/xorg/lxrandr/depends b/repos/xorg/lxrandr/depends deleted file mode 100644 index 768be442..00000000 --- a/repos/xorg/lxrandr/depends +++ /dev/null @@ -1,2 +0,0 @@ -intltool -gtk3 diff --git a/repos/xorg/man-pages/.checksum b/repos/xorg/man-pages/.checksum deleted file mode 100644 index fab30b9d..00000000 --- a/repos/xorg/man-pages/.checksum +++ /dev/null @@ -1 +0,0 @@ -9b15c4731063d8bf60e62b2e0d5316fc3ee371401cbe70645ff0215f7326ab7f man-pages-6.7.tar.xz diff --git a/repos/xorg/man-pages/.files b/repos/xorg/man-pages/.files deleted file mode 100644 index d0b814d8..00000000 --- a/repos/xorg/man-pages/.files +++ /dev/null @@ -1,2578 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/getent.1.gz --rw-r--r-- root/root usr/share/man/man1/iconv.1.gz --rw-r--r-- root/root usr/share/man/man1/intro.1.gz --rw-r--r-- root/root usr/share/man/man1/ldd.1.gz --rw-r--r-- root/root usr/share/man/man1/locale.1.gz --rw-r--r-- root/root usr/share/man/man1/localedef.1.gz --rw-r--r-- root/root usr/share/man/man1/memusage.1.gz --rw-r--r-- root/root usr/share/man/man1/memusagestat.1.gz --rw-r--r-- root/root usr/share/man/man1/mtrace.1.gz --rw-r--r-- root/root usr/share/man/man1/pldd.1.gz --rw-r--r-- root/root usr/share/man/man1/sprof.1.gz --rw-r--r-- root/root usr/share/man/man1/time.1.gz -drwxr-xr-x root/root usr/share/man/man2/ --rw-r--r-- root/root usr/share/man/man2/_Exit.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/__clone2.2.gz --rw-r--r-- root/root usr/share/man/man2/_exit.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/_llseek.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/_newselect.2.gz --rw-r--r-- root/root usr/share/man/man2/_syscall.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/_sysctl.2.gz --rw-r--r-- root/root usr/share/man/man2/accept.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/accept4.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/access.2.gz --rw-r--r-- root/root usr/share/man/man2/acct.2.gz --rw-r--r-- root/root usr/share/man/man2/add_key.2.gz --rw-r--r-- root/root usr/share/man/man2/adjtimex.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/afs_syscall.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/alarm.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/alloc_hugepages.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/arch_prctl.2.gz --rw-r--r-- root/root usr/share/man/man2/arm_fadvise.2.gz --rw-r--r-- root/root usr/share/man/man2/arm_fadvise64_64.2.gz --rw-r--r-- root/root usr/share/man/man2/arm_sync_file_range.2.gz --rw-r--r-- root/root usr/share/man/man2/bdflush.2.gz --rw-r--r-- root/root usr/share/man/man2/bind.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/bpf.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/break.2.gz --rw-r--r-- root/root usr/share/man/man2/brk.2.gz --rw-r--r-- root/root usr/share/man/man2/cacheflush.2.gz --rw-r--r-- root/root usr/share/man/man2/capget.2.gz --rw-r--r-- root/root usr/share/man/man2/capset.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/chdir.2.gz --rw-r--r-- root/root usr/share/man/man2/chmod.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/chown.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/chown32.2.gz --rw-r--r-- root/root usr/share/man/man2/chroot.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/clock_adjtime.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/clock_getres.2.gz --rw-r--r-- root/root usr/share/man/man2/clock_gettime.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/clock_nanosleep.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/clock_settime.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/clone.2.gz --rw-r--r-- root/root usr/share/man/man2/clone2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/clone3.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/close.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/close_range.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/connect.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/copy_file_range.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/creat.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/create_module.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/delete_module.2.gz --rw-r--r-- root/root usr/share/man/man2/dup.2.gz --rw-r--r-- root/root usr/share/man/man2/dup2.2.gz --rw-r--r-- root/root usr/share/man/man2/dup3.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/epoll_create.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/epoll_create1.2.gz --rw-r--r-- root/root usr/share/man/man2/epoll_ctl.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/epoll_pwait.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/epoll_pwait2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/epoll_wait.2.gz --rw-r--r-- root/root usr/share/man/man2/eventfd.2.gz --rw-r--r-- root/root usr/share/man/man2/eventfd2.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/execve.2.gz --rw-r--r-- root/root usr/share/man/man2/execveat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/exit.2.gz --rw-r--r-- root/root usr/share/man/man2/exit_group.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/faccessat.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/faccessat2.2.gz --rw-r--r-- root/root usr/share/man/man2/fadvise64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fadvise64_64.2.gz --rw-r--r-- root/root usr/share/man/man2/fallocate.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fanotify_init.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fanotify_mark.2.gz --rw-r--r-- root/root usr/share/man/man2/fattach.2.gz --rw-r--r-- root/root usr/share/man/man2/fchdir.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fchmod.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fchmodat.2.gz --rw-r--r-- root/root usr/share/man/man2/fchown.2.gz --rw-r--r-- root/root usr/share/man/man2/fchown32.2.gz --rw-r--r-- root/root usr/share/man/man2/fchownat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fcntl.2.gz --rw-r--r-- root/root usr/share/man/man2/fcntl64.2.gz --rw-r--r-- root/root usr/share/man/man2/fdatasync.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fdetach.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fgetxattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/finit_module.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/flistxattr.2.gz --rw-r--r-- root/root usr/share/man/man2/flock.2.gz --rw-r--r-- root/root usr/share/man/man2/fork.2.gz --rw-r--r-- root/root usr/share/man/man2/free_hugepages.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/fremovexattr.2.gz --rw-r--r-- root/root usr/share/man/man2/fsetxattr.2.gz --rw-r--r-- root/root usr/share/man/man2/fstat.2.gz --rw-r--r-- root/root usr/share/man/man2/fstat64.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/fstatat.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/fstatat64.2.gz --rw-r--r-- root/root usr/share/man/man2/fstatfs.2.gz --rw-r--r-- root/root usr/share/man/man2/fstatfs64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/fsync.2.gz --rw-r--r-- root/root usr/share/man/man2/ftruncate.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ftruncate64.2.gz --rw-r--r-- root/root usr/share/man/man2/futex.2.gz --rw-r--r-- root/root usr/share/man/man2/futimesat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/get_kernel_syms.2.gz --rw-r--r-- root/root usr/share/man/man2/get_mempolicy.2.gz --rw-r--r-- root/root usr/share/man/man2/get_robust_list.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/get_thread_area.2.gz --rw-r--r-- root/root usr/share/man/man2/getcpu.2.gz --rw-r--r-- root/root usr/share/man/man2/getcwd.2.gz --rw-r--r-- root/root usr/share/man/man2/getdents.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getdents64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getdomainname.2.gz --rw-r--r-- root/root usr/share/man/man2/getegid.2.gz --rw-r--r-- root/root usr/share/man/man2/getegid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/geteuid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/geteuid32.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/getgid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getgid32.2.gz --rw-r--r-- root/root usr/share/man/man2/getgroups.2.gz --rw-r--r-- root/root usr/share/man/man2/getgroups32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/gethostname.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getitimer.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/getmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/getpagesize.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/getpeername.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getpgid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getpgrp.2.gz --rw-r--r-- root/root usr/share/man/man2/getpid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getpmsg.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getppid.2.gz --rw-r--r-- root/root usr/share/man/man2/getpriority.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/getrandom.2.gz --rw-r--r-- root/root usr/share/man/man2/getresgid.2.gz --rw-r--r-- root/root usr/share/man/man2/getresgid32.2.gz --rw-r--r-- root/root usr/share/man/man2/getresuid.2.gz --rw-r--r-- root/root usr/share/man/man2/getresuid32.2.gz --rw-r--r-- root/root usr/share/man/man2/getrlimit.2.gz --rw-r--r-- root/root usr/share/man/man2/getrusage.2.gz --rw-r--r-- root/root usr/share/man/man2/getsid.2.gz --rw-r--r-- root/root usr/share/man/man2/getsockname.2.gz --rw-r--r-- root/root usr/share/man/man2/getsockopt.2.gz --rw-r--r-- root/root usr/share/man/man2/gettid.2.gz --rw-r--r-- root/root usr/share/man/man2/gettimeofday.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getuid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getuid32.2.gz --rw-r--r-- root/root usr/share/man/man2/getunwind.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/getxattr.2.gz --rw-r--r-- root/root usr/share/man/man2/gtty.2.gz --rw-r--r-- root/root usr/share/man/man2/idle.2.gz --rw-r--r-- root/root usr/share/man/man2/inb.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/inb_p.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/init_module.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/inl.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/inl_p.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/inotify_add_watch.2.gz --rw-r--r-- root/root usr/share/man/man2/inotify_init.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/inotify_init1.2.gz --rw-r--r-- root/root usr/share/man/man2/inotify_rm_watch.2.gz --rw-r--r-- root/root usr/share/man/man2/insb.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/insl.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/insw.2.gz --rw-r--r-- root/root usr/share/man/man2/intro.2.gz --rw-r--r-- root/root usr/share/man/man2/inw.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/inw_p.2.gz --rw-r--r-- root/root usr/share/man/man2/io_cancel.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/io_destroy.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/io_getevents.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/io_setup.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/io_submit.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_console.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_fat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_ficlone.2.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_ficlonerange.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_fideduperange.2.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_fslabel.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_getfsmap.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_iflags.2.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_ns.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_pagemap_scan.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_pipe.2.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_tty.2.gz --rw-r--r-- root/root usr/share/man/man2/ioctl_userfaultfd.2.gz --rw-r--r-- root/root usr/share/man/man2/ioperm.2.gz --rw-r--r-- root/root usr/share/man/man2/iopl.2.gz --rw-r--r-- root/root usr/share/man/man2/ioprio_get.2.gz --rw-r--r-- root/root usr/share/man/man2/ioprio_set.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ipc.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/isastream.2.gz --rw-r--r-- root/root usr/share/man/man2/kcmp.2.gz --rw-r--r-- root/root usr/share/man/man2/kexec_file_load.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/kexec_load.2.gz --rw-r--r-- root/root usr/share/man/man2/keyctl.2.gz --rw-r--r-- root/root usr/share/man/man2/kill.2.gz --rw-r--r-- root/root usr/share/man/man2/landlock_add_rule.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/landlock_create_ruleset.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/landlock_restrict_self.2.gz --rw-r--r-- root/root usr/share/man/man2/lchown.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/lchown32.2.gz --rw-r--r-- root/root usr/share/man/man2/lgetxattr.2.gz --rw-r--r-- root/root usr/share/man/man2/link.2.gz --rw-r--r-- root/root usr/share/man/man2/linkat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/listen.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/listxattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/llistxattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/llseek.2.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/lock.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/lookup_dcookie.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/lremovexattr.2.gz --rw-r--r-- root/root usr/share/man/man2/lseek.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/lsetxattr.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/lstat.2.gz --rw-r--r-- root/root usr/share/man/man2/lstat64.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/madvise.2.gz --rw-r--r-- root/root usr/share/man/man2/madvise1.2.gz --rw-r--r-- root/root usr/share/man/man2/mbind.2.gz --rw-r--r-- root/root usr/share/man/man2/membarrier.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/memfd_create.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/memfd_secret.2.gz --rw-r--r-- root/root usr/share/man/man2/migrate_pages.2.gz --rw-r--r-- root/root usr/share/man/man2/mincore.2.gz --rw-r--r-- root/root usr/share/man/man2/mkdir.2.gz --rw-r--r-- root/root usr/share/man/man2/mkdirat.2.gz --rw-r--r-- root/root usr/share/man/man2/mknod.2.gz --rw-r--r-- root/root usr/share/man/man2/mknodat.2.gz --rw-r--r-- root/root usr/share/man/man2/mlock.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/mlock2.2.gz --rw-r--r-- root/root usr/share/man/man2/mlockall.2.gz --rw-r--r-- root/root usr/share/man/man2/mmap.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/mmap2.2.gz --rw-r--r-- root/root usr/share/man/man2/modify_ldt.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/mount.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/mount_setattr.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/move_pages.2.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/mprotect.2.gz --rw-r--r-- root/root usr/share/man/man2/mpx.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/mq_getsetattr.2.gz --rw-r--r-- root/root usr/share/man/man2/mq_notify.2.gz --rw-r--r-- root/root usr/share/man/man2/mq_open.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/mq_timedreceive.2.gz --rw-r--r-- root/root usr/share/man/man2/mq_timedsend.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/mq_unlink.2.gz --rw-r--r-- root/root usr/share/man/man2/mremap.2.gz --rw-r--r-- root/root usr/share/man/man2/msgctl.2.gz --rw-r--r-- root/root usr/share/man/man2/msgget.2.gz --rw-r--r-- root/root usr/share/man/man2/msgop.2.gz --rw-r--r-- root/root usr/share/man/man2/msgrcv.2.gz --rw-r--r-- root/root usr/share/man/man2/msgsnd.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/msync.2.gz --rw-r--r-- root/root usr/share/man/man2/munlock.2.gz --rw-r--r-- root/root usr/share/man/man2/munlockall.2.gz --rw-r--r-- root/root usr/share/man/man2/munmap.2.gz --rw-r--r-- root/root usr/share/man/man2/name_to_handle_at.2.gz --rw-r--r-- root/root usr/share/man/man2/nanosleep.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/newfstatat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/nfsservctl.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/nice.2.gz --rw-r--r-- root/root usr/share/man/man2/oldfstat.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/oldlstat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/oldolduname.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/oldstat.2.gz --rw-r--r-- root/root usr/share/man/man2/olduname.2.gz --rw-r--r-- root/root usr/share/man/man2/open.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/open_by_handle_at.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/openat.2.gz --rw-r--r-- root/root usr/share/man/man2/openat2.2.gz --rw-r--r-- root/root usr/share/man/man2/outb.2.gz --rw-r--r-- root/root usr/share/man/man2/outb_p.2.gz --rw-r--r-- root/root usr/share/man/man2/outl.2.gz --rw-r--r-- root/root usr/share/man/man2/outl_p.2.gz --rw-r--r-- root/root usr/share/man/man2/outsb.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/outsl.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/outsw.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/outw.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/outw_p.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pause.2.gz --rw-r--r-- root/root usr/share/man/man2/pciconfig_iobase.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/pciconfig_read.2.gz --rw-r--r-- root/root usr/share/man/man2/pciconfig_write.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/perf_event_open.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/perfmonctl.2.gz --rw-r--r-- root/root usr/share/man/man2/personality.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/phys.2.gz --rw-r--r-- root/root usr/share/man/man2/pidfd_getfd.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pidfd_open.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pidfd_send_signal.2.gz --rw-r--r-- root/root usr/share/man/man2/pipe.2.gz --rw-r--r-- root/root usr/share/man/man2/pipe2.2.gz --rw-r--r-- root/root usr/share/man/man2/pivot_root.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pkey_alloc.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/pkey_free.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/pkey_mprotect.2.gz --rw-r--r-- root/root usr/share/man/man2/poll.2.gz --rw-r--r-- root/root usr/share/man/man2/posix_fadvise.2.gz --rw-r--r-- root/root usr/share/man/man2/ppoll.2.gz --rw-r--r-- root/root usr/share/man/man2/prctl.2.gz --rw-r--r-- root/root usr/share/man/man2/pread.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pread64.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/preadv.2.gz --rw-r--r-- root/root usr/share/man/man2/preadv2.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/prlimit.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/prlimit64.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/process_madvise.2.gz --rw-r--r-- root/root usr/share/man/man2/process_vm_readv.2.gz --rw-r--r-- root/root usr/share/man/man2/process_vm_writev.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/prof.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pselect.2.gz --rw-r--r-- root/root usr/share/man/man2/pselect6.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/ptrace.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/putmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/putpmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/pwrite.2.gz --rw-r--r-- root/root usr/share/man/man2/pwrite64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/pwritev.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/pwritev2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/query_module.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/quotactl.2.gz --rw-r--r-- root/root usr/share/man/man2/read.2.gz --rw-r--r-- root/root usr/share/man/man2/readahead.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/readdir.2.gz --rw-r--r-- root/root usr/share/man/man2/readlink.2.gz --rw-r--r-- root/root usr/share/man/man2/readlinkat.2.gz --rw-r--r-- root/root usr/share/man/man2/readv.2.gz --rw-r--r-- root/root usr/share/man/man2/reboot.2.gz --rw-r--r-- root/root usr/share/man/man2/recv.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/recvfrom.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/recvmmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/recvmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/remap_file_pages.2.gz --rw-r--r-- root/root usr/share/man/man2/removexattr.2.gz --rw-r--r-- root/root usr/share/man/man2/rename.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/renameat.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/renameat2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/request_key.2.gz --rw-r--r-- root/root usr/share/man/man2/restart_syscall.2.gz --rw-r--r-- root/root usr/share/man/man2/rmdir.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigaction.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigpending.2.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigprocmask.2.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigqueueinfo.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigreturn.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigsuspend.2.gz --rw-r--r-- root/root usr/share/man/man2/rt_sigtimedwait.2.gz --rw-r--r-- root/root usr/share/man/man2/rt_tgsigqueueinfo.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/s390_guarded_storage.2.gz --rw-r--r-- root/root usr/share/man/man2/s390_pci_mmio_read.2.gz --rw-r--r-- root/root usr/share/man/man2/s390_pci_mmio_write.2.gz --rw-r--r-- root/root usr/share/man/man2/s390_runtime_instr.2.gz --rw-r--r-- root/root usr/share/man/man2/s390_sthyi.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/sbrk.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_get_priority_max.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_get_priority_min.2.gz --rw-r--r-- root/root usr/share/man/man2/sched_getaffinity.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_getattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_getparam.2.gz --rw-r--r-- root/root usr/share/man/man2/sched_getscheduler.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_rr_get_interval.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_setaffinity.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_setattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_setparam.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/sched_setscheduler.2.gz --rw-r--r-- root/root usr/share/man/man2/sched_yield.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/seccomp.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/seccomp_unotify.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/security.2.gz --rw-r--r-- root/root usr/share/man/man2/select.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/select_tut.2.gz --rw-r--r-- root/root usr/share/man/man2/semctl.2.gz --rw-r--r-- root/root usr/share/man/man2/semget.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/semop.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/semtimedop.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/send.2.gz --rw-r--r-- root/root usr/share/man/man2/sendfile.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sendfile64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sendmmsg.2.gz --rw-r--r-- root/root usr/share/man/man2/sendmsg.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sendto.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/set_mempolicy.2.gz --rw-r--r-- root/root usr/share/man/man2/set_robust_list.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/set_thread_area.2.gz --rw-r--r-- root/root usr/share/man/man2/set_tid_address.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setdomainname.2.gz --rw-r--r-- root/root usr/share/man/man2/setegid.2.gz --rw-r--r-- root/root usr/share/man/man2/seteuid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setfsgid.2.gz --rw-r--r-- root/root usr/share/man/man2/setfsgid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setfsuid.2.gz --rw-r--r-- root/root usr/share/man/man2/setfsuid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setgid.2.gz --rw-r--r-- root/root usr/share/man/man2/setgid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setgroups.2.gz --rw-r--r-- root/root usr/share/man/man2/setgroups32.2.gz --rw-r--r-- root/root usr/share/man/man2/sethostname.2.gz --rw-r--r-- root/root usr/share/man/man2/setitimer.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/setns.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setpgid.2.gz --rw-r--r-- root/root usr/share/man/man2/setpgrp.2.gz --rw-r--r-- root/root usr/share/man/man2/setpriority.2.gz --rw-r--r-- root/root usr/share/man/man2/setregid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setregid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setresgid.2.gz --rw-r--r-- root/root usr/share/man/man2/setresgid32.2.gz --rw-r--r-- root/root usr/share/man/man2/setresuid.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/setresuid32.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/setreuid.2.gz --rw-r--r-- root/root usr/share/man/man2/setreuid32.2.gz --rw-r--r-- root/root usr/share/man/man2/setrlimit.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setsid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setsockopt.2.gz --rw-r--r-- root/root usr/share/man/man2/settimeofday.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setuid.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setuid32.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setup.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/setxattr.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sgetmask.2.gz --rw-r--r-- root/root usr/share/man/man2/shmat.2.gz --rw-r--r-- root/root usr/share/man/man2/shmctl.2.gz --rw-r--r-- root/root usr/share/man/man2/shmdt.2.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/shmget.2.gz --rw-r--r-- root/root usr/share/man/man2/shmop.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/shutdown.2.gz --rw-r--r-- root/root usr/share/man/man2/sigaction.2.gz --rw-r--r-- root/root usr/share/man/man2/sigaltstack.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/signal.2.gz --rw-r--r-- root/root usr/share/man/man2/signalfd.2.gz --rw-r--r-- root/root usr/share/man/man2/signalfd4.2.gz --rw-r--r-- root/root usr/share/man/man2/sigpending.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sigprocmask.2.gz --rw-r--r-- root/root usr/share/man/man2/sigreturn.2.gz --rw-r--r-- root/root usr/share/man/man2/sigsuspend.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sigtimedwait.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sigwaitinfo.2.gz --rw-r--r-- root/root usr/share/man/man2/socket.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/socketcall.2.gz --rw-r--r-- root/root usr/share/man/man2/socketpair.2.gz --rw-r--r-- root/root usr/share/man/man2/splice.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/spu_create.2.gz --rw-r--r-- root/root usr/share/man/man2/spu_run.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ssetmask.2.gz --rw-r--r-- root/root usr/share/man/man2/stat.2.gz --rw-r--r-- root/root usr/share/man/man2/stat64.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/statfs.2.gz --rw-r--r-- root/root usr/share/man/man2/statfs64.2.gz --rw-r--r-- root/root usr/share/man/man2/statx.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/stime.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/stty.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/subpage_prot.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/swapoff.2.gz --rw-r--r-- root/root usr/share/man/man2/swapon.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/symlink.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/symlinkat.2.gz --rw-r--r-- root/root usr/share/man/man2/sync.2.gz --rw-r--r-- root/root usr/share/man/man2/sync_file_range.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/sync_file_range2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/syncfs.2.gz --rw-r--r-- root/root usr/share/man/man2/syscall.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/syscalls.2.gz --rw-r--r-- root/root usr/share/man/man2/sysctl.2.gz --rw-r--r-- root/root usr/share/man/man2/sysfs.2.gz --rw-r--r-- root/root usr/share/man/man2/sysinfo.2.gz --rw-r--r-- root/root usr/share/man/man2/syslog.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/tee.2.gz --rw-r--r-- root/root usr/share/man/man2/tgkill.2.gz --rw-r--r-- root/root usr/share/man/man2/time.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/timer_create.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/timer_delete.2.gz --rw-r--r-- root/root usr/share/man/man2/timer_getoverrun.2.gz --rw-r--r-- root/root usr/share/man/man2/timer_gettime.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/timer_settime.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/timerfd_create.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/timerfd_gettime.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/timerfd_settime.2.gz --rw-r--r-- root/root usr/share/man/man2/times.2.gz --rw-r--r-- root/root usr/share/man/man2/tkill.2.gz --rw-r--r-- root/root usr/share/man/man2/truncate.2.gz --rw-r--r-- root/root usr/share/man/man2/truncate64.2.gz --rw-r--r-- root/root usr/share/man/man2/tuxcall.2.gz --rw-r--r-- root/root usr/share/man/man2/ugetrlimit.2.gz --rw-r--r-- root/root usr/share/man/man2/umask.2.gz --rw-r--r-- root/root usr/share/man/man2/umount.2.gz --rw-r--r-- root/root usr/share/man/man2/umount2.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/uname.2.gz --rw-r--r-- root/root usr/share/man/man2/unimplemented.2.gz --rw-r--r-- root/root usr/share/man/man2/unlink.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/unlinkat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/unshare.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/uselib.2.gz --rw-r--r-- root/root usr/share/man/man2/userfaultfd.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/ustat.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/utime.2.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/utimensat.2.gz --rw-r--r-- root/root usr/share/man/man2/utimes.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/vfork.2.gz --rw-r--r-- root/root usr/share/man/man2/vhangup.2.gz --rw-r--r-- root/root usr/share/man/man2/vm86.2.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man2/vm86old.2.gz --rw-r--r-- root/root usr/share/man/man2/vmsplice.2.gz --rw-r--r-- root/root usr/share/man/man2/vserver.2.gz --rw-r--r-- root/root usr/share/man/man2/wait.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/wait3.2.gz.gz --rw-r--r-- root/root usr/share/man/man2/wait4.2.gz --rw-r--r-- root/root usr/share/man/man2/waitid.2.gz --rw-r--r-- root/root usr/share/man/man2/waitpid.2.gz --rw-r--r-- root/root usr/share/man/man2/write.2.gz --rw-r--r-- root/root usr/share/man/man2/writev.2.gz -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_EMPTY.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_ENTRY.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_FIRST.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_FOREACH.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_FOREACH_REVERSE.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_HEAD_INITIALIZER.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_INIT.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_INSERT_AFTER.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_INSERT_BEFORE.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_INSERT_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_INSERT_TAIL.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_LAST.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_LOOP_NEXT.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_LOOP_PREV.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_NEXT.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_PREV.3.gz --rw-r--r-- root/root usr/share/man/man3/CIRCLEQ_REMOVE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_ALIGN.3.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_DATA.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_FIRSTHDR.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_LEN.3.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_NXTHDR.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CMSG_SPACE.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ALLOC.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ALLOC_SIZE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_AND.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_AND_S.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_CLR.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_CLR_S.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_COUNT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_COUNT_S.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_EQUAL.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_EQUAL_S.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_FREE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ISSET.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ISSET_S.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_OR.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_OR_S.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_SET.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_SET_S.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_XOR.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_XOR_S.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ZERO.3.gz --rw-r--r-- root/root usr/share/man/man3/CPU_ZERO_S.3.gz --rw-r--r-- root/root usr/share/man/man3/DES_FAILED.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/FD_CLR.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/FD_ISSET.3.gz --rw-r--r-- root/root usr/share/man/man3/FD_SET.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/FD_ZERO.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/HUGE_VAL.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/HUGE_VALF.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/HUGE_VALL.3.gz --rw-r--r-- root/root usr/share/man/man3/INFINITY.3.gz --rw-r--r-- root/root usr/share/man/man3/LIST_EMPTY.3.gz --rw-r--r-- root/root usr/share/man/man3/LIST_ENTRY.3.gz --rw-r--r-- root/root usr/share/man/man3/LIST_FIRST.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_FOREACH.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_HEAD_INITIALIZER.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_INIT.3.gz --rw-r--r-- root/root usr/share/man/man3/LIST_INSERT_AFTER.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_INSERT_BEFORE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_INSERT_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/LIST_NEXT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/LIST_REMOVE.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/MAX.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/MB_CUR_MAX.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/MB_LEN_MAX.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/MIN.3.gz --rw-r--r-- root/root usr/share/man/man3/NAN.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_EMPTY.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_ENTRY.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_FIRST.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_FOREACH.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_HEAD_INITIALIZER.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_INIT.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_INSERT_AFTER.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_INSERT_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_INSERT_TAIL.3.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_NEXT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_REMOVE.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/SIMPLEQ_REMOVE_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_EMPTY.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_ENTRY.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_FIRST.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_FOREACH.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_HEAD_INITIALIZER.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_INIT.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_INSERT_AFTER.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_INSERT_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_NEXT.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_REMOVE.3.gz --rw-r--r-- root/root usr/share/man/man3/SLIST_REMOVE_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_CONCAT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_EMPTY.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_ENTRY.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_FIRST.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_FOREACH.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_HEAD_INITIALIZER.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_INIT.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_INSERT_AFTER.3.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_INSERT_HEAD.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_INSERT_TAIL.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_NEXT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_REMOVE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/STAILQ_REMOVE_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_CONCAT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_EMPTY.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_ENTRY.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_FIRST.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_FOREACH.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_FOREACH_REVERSE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_HEAD.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_HEAD_INITIALIZER.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_INIT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_INSERT_AFTER.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_INSERT_BEFORE.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_INSERT_HEAD.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_INSERT_TAIL.3.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_LAST.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_NEXT.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_PREV.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_REMOVE.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/TAILQ_SWAP.3.gz --rw-r--r-- root/root usr/share/man/man3/TIMESPEC_TO_TIMEVAL.3.gz --rw-r--r-- root/root usr/share/man/man3/TIMEVAL_TO_TIMESPEC.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/_Generic.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/_Static_assert.3.gz --rw-r--r-- root/root usr/share/man/man3/__after_morecore_hook.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__fbufsize.3.gz --rw-r--r-- root/root usr/share/man/man3/__flbf.3.gz --rw-r--r-- root/root usr/share/man/man3/__fpending.3.gz --rw-r--r-- root/root usr/share/man/man3/__fpurge.3.gz --rw-r--r-- root/root usr/share/man/man3/__freadable.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__freading.3.gz --rw-r--r-- root/root usr/share/man/man3/__free_hook.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__fsetlocking.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__fwritable.3.gz --rw-r--r-- root/root usr/share/man/man3/__fwriting.3.gz --rw-r--r-- root/root usr/share/man/man3/__malloc_hook.3.gz --rw-r--r-- root/root usr/share/man/man3/__malloc_initialize_hook.3.gz --rw-r--r-- root/root usr/share/man/man3/__memalign_hook.3.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_get_timebase.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_get_timebase_freq.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_mdoio.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_mdoom.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_set_ppr_low.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_set_ppr_med.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_set_ppr_med_high.3.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_set_ppr_med_low.3.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_set_ppr_very_low.3.gz --rw-r--r-- root/root usr/share/man/man3/__ppc_yield.3.gz --rw-r--r-- root/root usr/share/man/man3/__realloc_hook.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/__setfpucw.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/_flushlbf.3.gz --rw-r--r-- root/root usr/share/man/man3/a64l.3.gz --rw-r--r-- root/root usr/share/man/man3/abort.3.gz --rw-r--r-- root/root usr/share/man/man3/abs.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/acos.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/acosf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/acosh.3.gz --rw-r--r-- root/root usr/share/man/man3/acoshf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/acoshl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/acosl.3.gz --rw-r--r-- root/root usr/share/man/man3/addmntent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/addseverity.3.gz --rw-r--r-- root/root usr/share/man/man3/adjtime.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/aio_cancel.3.gz --rw-r--r-- root/root usr/share/man/man3/aio_error.3.gz --rw-r--r-- root/root usr/share/man/man3/aio_fsync.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/aio_init.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/aio_read.3.gz --rw-r--r-- root/root usr/share/man/man3/aio_return.3.gz --rw-r--r-- root/root usr/share/man/man3/aio_suspend.3.gz --rw-r--r-- root/root usr/share/man/man3/aio_write.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/aligned_alloc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/alloca.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/alphasort.3.gz --rw-r--r-- root/root usr/share/man/man3/arc4random.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/arc4random_buf.3.gz --rw-r--r-- root/root usr/share/man/man3/arc4random_uniform.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/argz.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_add.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/argz_add_sep.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_append.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_count.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_create.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_create_sep.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/argz_delete.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_extract.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_insert.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/argz_next.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/argz_replace.3.gz --rw-r--r-- root/root usr/share/man/man3/argz_stringify.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/asctime.3.gz --rw-r--r-- root/root usr/share/man/man3/asctime_r.3.gz --rw-r--r-- root/root usr/share/man/man3/asin.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/asinf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/asinh.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/asinhf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/asinhl.3.gz --rw-r--r-- root/root usr/share/man/man3/asinl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/asprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/assert.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/assert_perror.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/atan.3.gz --rw-r--r-- root/root usr/share/man/man3/atan2.3.gz --rw-r--r-- root/root usr/share/man/man3/atan2f.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/atan2l.3.gz --rw-r--r-- root/root usr/share/man/man3/atanf.3.gz --rw-r--r-- root/root usr/share/man/man3/atanh.3.gz --rw-r--r-- root/root usr/share/man/man3/atanhf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/atanhl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/atanl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/atexit.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/atof.3.gz --rw-r--r-- root/root usr/share/man/man3/atoi.3.gz --rw-r--r-- root/root usr/share/man/man3/atol.3.gz --rw-r--r-- root/root usr/share/man/man3/atoll.3.gz --rw-r--r-- root/root usr/share/man/man3/atoq.3.gz --rw-r--r-- root/root usr/share/man/man3/auth_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/authnone_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/authunix_create.3.gz --rw-r--r-- root/root usr/share/man/man3/authunix_create_default.3.gz --rw-r--r-- root/root usr/share/man/man3/backtrace.3.gz --rw-r--r-- root/root usr/share/man/man3/backtrace_symbols.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/backtrace_symbols_fd.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/basename.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/bcmp.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/bcopy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/be16toh.3.gz --rw-r--r-- root/root usr/share/man/man3/be32toh.3.gz --rw-r--r-- root/root usr/share/man/man3/be64toh.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bindresvport.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bsd_signal.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bsearch.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bstring.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bswap.3.gz --rw-r--r-- root/root usr/share/man/man3/bswap_16.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/bswap_32.3.gz --rw-r--r-- root/root usr/share/man/man3/bswap_64.3.gz --rw-r--r-- root/root usr/share/man/man3/btowc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/btree.3.gz --rw-r--r-- root/root usr/share/man/man3/byteorder.3.gz --rw-r--r-- root/root usr/share/man/man3/bzero.3.gz --rw-r--r-- root/root usr/share/man/man3/cabs.3.gz --rw-r--r-- root/root usr/share/man/man3/cabsf.3.gz --rw-r--r-- root/root usr/share/man/man3/cabsl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/cacos.3.gz --rw-r--r-- root/root usr/share/man/man3/cacosf.3.gz --rw-r--r-- root/root usr/share/man/man3/cacosh.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/cacoshf.3.gz --rw-r--r-- root/root usr/share/man/man3/cacoshl.3.gz --rw-r--r-- root/root usr/share/man/man3/cacosl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/calloc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/callrpc.3.gz --rw-r--r-- root/root usr/share/man/man3/canonicalize_file_name.3.gz --rw-r--r-- root/root usr/share/man/man3/carg.3.gz --rw-r--r-- root/root usr/share/man/man3/cargf.3.gz --rw-r--r-- root/root usr/share/man/man3/cargl.3.gz --rw-r--r-- root/root usr/share/man/man3/casin.3.gz --rw-r--r-- root/root usr/share/man/man3/casinf.3.gz --rw-r--r-- root/root usr/share/man/man3/casinh.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/casinhf.3.gz --rw-r--r-- root/root usr/share/man/man3/casinhl.3.gz --rw-r--r-- root/root usr/share/man/man3/casinl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/catan.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/catanf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/catanh.3.gz --rw-r--r-- root/root usr/share/man/man3/catanhf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/catanhl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/catanl.3.gz --rw-r--r-- root/root usr/share/man/man3/catclose.3.gz --rw-r--r-- root/root usr/share/man/man3/catgets.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/catopen.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cbc_crypt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cbrt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cbrtf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cbrtl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ccos.3.gz --rw-r--r-- root/root usr/share/man/man3/ccosf.3.gz --rw-r--r-- root/root usr/share/man/man3/ccosh.3.gz --rw-r--r-- root/root usr/share/man/man3/ccoshf.3.gz --rw-r--r-- root/root usr/share/man/man3/ccoshl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ccosl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ceil.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ceilf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ceill.3.gz --rw-r--r-- root/root usr/share/man/man3/cexp.3.gz --rw-r--r-- root/root usr/share/man/man3/cexp2.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/cexp2f.3.gz --rw-r--r-- root/root usr/share/man/man3/cexp2l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cexpf.3.gz --rw-r--r-- root/root usr/share/man/man3/cexpl.3.gz --rw-r--r-- root/root usr/share/man/man3/cfgetispeed.3.gz --rw-r--r-- root/root usr/share/man/man3/cfgetospeed.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cfmakeraw.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/cfree.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cfsetispeed.3.gz --rw-r--r-- root/root usr/share/man/man3/cfsetospeed.3.gz --rw-r--r-- root/root usr/share/man/man3/cfsetspeed.3.gz --rw-r--r-- root/root usr/share/man/man3/cimag.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cimagf.3.gz --rw-r--r-- root/root usr/share/man/man3/cimagl.3.gz --rw-r--r-- root/root usr/share/man/man3/circleq.3.gz --rw-r--r-- root/root usr/share/man/man3/clearenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clearerr.3.gz --rw-r--r-- root/root usr/share/man/man3/clearerr_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_broadcast.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_call.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_control.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_create.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_freeres.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_geterr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_pcreateerror.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_perrno.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_perror.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clnt_spcreateerror.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_sperrno.3.gz --rw-r--r-- root/root usr/share/man/man3/clnt_sperror.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/clntraw_create.3.gz --rw-r--r-- root/root usr/share/man/man3/clnttcp_create.3.gz --rw-r--r-- root/root usr/share/man/man3/clntudp_bufcreate.3.gz --rw-r--r-- root/root usr/share/man/man3/clntudp_create.3.gz --rw-r--r-- root/root usr/share/man/man3/clock.3.gz --rw-r--r-- root/root usr/share/man/man3/clock_getcpuclockid.3.gz --rw-r--r-- root/root usr/share/man/man3/clog.3.gz --rw-r--r-- root/root usr/share/man/man3/clog10.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/clog10f.3.gz --rw-r--r-- root/root usr/share/man/man3/clog10l.3.gz --rw-r--r-- root/root usr/share/man/man3/clog2.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clog2f.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/clog2l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/clogf.3.gz --rw-r--r-- root/root usr/share/man/man3/clogl.3.gz --rw-r--r-- root/root usr/share/man/man3/closedir.3.gz --rw-r--r-- root/root usr/share/man/man3/closelog.3.gz --rw-r--r-- root/root usr/share/man/man3/cmsg.3.gz --rw-r--r-- root/root usr/share/man/man3/confstr.3.gz --rw-r--r-- root/root usr/share/man/man3/conj.3.gz --rw-r--r-- root/root usr/share/man/man3/conjf.3.gz --rw-r--r-- root/root usr/share/man/man3/conjl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/copysign.3.gz --rw-r--r-- root/root usr/share/man/man3/copysignf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/copysignl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cos.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cosf.3.gz --rw-r--r-- root/root usr/share/man/man3/cosh.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/coshf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/coshl.3.gz --rw-r--r-- root/root usr/share/man/man3/cosl.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/cpow.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cpowf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cpowl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/cproj.3.gz --rw-r--r-- root/root usr/share/man/man3/cprojf.3.gz --rw-r--r-- root/root usr/share/man/man3/cprojl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/creal.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/crealf.3.gz --rw-r--r-- root/root usr/share/man/man3/creall.3.gz --rw-r--r-- root/root usr/share/man/man3/csin.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/csinf.3.gz --rw-r--r-- root/root usr/share/man/man3/csinh.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/csinhf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/csinhl.3.gz --rw-r--r-- root/root usr/share/man/man3/csinl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/csqrt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/csqrtf.3.gz --rw-r--r-- root/root usr/share/man/man3/csqrtl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ctan.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ctanf.3.gz --rw-r--r-- root/root usr/share/man/man3/ctanh.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ctanhf.3.gz --rw-r--r-- root/root usr/share/man/man3/ctanhl.3.gz --rw-r--r-- root/root usr/share/man/man3/ctanl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ctermid.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ctime.3.gz --rw-r--r-- root/root usr/share/man/man3/ctime_r.3.gz --rw-r--r-- root/root usr/share/man/man3/cuserid.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/daemon.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/daylight.3.gz --rw-r--r-- root/root usr/share/man/man3/db.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dbopen.3.gz --rw-r--r-- root/root usr/share/man/man3/des_crypt.3.gz --rw-r--r-- root/root usr/share/man/man3/des_setparity.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/difftime.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dirfd.3.gz --rw-r--r-- root/root usr/share/man/man3/dirname.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/div.3.gz --rw-r--r-- root/root usr/share/man/man3/dl_iterate_phdr.3.gz --rw-r--r-- root/root usr/share/man/man3/dladdr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dladdr1.3.gz --rw-r--r-- root/root usr/share/man/man3/dlclose.3.gz --rw-r--r-- root/root usr/share/man/man3/dlerror.3.gz --rw-r--r-- root/root usr/share/man/man3/dlinfo.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dlmopen.3.gz --rw-r--r-- root/root usr/share/man/man3/dlopen.3.gz --rw-r--r-- root/root usr/share/man/man3/dlsym.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dlvsym.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dn_comp.3.gz --rw-r--r-- root/root usr/share/man/man3/dn_expand.3.gz --rw-r--r-- root/root usr/share/man/man3/dprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/drand48.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/drand48_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/drem.3.gz --rw-r--r-- root/root usr/share/man/man3/dremf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/dreml.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/duplocale.3.gz --rw-r--r-- root/root usr/share/man/man3/dysize.3.gz --rw-r--r-- root/root usr/share/man/man3/eaccess.3.gz --rw-r--r-- root/root usr/share/man/man3/ecb_crypt.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ecvt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ecvt_r.3.gz --rw-r--r-- root/root usr/share/man/man3/edata.3.gz --rw-r--r-- root/root usr/share/man/man3/encrypt.3.gz --rw-r--r-- root/root usr/share/man/man3/encrypt_r.3.gz --rw-r--r-- root/root usr/share/man/man3/end.3.gz --rw-r--r-- root/root usr/share/man/man3/endaliasent.3.gz --rw-r--r-- root/root usr/share/man/man3/endfsent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/endgrent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/endhostent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endian.3.gz --rw-r--r-- root/root usr/share/man/man3/endmntent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endnetent.3.gz --rw-r--r-- root/root usr/share/man/man3/endnetgrent.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endprotoent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/endpwent.3.gz --rw-r--r-- root/root usr/share/man/man3/endrpcent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/endservent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endspent.3.gz --rw-r--r-- root/root usr/share/man/man3/endttyent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endusershell.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/endutent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/endutxent.3.gz --rw-r--r-- root/root usr/share/man/man3/envz.3.gz --rw-r--r-- root/root usr/share/man/man3/envz_add.3.gz --rw-r--r-- root/root usr/share/man/man3/envz_entry.3.gz --rw-r--r-- root/root usr/share/man/man3/envz_get.3.gz --rw-r--r-- root/root usr/share/man/man3/envz_merge.3.gz --rw-r--r-- root/root usr/share/man/man3/envz_remove.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/envz_strip.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/erand48.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/erand48_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/erf.3.gz --rw-r--r-- root/root usr/share/man/man3/erfc.3.gz --rw-r--r-- root/root usr/share/man/man3/erfcf.3.gz --rw-r--r-- root/root usr/share/man/man3/erfcl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/erff.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/erfl.3.gz --rw-r--r-- root/root usr/share/man/man3/err.3.gz --rw-r--r-- root/root usr/share/man/man3/errno.3.gz --rw-r--r-- root/root usr/share/man/man3/error.3.gz --rw-r--r-- root/root usr/share/man/man3/error_at_line.3.gz --rw-r--r-- root/root usr/share/man/man3/error_message_count.3.gz --rw-r--r-- root/root usr/share/man/man3/error_one_per_line.3.gz --rw-r--r-- root/root usr/share/man/man3/error_print_progname.3.gz --rw-r--r-- root/root usr/share/man/man3/errx.3.gz --rw-r--r-- root/root usr/share/man/man3/etext.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ether_aton.3.gz --rw-r--r-- root/root usr/share/man/man3/ether_aton_r.3.gz --rw-r--r-- root/root usr/share/man/man3/ether_hostton.3.gz --rw-r--r-- root/root usr/share/man/man3/ether_line.3.gz --rw-r--r-- root/root usr/share/man/man3/ether_ntoa.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ether_ntoa_r.3.gz --rw-r--r-- root/root usr/share/man/man3/ether_ntohost.3.gz --rw-r--r-- root/root usr/share/man/man3/euidaccess.3.gz --rw-r--r-- root/root usr/share/man/man3/eventfd_read.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/eventfd_write.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/exec.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/execl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/execle.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/execlp.3.gz --rw-r--r-- root/root usr/share/man/man3/execv.3.gz --rw-r--r-- root/root usr/share/man/man3/execvp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/execvpe.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/exit.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/exp.3.gz --rw-r--r-- root/root usr/share/man/man3/exp10.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/exp10f.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/exp10l.3.gz --rw-r--r-- root/root usr/share/man/man3/exp2.3.gz --rw-r--r-- root/root usr/share/man/man3/exp2f.3.gz --rw-r--r-- root/root usr/share/man/man3/exp2l.3.gz --rw-r--r-- root/root usr/share/man/man3/expf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/expl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/explicit_bzero.3.gz --rw-r--r-- root/root usr/share/man/man3/expm1.3.gz --rw-r--r-- root/root usr/share/man/man3/expm1f.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/expm1l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fabs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fabsf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fabsl.3.gz --rw-r--r-- root/root usr/share/man/man3/fclose.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fcloseall.3.gz --rw-r--r-- root/root usr/share/man/man3/fcvt.3.gz --rw-r--r-- root/root usr/share/man/man3/fcvt_r.3.gz --rw-r--r-- root/root usr/share/man/man3/fdim.3.gz --rw-r--r-- root/root usr/share/man/man3/fdimf.3.gz --rw-r--r-- root/root usr/share/man/man3/fdiml.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fdopen.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fdopendir.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/feclearexcept.3.gz --rw-r--r-- root/root usr/share/man/man3/fedisableexcept.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/feenableexcept.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fegetenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fegetexcept.3.gz --rw-r--r-- root/root usr/share/man/man3/fegetexceptflag.3.gz --rw-r--r-- root/root usr/share/man/man3/fegetround.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/feholdexcept.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fenv.3.gz --rw-r--r-- root/root usr/share/man/man3/feof.3.gz --rw-r--r-- root/root usr/share/man/man3/feof_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/feraiseexcept.3.gz --rw-r--r-- root/root usr/share/man/man3/ferror.3.gz --rw-r--r-- root/root usr/share/man/man3/ferror_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fesetenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fesetexceptflag.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fesetround.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fetestexcept.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/feupdateenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fexecve.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fflush.3.gz --rw-r--r-- root/root usr/share/man/man3/fflush_unlocked.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ffs.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ffsl.3.gz --rw-r--r-- root/root usr/share/man/man3/ffsll.3.gz --rw-r--r-- root/root usr/share/man/man3/fgetc.3.gz --rw-r--r-- root/root usr/share/man/man3/fgetc_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetgrent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetgrent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetpos.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetpwent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetpwent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgets.3.gz --rw-r--r-- root/root usr/share/man/man3/fgets_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetspent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetspent_r.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetwc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fgetwc_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/fgetws.3.gz --rw-r--r-- root/root usr/share/man/man3/fgetws_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/fileno.3.gz --rw-r--r-- root/root usr/share/man/man3/fileno_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/finite.3.gz --rw-r--r-- root/root usr/share/man/man3/finitef.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/finitel.3.gz --rw-r--r-- root/root usr/share/man/man3/flockfile.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/floor.3.gz --rw-r--r-- root/root usr/share/man/man3/floorf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/floorl.3.gz --rw-r--r-- root/root usr/share/man/man3/fma.3.gz --rw-r--r-- root/root usr/share/man/man3/fmaf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmal.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmax.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmaxf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmaxl.3.gz --rw-r--r-- root/root usr/share/man/man3/fmemopen.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmin.3.gz --rw-r--r-- root/root usr/share/man/man3/fminf.3.gz --rw-r--r-- root/root usr/share/man/man3/fminl.3.gz --rw-r--r-- root/root usr/share/man/man3/fmod.3.gz --rw-r--r-- root/root usr/share/man/man3/fmodf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fmodl.3.gz --rw-r--r-- root/root usr/share/man/man3/fmtmsg.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fnmatch.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fopen.3.gz --rw-r--r-- root/root usr/share/man/man3/fopencookie.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/forkpty.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fpathconf.3.gz --rw-r--r-- root/root usr/share/man/man3/fpclassify.3.gz --rw-r--r-- root/root usr/share/man/man3/fprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fpurge.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fputc.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fputc_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/fputs.3.gz --rw-r--r-- root/root usr/share/man/man3/fputs_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fputwc.3.gz --rw-r--r-- root/root usr/share/man/man3/fputwc_unlocked.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fputws.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fputws_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/fread.3.gz --rw-r--r-- root/root usr/share/man/man3/fread_unlocked.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/free.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/freeaddrinfo.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/freehostent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/freeifaddrs.3.gz --rw-r--r-- root/root usr/share/man/man3/freelocale.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/freopen.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/frexp.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/frexpf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/frexpl.3.gz --rw-r--r-- root/root usr/share/man/man3/fscanf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fseek.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fseeko.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fsetpos.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fstatvfs.3.gz --rw-r--r-- root/root usr/share/man/man3/ftell.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ftello.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ftime.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ftok.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ftrylockfile.3.gz --rw-r--r-- root/root usr/share/man/man3/fts.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fts_children.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fts_close.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fts_open.3.gz --rw-r--r-- root/root usr/share/man/man3/fts_read.3.gz --rw-r--r-- root/root usr/share/man/man3/fts_set.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ftw.3.gz --rw-r--r-- root/root usr/share/man/man3/funlockfile.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/futimens.3.gz --rw-r--r-- root/root usr/share/man/man3/futimes.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/fwide.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/fwprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/fwrite.3.gz --rw-r--r-- root/root usr/share/man/man3/fwrite_unlocked.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/gai_cancel.3.gz --rw-r--r-- root/root usr/share/man/man3/gai_error.3.gz --rw-r--r-- root/root usr/share/man/man3/gai_strerror.3.gz --rw-r--r-- root/root usr/share/man/man3/gai_suspend.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/gamma.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/gammaf.3.gz --rw-r--r-- root/root usr/share/man/man3/gammal.3.gz --rw-r--r-- root/root usr/share/man/man3/gcvt.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/get_avphys_pages.3.gz --rw-r--r-- root/root usr/share/man/man3/get_current_dir_name.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/get_myaddress.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/get_nprocs.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/get_nprocs_conf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/get_phys_pages.3.gz --rw-r--r-- root/root usr/share/man/man3/getaddrinfo.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getaddrinfo_a.3.gz --rw-r--r-- root/root usr/share/man/man3/getaliasbyname.3.gz --rw-r--r-- root/root usr/share/man/man3/getaliasbyname_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getaliasent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getaliasent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getauxval.3.gz --rw-r--r-- root/root usr/share/man/man3/getc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getc_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/getchar.3.gz --rw-r--r-- root/root usr/share/man/man3/getchar_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getcontext.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getcwd.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getdate.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getdate_err.3.gz --rw-r--r-- root/root usr/share/man/man3/getdate_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getdelim.3.gz --rw-r--r-- root/root usr/share/man/man3/getdirentries.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getdtablesize.3.gz --rw-r--r-- root/root usr/share/man/man3/getentropy.3.gz --rw-r--r-- root/root usr/share/man/man3/getenv.3.gz --rw-r--r-- root/root usr/share/man/man3/getfsent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getfsfile.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getfsspec.3.gz --rw-r--r-- root/root usr/share/man/man3/getgrent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getgrent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getgrgid.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getgrgid_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getgrnam.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getgrnam_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getgrouplist.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyaddr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyaddr_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyname.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyname2.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyname2_r.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostbyname_r.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostent.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/gethostid.3.gz --rw-r--r-- root/root usr/share/man/man3/getifaddrs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getipnodebyaddr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getipnodebyname.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getline.3.gz --rw-r--r-- root/root usr/share/man/man3/getloadavg.3.gz --rw-r--r-- root/root usr/share/man/man3/getlogin.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getlogin_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getmntent.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getmntent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnameinfo.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnetbyaddr.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnetbyaddr_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnetbyname.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnetbyname_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getnetent.3.gz --rw-r--r-- root/root usr/share/man/man3/getnetent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getnetgrent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getnetgrent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getopt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getopt_long.3.gz --rw-r--r-- root/root usr/share/man/man3/getopt_long_only.3.gz --rw-r--r-- root/root usr/share/man/man3/getpass.3.gz --rw-r--r-- root/root usr/share/man/man3/getprotobyname.3.gz --rw-r--r-- root/root usr/share/man/man3/getprotobyname_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getprotobynumber.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getprotobynumber_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getprotoent.3.gz --rw-r--r-- root/root usr/share/man/man3/getprotoent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getpt.3.gz --rw-r--r-- root/root usr/share/man/man3/getpw.3.gz --rw-r--r-- root/root usr/share/man/man3/getpwent.3.gz --rw-r--r-- root/root usr/share/man/man3/getpwent_r.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getpwnam.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getpwnam_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getpwuid.3.gz --rw-r--r-- root/root usr/share/man/man3/getpwuid_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcbyname.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcbyname_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcbynumber.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcbynumber_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getrpcent.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getrpcport.3.gz --rw-r--r-- root/root usr/share/man/man3/gets.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getservbyname.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getservbyname_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getservbyport.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getservbyport_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getservent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getservent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getspent.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getspent_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getspnam.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getspnam_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getsubopt.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getttyent.3.gz --rw-r--r-- root/root usr/share/man/man3/getttynam.3.gz --rw-r--r-- root/root usr/share/man/man3/getusershell.3.gz --rw-r--r-- root/root usr/share/man/man3/getutent.3.gz --rw-r--r-- root/root usr/share/man/man3/getutent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getutid.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getutid_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getutline.3.gz --rw-r--r-- root/root usr/share/man/man3/getutline_r.3.gz --rw-r--r-- root/root usr/share/man/man3/getutmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getutmpx.3.gz --rw-r--r-- root/root usr/share/man/man3/getutxent.3.gz --rw-r--r-- root/root usr/share/man/man3/getutxid.3.gz --rw-r--r-- root/root usr/share/man/man3/getutxline.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/getw.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getwc.3.gz --rw-r--r-- root/root usr/share/man/man3/getwc_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getwchar.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/getwchar_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/getwd.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/glob.3.gz --rw-r--r-- root/root usr/share/man/man3/globfree.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/gmtime.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gmtime_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gnu_dev_major.3.gz --rw-r--r-- root/root usr/share/man/man3/gnu_dev_makedev.3.gz --rw-r--r-- root/root usr/share/man/man3/gnu_dev_minor.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gnu_get_libc_release.3.gz --rw-r--r-- root/root usr/share/man/man3/gnu_get_libc_version.3.gz --rw-r--r-- root/root usr/share/man/man3/grantpt.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/group_member.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/gsignal.3.gz --rw-r--r-- root/root usr/share/man/man3/h_errno.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/hash.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/hasmntopt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/hcreate.3.gz --rw-r--r-- root/root usr/share/man/man3/hcreate_r.3.gz --rw-r--r-- root/root usr/share/man/man3/hdestroy.3.gz --rw-r--r-- root/root usr/share/man/man3/hdestroy_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/herror.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/hsearch.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/hsearch_r.3.gz --rw-r--r-- root/root usr/share/man/man3/hstrerror.3.gz --rw-r--r-- root/root usr/share/man/man3/htobe16.3.gz --rw-r--r-- root/root usr/share/man/man3/htobe32.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/htobe64.3.gz --rw-r--r-- root/root usr/share/man/man3/htole16.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/htole32.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/htole64.3.gz --rw-r--r-- root/root usr/share/man/man3/htonl.3.gz --rw-r--r-- root/root usr/share/man/man3/htons.3.gz --rw-r--r-- root/root usr/share/man/man3/hypot.3.gz --rw-r--r-- root/root usr/share/man/man3/hypotf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/hypotl.3.gz --rw-r--r-- root/root usr/share/man/man3/iconv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iconv_close.3.gz --rw-r--r-- root/root usr/share/man/man3/iconv_open.3.gz --rw-r--r-- root/root usr/share/man/man3/if_freenameindex.3.gz --rw-r--r-- root/root usr/share/man/man3/if_indextoname.3.gz --rw-r--r-- root/root usr/share/man/man3/if_nameindex.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/if_nametoindex.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ilogb.3.gz --rw-r--r-- root/root usr/share/man/man3/ilogbf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ilogbl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/imaxabs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/imaxdiv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/index.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet.3.gz --rw-r--r-- root/root usr/share/man/man3/inet_addr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_aton.3.gz --rw-r--r-- root/root usr/share/man/man3/inet_lnaof.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_makeaddr.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_net_ntop.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_net_pton.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_netof.3.gz --rw-r--r-- root/root usr/share/man/man3/inet_network.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_ntoa.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/inet_ntop.3.gz --rw-r--r-- root/root usr/share/man/man3/inet_pton.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/initgroups.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/initstate.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/initstate_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/innetgr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/insque.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/intro.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iruserok.3.gz --rw-r--r-- root/root usr/share/man/man3/iruserok_af.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isalnum.3.gz --rw-r--r-- root/root usr/share/man/man3/isalnum_l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isalpha.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isalpha_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isascii.3.gz --rw-r--r-- root/root usr/share/man/man3/isascii_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isatty.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isblank.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isblank_l.3.gz --rw-r--r-- root/root usr/share/man/man3/iscntrl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iscntrl_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isdigit.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/isdigit_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isfdtype.3.gz --rw-r--r-- root/root usr/share/man/man3/isfinite.3.gz --rw-r--r-- root/root usr/share/man/man3/isgraph.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/isgraph_l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isgreater.3.gz --rw-r--r-- root/root usr/share/man/man3/isgreaterequal.3.gz --rw-r--r-- root/root usr/share/man/man3/isinf.3.gz --rw-r--r-- root/root usr/share/man/man3/isinff.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isinfl.3.gz --rw-r--r-- root/root usr/share/man/man3/isless.3.gz --rw-r--r-- root/root usr/share/man/man3/islessequal.3.gz --rw-r--r-- root/root usr/share/man/man3/islessgreater.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/islower.3.gz --rw-r--r-- root/root usr/share/man/man3/islower_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isnan.3.gz --rw-r--r-- root/root usr/share/man/man3/isnanf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isnanl.3.gz --rw-r--r-- root/root usr/share/man/man3/isnormal.3.gz --rw-r--r-- root/root usr/share/man/man3/isprint.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isprint_l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ispunct.3.gz --rw-r--r-- root/root usr/share/man/man3/ispunct_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isspace.3.gz --rw-r--r-- root/root usr/share/man/man3/isspace_l.3.gz --rw-r--r-- root/root usr/share/man/man3/isunordered.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isupper.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/isupper_l.3.gz --rw-r--r-- root/root usr/share/man/man3/iswalnum.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswalpha.3.gz --rw-r--r-- root/root usr/share/man/man3/iswblank.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswcntrl.3.gz --rw-r--r-- root/root usr/share/man/man3/iswctype.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswdigit.3.gz --rw-r--r-- root/root usr/share/man/man3/iswgraph.3.gz --rw-r--r-- root/root usr/share/man/man3/iswlower.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswprint.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswpunct.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswspace.3.gz --rw-r--r-- root/root usr/share/man/man3/iswupper.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/iswxdigit.3.gz --rw-r--r-- root/root usr/share/man/man3/isxdigit.3.gz --rw-r--r-- root/root usr/share/man/man3/isxdigit_l.3.gz --rw-r--r-- root/root usr/share/man/man3/j0.3.gz --rw-r--r-- root/root usr/share/man/man3/j0f.3.gz --rw-r--r-- root/root usr/share/man/man3/j0l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/j1.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/j1f.3.gz --rw-r--r-- root/root usr/share/man/man3/j1l.3.gz --rw-r--r-- root/root usr/share/man/man3/jn.3.gz --rw-r--r-- root/root usr/share/man/man3/jnf.3.gz --rw-r--r-- root/root usr/share/man/man3/jnl.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/jrand48.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/jrand48_r.3.gz --rw-r--r-- root/root usr/share/man/man3/key_decryptsession.3.gz --rw-r--r-- root/root usr/share/man/man3/key_encryptsession.3.gz --rw-r--r-- root/root usr/share/man/man3/key_gendes.3.gz --rw-r--r-- root/root usr/share/man/man3/key_secretkey_is_set.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/key_setsecret.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/killpg.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/klogctl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/l64a.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/labs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lckpwdf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/lcong48.3.gz --rw-r--r-- root/root usr/share/man/man3/lcong48_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ldexp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ldexpf.3.gz --rw-r--r-- root/root usr/share/man/man3/ldexpl.3.gz --rw-r--r-- root/root usr/share/man/man3/ldiv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/le16toh.3.gz --rw-r--r-- root/root usr/share/man/man3/le32toh.3.gz --rw-r--r-- root/root usr/share/man/man3/le64toh.3.gz --rw-r--r-- root/root usr/share/man/man3/lfind.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lgamma.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lgamma_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/lgammaf.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/lgammaf_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lgammal.3.gz --rw-r--r-- root/root usr/share/man/man3/lgammal_r.3.gz --rw-r--r-- root/root usr/share/man/man3/lio_listio.3.gz --rw-r--r-- root/root usr/share/man/man3/list.3.gz --rw-r--r-- root/root usr/share/man/man3/llabs.3.gz --rw-r--r-- root/root usr/share/man/man3/lldiv.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/llrint.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/llrintf.3.gz --rw-r--r-- root/root usr/share/man/man3/llrintl.3.gz --rw-r--r-- root/root usr/share/man/man3/llround.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/llroundf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/llroundl.3.gz --rw-r--r-- root/root usr/share/man/man3/localeconv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/localtime.3.gz --rw-r--r-- root/root usr/share/man/man3/localtime_r.3.gz --rw-r--r-- root/root usr/share/man/man3/lockf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/log.3.gz --rw-r--r-- root/root usr/share/man/man3/log10.3.gz --rw-r--r-- root/root usr/share/man/man3/log10f.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/log10l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/log1p.3.gz --rw-r--r-- root/root usr/share/man/man3/log1pf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/log1pl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/log2.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/log2f.3.gz --rw-r--r-- root/root usr/share/man/man3/log2l.3.gz --rw-r--r-- root/root usr/share/man/man3/logb.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/logbf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/logbl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/logf.3.gz --rw-r--r-- root/root usr/share/man/man3/login.3.gz --rw-r--r-- root/root usr/share/man/man3/login_tty.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/logl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/logout.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/logwtmp.3.gz --rw-r--r-- root/root usr/share/man/man3/longjmp.3.gz --rw-r--r-- root/root usr/share/man/man3/lrand48.3.gz --rw-r--r-- root/root usr/share/man/man3/lrand48_r.3.gz --rw-r--r-- root/root usr/share/man/man3/lrint.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lrintf.3.gz --rw-r--r-- root/root usr/share/man/man3/lrintl.3.gz --rw-r--r-- root/root usr/share/man/man3/lround.3.gz --rw-r--r-- root/root usr/share/man/man3/lroundf.3.gz --rw-r--r-- root/root usr/share/man/man3/lroundl.3.gz --rw-r--r-- root/root usr/share/man/man3/lsearch.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/lseek64.3.gz --rw-r--r-- root/root usr/share/man/man3/lutimes.3.gz --rw-r--r-- root/root usr/share/man/man3/major.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/makecontext.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/makedev.3.gz --rw-r--r-- root/root usr/share/man/man3/mallinfo.3.gz --rw-r--r-- root/root usr/share/man/man3/mallinfo2.3.gz --rw-r--r-- root/root usr/share/man/man3/malloc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/malloc_get_state.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/malloc_hook.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/malloc_info.3.gz --rw-r--r-- root/root usr/share/man/man3/malloc_set_state.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/malloc_stats.3.gz --rw-r--r-- root/root usr/share/man/man3/malloc_trim.3.gz --rw-r--r-- root/root usr/share/man/man3/malloc_usable_size.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mallopt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/matherr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mblen.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mbrlen.3.gz --rw-r--r-- root/root usr/share/man/man3/mbrtowc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mbsinit.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mbsnrtowcs.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/mbsrtowcs.3.gz --rw-r--r-- root/root usr/share/man/man3/mbstowcs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mbtowc.3.gz --rw-r--r-- root/root usr/share/man/man3/mcheck.3.gz --rw-r--r-- root/root usr/share/man/man3/mcheck_check_all.3.gz --rw-r--r-- root/root usr/share/man/man3/mcheck_pedantic.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/memalign.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/memccpy.3.gz --rw-r--r-- root/root usr/share/man/man3/memchr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/memcmp.3.gz --rw-r--r-- root/root usr/share/man/man3/memcpy.3.gz --rw-r--r-- root/root usr/share/man/man3/memfrob.3.gz --rw-r--r-- root/root usr/share/man/man3/memmem.3.gz --rw-r--r-- root/root usr/share/man/man3/memmove.3.gz --rw-r--r-- root/root usr/share/man/man3/mempcpy.3.gz --rw-r--r-- root/root usr/share/man/man3/memrchr.3.gz --rw-r--r-- root/root usr/share/man/man3/memset.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/minor.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mkdtemp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mkfifo.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mkfifoat.3.gz --rw-r--r-- root/root usr/share/man/man3/mkostemp.3.gz --rw-r--r-- root/root usr/share/man/man3/mkostemps.3.gz --rw-r--r-- root/root usr/share/man/man3/mkstemp.3.gz --rw-r--r-- root/root usr/share/man/man3/mkstemps.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mktemp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mktime.3.gz --rw-r--r-- root/root usr/share/man/man3/mmap64.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/modf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/modff.3.gz --rw-r--r-- root/root usr/share/man/man3/modfl.3.gz --rw-r--r-- root/root usr/share/man/man3/mpool.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mprobe.3.gz --rw-r--r-- root/root usr/share/man/man3/mq_close.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/mq_getattr.3.gz --rw-r--r-- root/root usr/share/man/man3/mq_notify.3.gz --rw-r--r-- root/root usr/share/man/man3/mq_open.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/mq_receive.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/mq_send.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/mq_setattr.3.gz --rw-r--r-- root/root usr/share/man/man3/mq_timedreceive.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/mq_timedsend.3.gz --rw-r--r-- root/root usr/share/man/man3/mq_unlink.3.gz --rw-r--r-- root/root usr/share/man/man3/mrand48.3.gz --rw-r--r-- root/root usr/share/man/man3/mrand48_r.3.gz --rw-r--r-- root/root usr/share/man/man3/mtrace.3.gz --rw-r--r-- root/root usr/share/man/man3/muntrace.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/nan.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nanf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/nanl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/nearbyint.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nearbyintf.3.gz --rw-r--r-- root/root usr/share/man/man3/nearbyintl.3.gz --rw-r--r-- root/root usr/share/man/man3/netlink.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/newlocale.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/nextafter.3.gz --rw-r--r-- root/root usr/share/man/man3/nextafterf.3.gz --rw-r--r-- root/root usr/share/man/man3/nextafterl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nextdown.3.gz --rw-r--r-- root/root usr/share/man/man3/nextdownf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nextdownl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/nexttoward.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nexttowardf.3.gz --rw-r--r-- root/root usr/share/man/man3/nexttowardl.3.gz --rw-r--r-- root/root usr/share/man/man3/nextup.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nextupf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nextupl.3.gz --rw-r--r-- root/root usr/share/man/man3/nftw.3.gz --rw-r--r-- root/root usr/share/man/man3/nl_langinfo.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/nl_langinfo_l.3.gz --rw-r--r-- root/root usr/share/man/man3/nrand48.3.gz --rw-r--r-- root/root usr/share/man/man3/nrand48_r.3.gz --rw-r--r-- root/root usr/share/man/man3/ntohl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ntohs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ntp_adjtime.3.gz --rw-r--r-- root/root usr/share/man/man3/ntp_gettime.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ntp_gettimex.3.gz --rw-r--r-- root/root usr/share/man/man3/offsetof.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/on_exit.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/open_memstream.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/open_wmemstream.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/opendir.3.gz --rw-r--r-- root/root usr/share/man/man3/openlog.3.gz --rw-r--r-- root/root usr/share/man/man3/openpty.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/optarg.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/opterr.3.gz --rw-r--r-- root/root usr/share/man/man3/optind.3.gz --rw-r--r-- root/root usr/share/man/man3/optopt.3.gz --rw-r--r-- root/root usr/share/man/man3/passwd2des.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pathconf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pclose.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/perror.3.gz --rw-r--r-- root/root usr/share/man/man3/pmap_getmaps.3.gz --rw-r--r-- root/root usr/share/man/man3/pmap_getport.3.gz --rw-r--r-- root/root usr/share/man/man3/pmap_rmtcall.3.gz --rw-r--r-- root/root usr/share/man/man3/pmap_set.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pmap_unset.3.gz --rw-r--r-- root/root usr/share/man/man3/popen.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_fallocate.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_madvise.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_memalign.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_openpt.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_spawn.3.gz --rw-r--r-- root/root usr/share/man/man3/posix_spawnp.3.gz --rw-r--r-- root/root usr/share/man/man3/pow.3.gz --rw-r--r-- root/root usr/share/man/man3/pow10.3.gz --rw-r--r-- root/root usr/share/man/man3/pow10f.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pow10l.3.gz --rw-r--r-- root/root usr/share/man/man3/powerof2.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/powf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/powl.3.gz --rw-r--r-- root/root usr/share/man/man3/printf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/profil.3.gz --rw-r--r-- root/root usr/share/man/man3/program_invocation_name.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/program_invocation_short_name.3.gz --rw-r--r-- root/root usr/share/man/man3/psiginfo.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/psignal.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_atfork.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getaffinity_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getdetachstate.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getguardsize.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getinheritsched.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getschedparam.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getschedpolicy.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getscope.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getsigmask_np.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getstack.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getstackaddr.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_getstacksize.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_init.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setaffinity_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setdetachstate.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setguardsize.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setinheritsched.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setschedparam.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setschedpolicy.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setscope.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setsigmask_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setstack.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setstackaddr.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_attr_setstacksize.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cancel.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cleanup_pop.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cleanup_pop_restore_np.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cleanup_push.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cleanup_push_defer_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_cond_init.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_condattr_init.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_detach.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_equal.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_exit.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getaffinity_np.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getattr_default_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getattr_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getconcurrency.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getcpuclockid.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getname_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_getschedparam.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_join.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_key_create.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_kill.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_kill_other_threads_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutex_consistent.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutex_consistent_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutex_init.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_getpshared.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_getrobust.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_getrobust_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_init.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_setkind_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_setpshared.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_setrobust.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_mutexattr_setrobust_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_once.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_rwlockattr_getkind_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_rwlockattr_setkind_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_self.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setaffinity_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setattr_default_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setcancelstate.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setcanceltype.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setconcurrency.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setname_np.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setschedparam.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_setschedprio.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_sigmask.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_sigqueue.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_spin_destroy.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_spin_init.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_spin_lock.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_spin_trylock.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_spin_unlock.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pthread_testcancel.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_timedjoin_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_tryjoin_np.3.gz --rw-r--r-- root/root usr/share/man/man3/pthread_yield.3.gz --rw-r--r-- root/root usr/share/man/man3/ptsname.3.gz --rw-r--r-- root/root usr/share/man/man3/ptsname_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putc_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putchar.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/putchar_unlocked.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putenv.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/putgrent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putpwent.3.gz --rw-r--r-- root/root usr/share/man/man3/puts.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/putspent.3.gz --rw-r--r-- root/root usr/share/man/man3/pututline.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/pututxline.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/putw.3.gz --rw-r--r-- root/root usr/share/man/man3/putwc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/putwc_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/putwchar.3.gz --rw-r--r-- root/root usr/share/man/man3/putwchar_unlocked.3.gz --rw-r--r-- root/root usr/share/man/man3/pvalloc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/qecvt.3.gz --rw-r--r-- root/root usr/share/man/man3/qecvt_r.3.gz --rw-r--r-- root/root usr/share/man/man3/qfcvt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/qfcvt_r.3.gz --rw-r--r-- root/root usr/share/man/man3/qgcvt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/qsort.3.gz --rw-r--r-- root/root usr/share/man/man3/qsort_r.3.gz --rw-r--r-- root/root usr/share/man/man3/queue.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/raise.3.gz --rw-r--r-- root/root usr/share/man/man3/rand.3.gz --rw-r--r-- root/root usr/share/man/man3/rand_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/random.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/random_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rawmemchr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rcmd.3.gz --rw-r--r-- root/root usr/share/man/man3/rcmd_af.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/re_comp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/re_exec.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/readdir.3.gz --rw-r--r-- root/root usr/share/man/man3/readdir_r.3.gz --rw-r--r-- root/root usr/share/man/man3/realloc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/reallocarray.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/realpath.3.gz --rw-r--r-- root/root usr/share/man/man3/recno.3.gz --rw-r--r-- root/root usr/share/man/man3/regcomp.3.gz --rw-r--r-- root/root usr/share/man/man3/regerror.3.gz --rw-r--r-- root/root usr/share/man/man3/regex.3.gz --rw-r--r-- root/root usr/share/man/man3/regexec.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/regfree.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/register_printf_modifier.3.gz --rw-r--r-- root/root usr/share/man/man3/register_printf_specifier.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/register_printf_type.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/registerrpc.3.gz --rw-r--r-- root/root usr/share/man/man3/remainder.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/remainderf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/remainderl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/remove.3.gz --rw-r--r-- root/root usr/share/man/man3/remque.3.gz --rw-r--r-- root/root usr/share/man/man3/remquo.3.gz --rw-r--r-- root/root usr/share/man/man3/remquof.3.gz --rw-r--r-- root/root usr/share/man/man3/remquol.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_init.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_mkquery.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_nclose.3.gz --rw-r--r-- root/root usr/share/man/man3/res_ninit.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_nmkquery.3.gz --rw-r--r-- root/root usr/share/man/man3/res_nquery.3.gz --rw-r--r-- root/root usr/share/man/man3/res_nquerydomain.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_nsearch.3.gz --rw-r--r-- root/root usr/share/man/man3/res_nsend.3.gz --rw-r--r-- root/root usr/share/man/man3/res_query.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/res_querydomain.3.gz --rw-r--r-- root/root usr/share/man/man3/res_search.3.gz --rw-r--r-- root/root usr/share/man/man3/res_send.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/resolver.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rewind.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rewinddir.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rexec.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/rexec_af.3.gz --rw-r--r-- root/root usr/share/man/man3/rindex.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rint.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rintl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/round.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/roundf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/roundl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/roundup.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/rpc.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rpmatch.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rresvport.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rresvport_af.3.gz --rw-r--r-- root/root usr/share/man/man3/rtime.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/rtnetlink.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ruserok.3.gz --rw-r--r-- root/root usr/share/man/man3/ruserok_af.3.gz --rw-r--r-- root/root usr/share/man/man3/scalb.3.gz --rw-r--r-- root/root usr/share/man/man3/scalbf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/scalbl.3.gz --rw-r--r-- root/root usr/share/man/man3/scalbln.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/scalblnf.3.gz --rw-r--r-- root/root usr/share/man/man3/scalblnl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/scalbn.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/scalbnf.3.gz --rw-r--r-- root/root usr/share/man/man3/scalbnl.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/scandir.3.gz --rw-r--r-- root/root usr/share/man/man3/scandirat.3.gz --rw-r--r-- root/root usr/share/man/man3/scanf.3.gz --rw-r--r-- root/root usr/share/man/man3/sched_getcpu.3.gz --rw-r--r-- root/root usr/share/man/man3/secure_getenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/seed48.3.gz --rw-r--r-- root/root usr/share/man/man3/seed48_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/seekdir.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_close.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sem_destroy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sem_getvalue.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_init.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_open.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_post.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_timedwait.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_trywait.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sem_unlink.3.gz --rw-r--r-- root/root usr/share/man/man3/sem_wait.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setaliasent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setbuf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setbuffer.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setcontext.3.gz --rw-r--r-- root/root usr/share/man/man3/setenv.3.gz --rw-r--r-- root/root usr/share/man/man3/setfsent.3.gz --rw-r--r-- root/root usr/share/man/man3/setgrent.3.gz --rw-r--r-- root/root usr/share/man/man3/sethostent.3.gz --rw-r--r-- root/root usr/share/man/man3/sethostid.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/setjmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setkey.3.gz --rw-r--r-- root/root usr/share/man/man3/setkey_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setlinebuf.3.gz --rw-r--r-- root/root usr/share/man/man3/setlocale.3.gz --rw-r--r-- root/root usr/share/man/man3/setlogmask.3.gz --rw-r--r-- root/root usr/share/man/man3/setmntent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setnetent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/setnetgrent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setprotoent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setpwent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setrpcent.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setservent.3.gz --rw-r--r-- root/root usr/share/man/man3/setspent.3.gz --rw-r--r-- root/root usr/share/man/man3/setstate.3.gz --rw-r--r-- root/root usr/share/man/man3/setstate_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setttyent.3.gz --rw-r--r-- root/root usr/share/man/man3/setusershell.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/setutent.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/setutxent.3.gz --rw-r--r-- root/root usr/share/man/man3/setvbuf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sgetspent.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sgetspent_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/shm_open.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/shm_unlink.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigabbrev_np.3.gz --rw-r--r-- root/root usr/share/man/man3/sigaddset.3.gz --rw-r--r-- root/root usr/share/man/man3/sigandset.3.gz --rw-r--r-- root/root usr/share/man/man3/sigblock.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigdelset.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigdescr_np.3.gz --rw-r--r-- root/root usr/share/man/man3/sigemptyset.3.gz --rw-r--r-- root/root usr/share/man/man3/sigfillset.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/siggetmask.3.gz --rw-r--r-- root/root usr/share/man/man3/sighold.3.gz --rw-r--r-- root/root usr/share/man/man3/sigignore.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/siginterrupt.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigisemptyset.3.gz --rw-r--r-- root/root usr/share/man/man3/sigismember.3.gz --rw-r--r-- root/root usr/share/man/man3/siglongjmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigmask.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/signbit.3.gz --rw-r--r-- root/root usr/share/man/man3/signgam.3.gz --rw-r--r-- root/root usr/share/man/man3/significand.3.gz --rw-r--r-- root/root usr/share/man/man3/significandf.3.gz --rw-r--r-- root/root usr/share/man/man3/significandl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigorset.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigpause.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigqueue.3.gz --rw-r--r-- root/root usr/share/man/man3/sigrelse.3.gz --rw-r--r-- root/root usr/share/man/man3/sigset.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigsetjmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigsetmask.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sigsetops.3.gz --rw-r--r-- root/root usr/share/man/man3/sigstack.3.gz --rw-r--r-- root/root usr/share/man/man3/sigvec.3.gz --rw-r--r-- root/root usr/share/man/man3/sigwait.3.gz --rw-r--r-- root/root usr/share/man/man3/simpleq.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sin.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sincos.3.gz --rw-r--r-- root/root usr/share/man/man3/sincosf.3.gz --rw-r--r-- root/root usr/share/man/man3/sincosl.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sinf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sinh.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sinhf.3.gz --rw-r--r-- root/root usr/share/man/man3/sinhl.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/sinl.3.gz --rw-r--r-- root/root usr/share/man/man3/sleep.3.gz --rw-r--r-- root/root usr/share/man/man3/slist.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/snprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/sockatmark.3.gz --rw-r--r-- root/root usr/share/man/man3/sprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/sqrt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sqrtf.3.gz --rw-r--r-- root/root usr/share/man/man3/sqrtl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/srand.3.gz --rw-r--r-- root/root usr/share/man/man3/srand48.3.gz --rw-r--r-- root/root usr/share/man/man3/srand48_r.3.gz --rw-r--r-- root/root usr/share/man/man3/srandom.3.gz --rw-r--r-- root/root usr/share/man/man3/srandom_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sscanf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ssignal.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/stailq.3.gz --rw-r--r-- root/root usr/share/man/man3/static_assert.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/statvfs.3.gz --rw-r--r-- root/root usr/share/man/man3/stdarg.3.gz --rw-r--r-- root/root usr/share/man/man3/stderr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/stdin.3.gz --rw-r--r-- root/root usr/share/man/man3/stdio.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/stdio_ext.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/stdout.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/stpcpy.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/stpncpy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcasecmp.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcasestr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcat.3.gz --rw-r--r-- root/root usr/share/man/man3/strchr.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strchrnul.3.gz --rw-r--r-- root/root usr/share/man/man3/strcmp.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcoll.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcpy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strcspn.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strdup.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strdupa.3.gz --rw-r--r-- root/root usr/share/man/man3/strerror.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strerror_l.3.gz --rw-r--r-- root/root usr/share/man/man3/strerror_r.3.gz --rw-r--r-- root/root usr/share/man/man3/strerrordesc_np.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strerrorname_np.3.gz --rw-r--r-- root/root usr/share/man/man3/strfmon.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strfmon_l.3.gz --rw-r--r-- root/root usr/share/man/man3/strfromd.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strfromf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strfroml.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strfry.3.gz --rw-r--r-- root/root usr/share/man/man3/strftime.3.gz --rw-r--r-- root/root usr/share/man/man3/strftime_l.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/string.3.gz --rw-r--r-- root/root usr/share/man/man3/strlen.3.gz --rw-r--r-- root/root usr/share/man/man3/strncasecmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strncat.3.gz --rw-r--r-- root/root usr/share/man/man3/strncmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strncpy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strndup.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strndupa.3.gz --rw-r--r-- root/root usr/share/man/man3/strnlen.3.gz --rw-r--r-- root/root usr/share/man/man3/strpbrk.3.gz --rw-r--r-- root/root usr/share/man/man3/strptime.3.gz --rw-r--r-- root/root usr/share/man/man3/strrchr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strsep.3.gz --rw-r--r-- root/root usr/share/man/man3/strsignal.3.gz --rw-r--r-- root/root usr/share/man/man3/strspn.3.gz --rw-r--r-- root/root usr/share/man/man3/strstr.3.gz --rw-r--r-- root/root usr/share/man/man3/strtod.3.gz --rw-r--r-- root/root usr/share/man/man3/strtof.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtoimax.3.gz --rw-r--r-- root/root usr/share/man/man3/strtok.3.gz --rw-r--r-- root/root usr/share/man/man3/strtok_r.3.gz --rw-r--r-- root/root usr/share/man/man3/strtol.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtold.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtoll.3.gz --rw-r--r-- root/root usr/share/man/man3/strtoq.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtoul.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtoull.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtoumax.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/strtouq.3.gz --rw-r--r-- root/root usr/share/man/man3/strverscmp.3.gz --rw-r--r-- root/root usr/share/man/man3/strxfrm.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_freeargs.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_getargs.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/svc_getcaller.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/svc_getreq.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/svc_getreqset.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_register.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_run.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_sendreply.3.gz --rw-r--r-- root/root usr/share/man/man3/svc_unregister.3.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_auth.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_decode.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_noproc.3.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_noprog.3.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_progvers.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_systemerr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcerr_weakauth.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcfd_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcraw_create.3.gz --rw-r--r-- root/root usr/share/man/man3/svctcp_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/svcudp_bufcreate.3.gz --rw-r--r-- root/root usr/share/man/man3/svcudp_create.3.gz --rw-r--r-- root/root usr/share/man/man3/swab.3.gz --rw-r--r-- root/root usr/share/man/man3/swapcontext.3.gz --rw-r--r-- root/root usr/share/man/man3/swprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sys_errlist.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sys_nerr.3.gz --rw-r--r-- root/root usr/share/man/man3/sys_siglist.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/sysconf.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/syslog.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/system.3.gz --rw-r--r-- root/root usr/share/man/man3/sysv_signal.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tailq.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tan.3.gz --rw-r--r-- root/root usr/share/man/man3/tanf.3.gz --rw-r--r-- root/root usr/share/man/man3/tanh.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tanhf.3.gz --rw-r--r-- root/root usr/share/man/man3/tanhl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tanl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcdrain.3.gz --rw-r--r-- root/root usr/share/man/man3/tcflow.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcflush.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcgetattr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcgetpgrp.3.gz --rw-r--r-- root/root usr/share/man/man3/tcgetsid.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcsendbreak.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tcsetattr.3.gz --rw-r--r-- root/root usr/share/man/man3/tcsetpgrp.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/tdelete.3.gz --rw-r--r-- root/root usr/share/man/man3/tdestroy.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/telldir.3.gz --rw-r--r-- root/root usr/share/man/man3/tempnam.3.gz --rw-r--r-- root/root usr/share/man/man3/termios.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tfind.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tgamma.3.gz --rw-r--r-- root/root usr/share/man/man3/tgammaf.3.gz --rw-r--r-- root/root usr/share/man/man3/tgammal.3.gz --rw-r--r-- root/root usr/share/man/man3/timegm.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/timelocal.3.gz --rw-r--r-- root/root usr/share/man/man3/timeradd.3.gz --rw-r--r-- root/root usr/share/man/man3/timerclear.3.gz --rw-r--r-- root/root usr/share/man/man3/timercmp.3.gz --rw-r--r-- root/root usr/share/man/man3/timerisset.3.gz --rw-r--r-- root/root usr/share/man/man3/timersub.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/timezone.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tmpfile.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tmpnam.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tmpnam_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/toascii.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tolower.3.gz --rw-r--r-- root/root usr/share/man/man3/tolower_l.3.gz --rw-r--r-- root/root usr/share/man/man3/toupper.3.gz --rw-r--r-- root/root usr/share/man/man3/toupper_l.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/towctrans.3.gz --rw-r--r-- root/root usr/share/man/man3/towlower.3.gz --rw-r--r-- root/root usr/share/man/man3/towlower_l.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/towupper.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/towupper_l.3.gz --rw-r--r-- root/root usr/share/man/man3/trunc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/truncf.3.gz --rw-r--r-- root/root usr/share/man/man3/truncl.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tsearch.3.gz --rw-r--r-- root/root usr/share/man/man3/ttyname.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ttyname_r.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ttyslot.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/twalk.3.gz --rw-r--r-- root/root usr/share/man/man3/twalk_r.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/tzname.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/tzset.3.gz --rw-r--r-- root/root usr/share/man/man3/ualarm.3.gz --rw-r--r-- root/root usr/share/man/man3/ulckpwdf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ulimit.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/undocumented.3.gz --rw-r--r-- root/root usr/share/man/man3/ungetc.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/ungetwc.3.gz --rw-r--r-- root/root usr/share/man/man3/unlocked_stdio.3.gz --rw-r--r-- root/root usr/share/man/man3/unlockpt.3.gz --rw-r--r-- root/root usr/share/man/man3/unsetenv.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/updwtmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/updwtmpx.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/uselocale.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/usleep.3.gz --rw-r--r-- root/root usr/share/man/man3/utmpname.3.gz --rw-r--r-- root/root usr/share/man/man3/utmpxname.3.gz --rw-r--r-- root/root usr/share/man/man3/va_arg.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/va_copy.3.gz --rw-r--r-- root/root usr/share/man/man3/va_end.3.gz --rw-r--r-- root/root usr/share/man/man3/va_start.3.gz --rw-r--r-- root/root usr/share/man/man3/valloc.3.gz --rw-r--r-- root/root usr/share/man/man3/vasprintf.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/vdprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/verr.3.gz --rw-r--r-- root/root usr/share/man/man3/verrx.3.gz --rw-r--r-- root/root usr/share/man/man3/versionsort.3.gz --rw-r--r-- root/root usr/share/man/man3/vfprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/vfscanf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/vfwprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/vlimit.3.gz --rw-r--r-- root/root usr/share/man/man3/vprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/vscanf.3.gz --rw-r--r-- root/root usr/share/man/man3/vsnprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/vsprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/vsscanf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/vswprintf.3.gz --rw-r--r-- root/root usr/share/man/man3/vsyslog.3.gz --rw-r--r-- root/root usr/share/man/man3/vtimes.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/vwarn.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/vwarnx.3.gz --rw-r--r-- root/root usr/share/man/man3/vwprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/warn.3.gz --rw-r--r-- root/root usr/share/man/man3/warnx.3.gz --rw-r--r-- root/root usr/share/man/man3/wcpcpy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcpncpy.3.gz --rw-r--r-- root/root usr/share/man/man3/wcrtomb.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcscasecmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcscat.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcschr.3.gz --rw-r--r-- root/root usr/share/man/man3/wcscmp.3.gz --rw-r--r-- root/root usr/share/man/man3/wcscpy.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcscspn.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcsdup.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcslen.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsncasecmp.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsncat.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcsncmp.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsncpy.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsnlen.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcsnrtombs.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcspbrk.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsrchr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcsrtombs.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsspn.3.gz --rw-r--r-- root/root usr/share/man/man3/wcsstr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcstoimax.3.gz --rw-r--r-- root/root usr/share/man/man3/wcstok.3.gz --rw-r--r-- root/root usr/share/man/man3/wcstombs.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcstoumax.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcswidth.3.gz --rw-r--r-- root/root usr/share/man/man3/wctob.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wctomb.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wctrans.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wctype.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wcwidth.3.gz --rw-r--r-- root/root usr/share/man/man3/wmemchr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wmemcmp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wmemcpy.3.gz --rw-r--r-- root/root usr/share/man/man3/wmemmove.3.gz --rw-r--r-- root/root usr/share/man/man3/wmempcpy.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wmemset.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wordexp.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/wordfree.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/wprintf.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xcrypt.3.gz --rw-r--r-- root/root usr/share/man/man3/xdecrypt.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_accepted_reply.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_array.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_authunix_parms.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_bool.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_bytes.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_callhdr.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_callmsg.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_char.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_destroy.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_double.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_enum.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_float.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_free.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_getpos.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_inline.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_int.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_long.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_opaque.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_opaque_auth.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_pmap.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_pmaplist.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_pointer.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_reference.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_rejected_reply.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_replymsg.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_setpos.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_short.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_string.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_u_char.3.gz.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_u_int.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_u_long.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_u_short.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_union.3.gz --rw-r--r-- root/root usr/share/man/man3/xdr_vector.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_void.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdr_wrapstring.3.gz --rw-r--r-- root/root usr/share/man/man3/xdrmem_create.3.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdrrec_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xdrrec_endofrecord.3.gz --rw-r--r-- root/root usr/share/man/man3/xdrrec_eof.3.gz --rw-r--r-- root/root usr/share/man/man3/xdrrec_skiprecord.3.gz --rw-r--r-- root/root usr/share/man/man3/xdrstdio_create.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/xencrypt.3.gz --rw-r--r-- root/root usr/share/man/man3/xprt_register.3.gz --rw-r--r-- root/root usr/share/man/man3/xprt_unregister.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/y0.3.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man3/y0f.3.gz --rw-r--r-- root/root usr/share/man/man3/y0l.3.gz --rw-r--r-- root/root usr/share/man/man3/y1.3.gz --rw-r--r-- root/root usr/share/man/man3/y1f.3.gz --rw-r--r-- root/root usr/share/man/man3/y1l.3.gz --rw-r--r-- root/root usr/share/man/man3/yn.3.gz.gz --rw-r--r-- root/root usr/share/man/man3/ynf.3.gz --rw-r--r-- root/root usr/share/man/man3/ynl.3.gz -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/cciss.4.gz --rw-r--r-- root/root usr/share/man/man4/console_codes.4.gz --rw-r--r-- root/root usr/share/man/man4/console_ioctl.4.gz --rw-r--r-- root/root usr/share/man/man4/cpuid.4.gz --rw-r--r-- root/root usr/share/man/man4/dsp56k.4.gz --rw-r--r-- root/root usr/share/man/man4/fd.4.gz --rw-r--r-- root/root usr/share/man/man4/full.4.gz --rw-r--r-- root/root usr/share/man/man4/fuse.4.gz --rw-r--r-- root/root usr/share/man/man4/hd.4.gz --rw-r--r-- root/root usr/share/man/man4/hpsa.4.gz --rw-r--r-- root/root usr/share/man/man4/initrd.4.gz --rw-r--r-- root/root usr/share/man/man4/intro.4.gz --rw-r--r-- root/root usr/share/man/man4/kmem.4.gz --rw-r--r-- root/root usr/share/man/man4/lirc.4.gz --rw-r--r-- root/root usr/share/man/man4/loop-control.4.gz --rw-r--r-- root/root usr/share/man/man4/loop.4.gz --rw-r--r-- root/root usr/share/man/man4/lp.4.gz --rw-r--r-- root/root usr/share/man/man4/mem.4.gz --rw-r--r-- root/root usr/share/man/man4/mouse.4.gz --rw-r--r-- root/root usr/share/man/man4/msr.4.gz --rw-r--r-- root/root usr/share/man/man4/null.4.gz --rw-r--r-- root/root usr/share/man/man4/port.4.gz --rw-r--r-- root/root usr/share/man/man4/ptmx.4.gz --rw-r--r-- root/root usr/share/man/man4/pts.4.gz --rw-r--r-- root/root usr/share/man/man4/ram.4.gz --rw-r--r-- root/root usr/share/man/man4/random.4.gz --rw-r--r-- root/root usr/share/man/man4/rtc.4.gz --rw-r--r-- root/root usr/share/man/man4/sd.4.gz --rw-r--r-- root/root usr/share/man/man4/sk98lin.4.gz --rw-r--r-- root/root usr/share/man/man4/smartpqi.4.gz --rw-r--r-- root/root usr/share/man/man4/st.4.gz --rw-r--r-- root/root usr/share/man/man4/tty.4.gz --rw-r--r-- root/root usr/share/man/man4/ttyS.4.gz --rw-r--r-- root/root usr/share/man/man4/tty_ioctl.4.gz --rw-r--r-- root/root usr/share/man/man4/urandom.4.gz --rw-r--r-- root/root usr/share/man/man4/vcs.4.gz --rw-r--r-- root/root usr/share/man/man4/vcsa.4.gz --rw-r--r-- root/root usr/share/man/man4/veth.4.gz --rw-r--r-- root/root usr/share/man/man4/wavelan.4.gz --rw-r--r-- root/root usr/share/man/man4/zero.4.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/acct.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/charmap.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/core.5.gz --rw-r--r-- root/root usr/share/man/man5/dir_colors.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/elf.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/erofs.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/filesystems.5.gz --rw-r--r-- root/root usr/share/man/man5/fs.5.gz --rw-r--r-- root/root usr/share/man/man5/ftpusers.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/gai.conf.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/group.5.gz --rw-r--r-- root/root usr/share/man/man5/host.conf.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/hosts.5.gz --rw-r--r-- root/root usr/share/man/man5/hosts.equiv.5.gz --rw-r--r-- root/root usr/share/man/man5/intro.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/issue.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/locale.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/motd.5.gz --rw-r--r-- root/root usr/share/man/man5/networks.5.gz --rw-r--r-- root/root usr/share/man/man5/nologin.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/nscd.conf.5.gz --rw-r--r-- root/root usr/share/man/man5/nss.5.gz --rw-r--r-- root/root usr/share/man/man5/nsswitch.conf.5.gz --rw-r--r-- root/root usr/share/man/man5/passwd.5.gz --rw-r--r-- root/root usr/share/man/man5/proc.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_apm.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_buddyinfo.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_bus.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_cgroups.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_cmdline.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_config.gz.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_cpuinfo.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_crypto.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_devices.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_diskstats.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_dma.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_driver.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_execdomains.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_fb.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_filesystems.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_fs.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_ide.5.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_interrupts.5.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_iomem.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_ioports.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_kallsyms.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_kcore.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_key-users.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_keys.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_kmsg.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_kpagecgroup.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_kpagecount.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_kpageflags.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_ksyms.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_loadavg.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_locks.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_malloc.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_meminfo.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_modules.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_mounts.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_mtrr.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_net.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_partitions.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pci.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_attr.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_autogroup.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_auxv.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_cgroup.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_clear_refs.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_cmdline.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_comm.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_coredump_filter.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_cpuset.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_cwd.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_environ.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_exe.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_fd.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_fdinfo.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_gid_map.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_io.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_limits.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_map_files.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_maps.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_mem.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_mountinfo.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_mounts.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_mountstats.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_net.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_ns.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_numa_maps.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_oom_adj.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_oom_score.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_oom_score_adj.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_pagemap.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_personality.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_projid_map.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_root.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_seccomp.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_setgroups.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_smaps.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_stack.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_stat.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_statm.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_status.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_syscall.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_task.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_timers.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_timerslack_ns.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_uid_map.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_pid_wchan.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_profile.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_scsi.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_self.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_slabinfo.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_stat.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_swaps.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_abi.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_debug.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_dev.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_fs.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_kernel.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_net.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_proc.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_sunrpc.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_user.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sys_vm.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sysrq-trigger.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_sysvipc.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_thread-self.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/proc_tid.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_tid_children.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_timer_list.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_timer_stats.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_tty.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_uptime.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_version.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_vmstat.5.gz --rw-r--r-- root/root usr/share/man/man5/proc_zoneinfo.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/procfs.5.gz --rw-r--r-- root/root usr/share/man/man5/protocols.5.gz.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/repertoiremap.5.gz --rw-r--r-- root/root usr/share/man/man5/resolv.conf.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/resolver.5.gz --rw-r--r-- root/root usr/share/man/man5/rpc.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/securetty.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/services.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/shells.5.gz --rw-r--r-- root/root usr/share/man/man5/slabinfo.5.gz --rw-r--r-- root/root usr/share/man/man5/sysfs.5.gz.gz.gz --rw-r--r-- root/root usr/share/man/man5/termcap.5.gz --rw-r--r-- root/root usr/share/man/man5/tmpfs.5.gz --rw-r--r-- root/root usr/share/man/man5/ttytype.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/utmp.5.gz --rw-r--r-- root/root usr/share/man/man5/utmpx.5.gz.gz --rw-r--r-- root/root usr/share/man/man5/wtmp.5.gz.gz.gz.gz -drwxr-xr-x root/root usr/share/man/man6/ --rw-r--r-- root/root usr/share/man/man6/intro.6.gz -drwxr-xr-x root/root usr/share/man/man7/ --rw-r--r-- root/root usr/share/man/man7/address_families.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/aio.7.gz --rw-r--r-- root/root usr/share/man/man7/armscii-8.7.gz --rw-r--r-- root/root usr/share/man/man7/arp.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/ascii.7.gz --rw-r--r-- root/root usr/share/man/man7/attributes.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/boot.7.gz --rw-r--r-- root/root usr/share/man/man7/bootparam.7.gz --rw-r--r-- root/root usr/share/man/man7/bpf-helpers.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/capabilities.7.gz --rw-r--r-- root/root usr/share/man/man7/cgroup_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/cgroups.7.gz --rw-r--r-- root/root usr/share/man/man7/charsets.7.gz --rw-r--r-- root/root usr/share/man/man7/complex.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/cp1251.7.gz --rw-r--r-- root/root usr/share/man/man7/cp1252.7.gz --rw-r--r-- root/root usr/share/man/man7/cpuset.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/credentials.7.gz --rw-r--r-- root/root usr/share/man/man7/ddp.7.gz --rw-r--r-- root/root usr/share/man/man7/environ.7.gz --rw-r--r-- root/root usr/share/man/man7/epoll.7.gz --rw-r--r-- root/root usr/share/man/man7/fanotify.7.gz --rw-r--r-- root/root usr/share/man/man7/feature_test_macros.7.gz --rw-r--r-- root/root usr/share/man/man7/fifo.7.gz --rw-r--r-- root/root usr/share/man/man7/futex.7.gz --rw-r--r-- root/root usr/share/man/man7/glibc.7.gz --rw-r--r-- root/root usr/share/man/man7/glob.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/hier.7.gz --rw-r--r-- root/root usr/share/man/man7/hostname.7.gz --rw-r--r-- root/root usr/share/man/man7/icmp.7.gz --rw-r--r-- root/root usr/share/man/man7/inode.7.gz --rw-r--r-- root/root usr/share/man/man7/inotify.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/intro.7.gz --rw-r--r-- root/root usr/share/man/man7/ip.7.gz --rw-r--r-- root/root usr/share/man/man7/ipc_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/ipv6.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-1.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-10.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-11.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-13.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-14.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-15.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-16.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-2.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-3.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-4.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-5.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-6.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-7.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-8.7.gz --rw-r--r-- root/root usr/share/man/man7/iso-8859-9.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-1.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-10.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-11.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-13.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-14.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-15.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-16.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-2.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-3.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-4.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-5.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-6.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-7.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-8.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859-9.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_1.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_10.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_11.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_13.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_14.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_15.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_16.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_2.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_3.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_4.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_5.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_6.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_7.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_8.7.gz --rw-r--r-- root/root usr/share/man/man7/iso_8859_9.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/kernel_lockdown.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/keyrings.7.gz --rw-r--r-- root/root usr/share/man/man7/koi8-r.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/koi8-u.7.gz --rw-r--r-- root/root usr/share/man/man7/landlock.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/latin1.7.gz --rw-r--r-- root/root usr/share/man/man7/latin10.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/latin2.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/latin3.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/latin4.7.gz --rw-r--r-- root/root usr/share/man/man7/latin5.7.gz --rw-r--r-- root/root usr/share/man/man7/latin6.7.gz --rw-r--r-- root/root usr/share/man/man7/latin7.7.gz --rw-r--r-- root/root usr/share/man/man7/latin8.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/latin9.7.gz --rw-r--r-- root/root usr/share/man/man7/libc.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/locale.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/mailaddr.7.gz --rw-r--r-- root/root usr/share/man/man7/man-pages.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/math_error.7.gz --rw-r--r-- root/root usr/share/man/man7/mount_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/mq_overview.7.gz --rw-r--r-- root/root usr/share/man/man7/namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/netdevice.7.gz --rw-r--r-- root/root usr/share/man/man7/netlink.7.gz --rw-r--r-- root/root usr/share/man/man7/network_namespaces.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/nptl.7.gz --rw-r--r-- root/root usr/share/man/man7/numa.7.gz --rw-r--r-- root/root usr/share/man/man7/operator.7.gz --rw-r--r-- root/root usr/share/man/man7/packet.7.gz --rw-r--r-- root/root usr/share/man/man7/path_resolution.7.gz --rw-r--r-- root/root usr/share/man/man7/persistent-keyring.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/pid_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/pipe.7.gz --rw-r--r-- root/root usr/share/man/man7/pkeys.7.gz --rw-r--r-- root/root usr/share/man/man7/posixoptions.7.gz --rw-r--r-- root/root usr/share/man/man7/precedence.7.gz --rw-r--r-- root/root usr/share/man/man7/process-keyring.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/pthreads.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/pty.7.gz --rw-r--r-- root/root usr/share/man/man7/queue.7.gz --rw-r--r-- root/root usr/share/man/man7/random.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/raw.7.gz --rw-r--r-- root/root usr/share/man/man7/regex.7.gz --rw-r--r-- root/root usr/share/man/man7/rtld-audit.7.gz --rw-r--r-- root/root usr/share/man/man7/rtnetlink.7.gz --rw-r--r-- root/root usr/share/man/man7/sched.7.gz --rw-r--r-- root/root usr/share/man/man7/sem_overview.7.gz --rw-r--r-- root/root usr/share/man/man7/session-keyring.7.gz --rw-r--r-- root/root usr/share/man/man7/shm_overview.7.gz --rw-r--r-- root/root usr/share/man/man7/sigevent.7.gz --rw-r--r-- root/root usr/share/man/man7/signal-safety.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/signal.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/sock_diag.7.gz --rw-r--r-- root/root usr/share/man/man7/socket.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/spufs.7.gz --rw-r--r-- root/root usr/share/man/man7/standards.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/string_copying.7.gz.gz.gz --rw-r--r-- root/root usr/share/man/man7/suffixes.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/svipc.7.gz --rw-r--r-- root/root usr/share/man/man7/symlink.7.gz --rw-r--r-- root/root usr/share/man/man7/system_data_types.7.gz --rw-r--r-- root/root usr/share/man/man7/sysvipc.7.gz --rw-r--r-- root/root usr/share/man/man7/tcp.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/termio.7.gz --rw-r--r-- root/root usr/share/man/man7/thread-keyring.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/time.7.gz --rw-r--r-- root/root usr/share/man/man7/time_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/tis-620.7.gz --rw-r--r-- root/root usr/share/man/man7/udp.7.gz --rw-r--r-- root/root usr/share/man/man7/udplite.7.gz --rw-r--r-- root/root usr/share/man/man7/unicode.7.gz --rw-r--r-- root/root usr/share/man/man7/units.7.gz --rw-r--r-- root/root usr/share/man/man7/unix.7.gz --rw-r--r-- root/root usr/share/man/man7/uri.7.gz --rw-r--r-- root/root usr/share/man/man7/url.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/urn.7.gz --rw-r--r-- root/root usr/share/man/man7/user-keyring.7.gz.gz --rw-r--r-- root/root usr/share/man/man7/user-session-keyring.7.gz --rw-r--r-- root/root usr/share/man/man7/user_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/utf-8.7.gz --rw-r--r-- root/root usr/share/man/man7/utf8.7.gz --rw-r--r-- root/root usr/share/man/man7/uts_namespaces.7.gz --rw-r--r-- root/root usr/share/man/man7/vdso.7.gz --rw-r--r-- root/root usr/share/man/man7/vsock.7.gz --rw-r--r-- root/root usr/share/man/man7/x25.7.gz --rw-r--r-- root/root usr/share/man/man7/xattr.7.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/iconvconfig.8.gz --rw-r--r-- root/root usr/share/man/man8/intro.8.gz --rw-r--r-- root/root usr/share/man/man8/ld-linux.8.gz --rw-r--r-- root/root usr/share/man/man8/ld-linux.so.8.gz --rw-r--r-- root/root usr/share/man/man8/ld.so.8.gz --rw-r--r-- root/root usr/share/man/man8/ldconfig.8.gz --rw-r--r-- root/root usr/share/man/man8/nscd.8.gz --rw-r--r-- root/root usr/share/man/man8/sln.8.gz diff --git a/repos/xorg/man-pages/abuild b/repos/xorg/man-pages/abuild deleted file mode 100644 index 0be66895..00000000 --- a/repos/xorg/man-pages/abuild +++ /dev/null @@ -1,24 +0,0 @@ -name=man-pages -version=6.7 -release=1 -source="https://www.kernel.org/pub/linux/docs/$name/$name-$version.tar.xz" - -build() { - mkdir -p $PKG/usr/share/man - for i in man*; do - cp -rf $i $PKG/usr/share/man - done - - # ship with tzdata - rm $PKG/usr/share/man/man5/tzfile.5 \ - $PKG/usr/share/man/man8/zic.8 \ - $PKG/usr/share/man/man8/tzselect.8 \ - $PKG/usr/share/man/man8/zdump.8 - - # conflict with mandoc - rm $PKG/usr/share/man/man7/man.7 - - # ship with libxcrypt for glibc system - rm $PKG/usr/share/man/man3/crypt_r.3 \ - $PKG/usr/share/man/man3/crypt.3 -} diff --git a/repos/xorg/menu-cache/.checksum b/repos/xorg/menu-cache/.checksum deleted file mode 100644 index 07f4d599..00000000 --- a/repos/xorg/menu-cache/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -ce6c12638ba1b6d31618cce8cb0cd1f679d1105411597005e44c1c4c88ec414d menu-cache-1.1.0-consolidated_fixes-1.patch -fd189397a605671fcd4efb77078d3e159076ce78e9d119266594b8fd0b385a06 menu-cache-1.1.0.tar.xz diff --git a/repos/xorg/menu-cache/.files b/repos/xorg/menu-cache/.files deleted file mode 100644 index 90852e40..00000000 --- a/repos/xorg/menu-cache/.files +++ /dev/null @@ -1,14 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/menu-cache/ --rw-r--r-- root/root usr/include/menu-cache/menu-cache.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libmenu-cache.so -> libmenu-cache.so.3.2.0 -lrwxrwxrwx root/root usr/lib/libmenu-cache.so.3 -> libmenu-cache.so.3.2.0 --rwxr-xr-x root/root usr/lib/libmenu-cache.so.3.2.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libmenu-cache.pc -drwxr-xr-x root/root usr/libexec/ -drwxr-xr-x root/root usr/libexec/menu-cache/ --rwxr-xr-x root/root usr/libexec/menu-cache/menu-cache-gen --rwxr-xr-x root/root usr/libexec/menu-cache/menu-cached diff --git a/repos/xorg/menu-cache/abuild b/repos/xorg/menu-cache/abuild deleted file mode 100644 index 5e86dc84..00000000 --- a/repos/xorg/menu-cache/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=menu-cache -version=1.1.0 -release=1 -source="https://downloads.sourceforge.net/lxde/$name-$version.tar.xz - menu-cache-1.1.0-consolidated_fixes-1.patch" diff --git a/repos/xorg/menu-cache/depends b/repos/xorg/menu-cache/depends deleted file mode 100644 index 7901a43b..00000000 --- a/repos/xorg/menu-cache/depends +++ /dev/null @@ -1 +0,0 @@ -libfm-extra diff --git a/repos/xorg/menu-cache/menu-cache-1.1.0-consolidated_fixes-1.patch b/repos/xorg/menu-cache/menu-cache-1.1.0-consolidated_fixes-1.patch deleted file mode 100644 index 0e6709fe..00000000 --- a/repos/xorg/menu-cache/menu-cache-1.1.0-consolidated_fixes-1.patch +++ /dev/null @@ -1,149 +0,0 @@ -Submitted By: Pierre Labastie <pierre dot labastie at neuf dot fr> -Date: 2020-05-19 -Initial Package Version: 1.1.0 -Upstream Status: First patch is committed, second submitted -Origin: https://github.com/lxde/menu-cache -Description: Fix a memory leak and multiple definitions -From 97e5de8682c0c44fe4e6a2df864c5fdf76cd77cc Mon Sep 17 00:00:00 2001 -From: Palo Kisa <palo.kisa@gmail.com> -Date: Thu, 30 Nov 2017 11:36:18 +0100 -Subject: [PATCH] libmenu-cache: Fix memory leaks - ---- - libmenu-cache/menu-cache.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/libmenu-cache/menu-cache.c b/libmenu-cache/menu-cache.c -index 5025d72..273b503 100644 ---- a/libmenu-cache/menu-cache.c -+++ b/libmenu-cache/menu-cache.c -@@ -379,11 +379,15 @@ static MenuCacheItem* read_item(GDataInputStream* f, MenuCache* cache, - else /* separator */ - { - item->type = MENU_CACHE_TYPE_SEP; -+ g_free(line); - return item; - } - } - else -+ { -+ g_free(line); - return NULL; -+ } - - item->id = g_strndup( line + 1, len - 1 ); - g_free(line); -@@ -923,6 +927,7 @@ gboolean menu_cache_item_unref(MenuCacheItem* item) - else - { - MenuCacheApp* app = MENU_CACHE_APP(item); -+ g_free(app->generic_name); - g_free( app->exec ); - g_free(app->try_exec); - g_free(app->working_dir); -From 1ce739649b4d66339a03fc0ec9ee7a2f7c141780 Mon Sep 17 00:00:00 2001 -From: Mamoru TASAKA <mtasaka@fedoraproject.org> -Date: Fri, 24 Jan 2020 13:33:00 +0900 -Subject: [PATCH] Support gcc10 compilation - -gcc10 now defaults to -fno-common, and with gcc10 menu-cache compilation fails like - -/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:167: multiple definition of `DirDirs'; main.o:menu-cache-gen/menu-tags.h:167: first defined here -/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:164: multiple definition of `AppDirs'; main.o:menu-cache-gen/menu-tags.h:164: first defined here -/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:52: multiple definition of `menuTag_Layout'; main.o:menu-cache-gen/menu-tags.h:52: first defined here -.... - -This patch fixes compilation with gcc10: properly declaring variables in header with "extern", and also removing some unneeded variables in header files. ---- - menu-cache-gen/menu-tags.h | 55 ++++++++++++-------------------------- - 1 file changed, 17 insertions(+), 38 deletions(-) - -diff --git a/menu-cache-gen/menu-tags.h b/menu-cache-gen/menu-tags.h -index f3fd7d3..f71c0bc 100644 ---- a/menu-cache-gen/menu-tags.h -+++ b/menu-cache-gen/menu-tags.h -@@ -22,38 +22,17 @@ - #include <libfm/fm-extra.h> - #include <menu-cache.h> - --FmXmlFileTag menuTag_Menu; --FmXmlFileTag menuTag_AppDir; --FmXmlFileTag menuTag_DefaultAppDirs; --FmXmlFileTag menuTag_DirectoryDir; --FmXmlFileTag menuTag_DefaultDirectoryDirs; --FmXmlFileTag menuTag_Include; --FmXmlFileTag menuTag_Exclude; --FmXmlFileTag menuTag_Filename; --FmXmlFileTag menuTag_Or; --FmXmlFileTag menuTag_And; --FmXmlFileTag menuTag_Not; --FmXmlFileTag menuTag_Category; --FmXmlFileTag menuTag_MergeFile; --FmXmlFileTag menuTag_MergeDir; --FmXmlFileTag menuTag_DefaultMergeDirs; --FmXmlFileTag menuTag_Directory; --FmXmlFileTag menuTag_Name; --FmXmlFileTag menuTag_Deleted; --FmXmlFileTag menuTag_NotDeleted; --FmXmlFileTag menuTag_OnlyUnallocated; --FmXmlFileTag menuTag_NotOnlyUnallocated; --FmXmlFileTag menuTag_All; --FmXmlFileTag menuTag_LegacyDir; --FmXmlFileTag menuTag_KDELegacyDirs; --FmXmlFileTag menuTag_Move; --FmXmlFileTag menuTag_Old; --FmXmlFileTag menuTag_New; --FmXmlFileTag menuTag_Layout; --FmXmlFileTag menuTag_DefaultLayout; --FmXmlFileTag menuTag_Menuname; --FmXmlFileTag menuTag_Separator; --FmXmlFileTag menuTag_Merge; -+extern FmXmlFileTag menuTag_AppDir; -+extern FmXmlFileTag menuTag_DirectoryDir; -+extern FmXmlFileTag menuTag_Include; -+extern FmXmlFileTag menuTag_Exclude; -+extern FmXmlFileTag menuTag_Filename; -+extern FmXmlFileTag menuTag_Or; -+extern FmXmlFileTag menuTag_And; -+extern FmXmlFileTag menuTag_Not; -+extern FmXmlFileTag menuTag_Category; -+extern FmXmlFileTag menuTag_All; -+extern FmXmlFileTag menuTag_LegacyDir; - - typedef enum { - MERGE_NONE, /* starting value */ -@@ -152,19 +131,19 @@ typedef struct { - } MenuRule; - - /* requested language(s) */ --char **languages; -+extern char **languages; - - /* list of menu files to monitor */ --GSList *MenuFiles; -+extern GSList *MenuFiles; - - /* list of menu dirs to monitor */ --GSList *MenuDirs; -+extern GSList *MenuDirs; - - /* list of available app dirs */ --GSList *AppDirs; -+extern GSList *AppDirs; - - /* list of available dir dirs */ --GSList *DirDirs; -+extern GSList *DirDirs; - - /* parse and merge menu files */ - MenuMenu *get_merged_menu(const char *file, FmXmlFile **xmlfile, GError **error); -@@ -177,7 +156,7 @@ gboolean save_menu_cache(MenuMenu *layout, const char *menuname, const char *fil - void _free_layout_items(GList *data); - - /* verbosity level */ --gint verbose; -+extern gint verbose; - - #define DBG if (verbose) g_debug - #define VDBG if (verbose > 1) g_debug - diff --git a/repos/xorg/mkfontscale/.checksum b/repos/xorg/mkfontscale/.checksum deleted file mode 100644 index 95b61897..00000000 --- a/repos/xorg/mkfontscale/.checksum +++ /dev/null @@ -1 +0,0 @@ -5a6e810a0a15114dd436fe9ca0f847f33b7efa84e250d5ba55f759669b7771f5 mkfontscale-1.2.3.tar.xz diff --git a/repos/xorg/mkfontscale/.files b/repos/xorg/mkfontscale/.files deleted file mode 100644 index d279af31..00000000 --- a/repos/xorg/mkfontscale/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/mkfontdir --rwxr-xr-x root/root usr/bin/mkfontscale -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/mkfontdir.1.gz --rw-r--r-- root/root usr/share/man/man1/mkfontscale.1.gz diff --git a/repos/xorg/mkfontscale/abuild b/repos/xorg/mkfontscale/abuild deleted file mode 100644 index 6805d5bb..00000000 --- a/repos/xorg/mkfontscale/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=mkfontscale -version=1.2.3 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/mkfontscale/depends b/repos/xorg/mkfontscale/depends deleted file mode 100644 index 535fc20a..00000000 --- a/repos/xorg/mkfontscale/depends +++ /dev/null @@ -1,2 +0,0 @@ -libfontenc -freetype diff --git a/repos/xorg/nsxiv/.checksum b/repos/xorg/nsxiv/.checksum deleted file mode 100644 index 5cb45988..00000000 --- a/repos/xorg/nsxiv/.checksum +++ /dev/null @@ -1 +0,0 @@ -c80d33cedd5c2a236b7d05a00bfc49b7a27c7a7ea56088585123d3d80bf3b6ce v32.tar.gz diff --git a/repos/xorg/nsxiv/.files b/repos/xorg/nsxiv/.files deleted file mode 100644 index 4b5f58d9..00000000 --- a/repos/xorg/nsxiv/.files +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/nsxiv -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/nsxiv.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/nsxiv.1.gz diff --git a/repos/xorg/nsxiv/abuild b/repos/xorg/nsxiv/abuild deleted file mode 100644 index f8cb2770..00000000 --- a/repos/xorg/nsxiv/abuild +++ /dev/null @@ -1,10 +0,0 @@ -name=nsxiv -version=32 -release=1 -source="https://codeberg.org/${name}/${name}/archive/v${version}.tar.gz" - -build() { - make PREFIX=/usr HAVE_LIBEXIF=0 - make PREFIX=/usr HAVE_LIBEXIF=0 install - make PREFIX=/usr HAVE_LIBEXIF=0 install-desktop -} diff --git a/repos/xorg/nsxiv/depends b/repos/xorg/nsxiv/depends deleted file mode 100644 index 51aef61b..00000000 --- a/repos/xorg/nsxiv/depends +++ /dev/null @@ -1 +0,0 @@ -imlib2 diff --git a/repos/xorg/obconf/.checksum b/repos/xorg/obconf/.checksum deleted file mode 100644 index 685bd2e8..00000000 --- a/repos/xorg/obconf/.checksum +++ /dev/null @@ -1,4 +0,0 @@ -a9846cf397df25eab5b2a4df8bb02de67b8de4c05df318280ed3e860c06abd0d obconf-2.0.4.tar.gz -ed0672e021b821bc601822e2600d158cc78de95a165080a5d7407ad3478bb993 obconf-2.0.4_p20150213-clang16.patch -76776cb99abaa98e16ee64d478a7e6468df094eadf748ce0123bd897b38b42a2 stop-using-libglade.patch -56706e9bc63399bc0362ff3f2c2d2d8c51843d9334f3184228e0c3ba94c36f5f switch-to-gtk3.patch diff --git a/repos/xorg/obconf/.files b/repos/xorg/obconf/.files deleted file mode 100644 index 9756a14e..00000000 --- a/repos/xorg/obconf/.files +++ /dev/null @@ -1,17 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/obconf -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/obconf.desktop -drwxr-xr-x root/root usr/share/mime/ -drwxr-xr-x root/root usr/share/mime/packages/ --rw-r--r-- root/root usr/share/mime/packages/obconf.xml -drwxr-xr-x root/root usr/share/mimelnk/ -drwxr-xr-x root/root usr/share/mimelnk/application/ --rw-r--r-- root/root usr/share/mimelnk/application/x-openbox-theme.desktop -drwxr-xr-x root/root usr/share/obconf/ --rw-r--r-- root/root usr/share/obconf/obconf.ui --rw-r--r-- root/root usr/share/obconf/video-display.png -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/obconf.png diff --git a/repos/xorg/obconf/abuild b/repos/xorg/obconf/abuild deleted file mode 100644 index 1c0fb600..00000000 --- a/repos/xorg/obconf/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=obconf -version=2.0.4 -release=1 -source="http://openbox.org/dist/$name/$name-$version.tar.gz - stop-using-libglade.patch - switch-to-gtk3.patch - obconf-2.0.4_p20150213-clang16.patch" - -prebuild() { - autoreconf -fi -} diff --git a/repos/xorg/obconf/depends b/repos/xorg/obconf/depends deleted file mode 100644 index c49395d8..00000000 --- a/repos/xorg/obconf/depends +++ /dev/null @@ -1,2 +0,0 @@ -openbox -gtk3 diff --git a/repos/xorg/obconf/obconf-2.0.4_p20150213-clang16.patch b/repos/xorg/obconf/obconf-2.0.4_p20150213-clang16.patch deleted file mode 100644 index 943c812e..00000000 --- a/repos/xorg/obconf/obconf-2.0.4_p20150213-clang16.patch +++ /dev/null @@ -1,20 +0,0 @@ -https://bugzilla.icculus.org/show_bug.cgi?id=6671 -https://bugs.gentoo.org/870538 ---- a/src/appearance.c -+++ b/src/appearance.c -@@ -19,2 +19,3 @@ - -+#include <ctype.h> - #include "main.h" ---- a/src/desktops.h -+++ b/src/desktops.h -@@ -26,2 +26,3 @@ - void desktops_setup_names(GtkWidget *w); -+void desktops_setup_tab(void); - ---- a/src/main.c -+++ b/src/main.c -@@ -26,2 +26,3 @@ - #include "mouse.h" -+#include "moveresize.h" - #include "desktops.h" diff --git a/repos/xorg/obconf/stop-using-libglade.patch b/repos/xorg/obconf/stop-using-libglade.patch deleted file mode 100644 index 06962392..00000000 --- a/repos/xorg/obconf/stop-using-libglade.patch +++ /dev/null @@ -1,6908 +0,0 @@ -From 976d073496cd1bed1283b18947b8d303eb678f25 Mon Sep 17 00:00:00 2001 -From: galtgendo <galtgendo> -Date: Sat, 17 Aug 2013 20:25:07 +0200 -Subject: [PATCH] Stop using libglade - -GtkOptionMenu -> GtkComboBoxText move is to make porting -to gtk3 easier (this needs gtk+ 2.24), most of the pixbuf -changes in src/preview.c for the same reason. Other changes -should not go beyond 2.18. - -The changes in packing in glade file are also for the sake -of gtk3 - they shouldn't affect gtk2 (hbox51 removal was -mostly to make things cleaner - there didn't seem to be a -reason for extra container there). - -The added catch is that http://savannah.gnu.org/bugs/?34506 -was only fixed in gettext 0.18.3 (just a few weeks old) and -there's a little problem with gtk2 version of glade -(http://bugzilla.gnome.org/show_bug.cgi?id=689667). The ui -file itself nevertheless works. ---- - .gitignore | 1 + - Makefile.am | 14 +- - NEWS | 0 - TODO | 0 - configure.ac | 9 +- - src/about.c | 3 +- - src/desktops.c | 6 +- - src/dock.c | 120 +-- - src/main.c | 32 +- - src/main.h | 5 +- - src/mouse.c | 43 +- - src/moveresize.c | 114 +-- - src/obconf.gladep | 13 - - src/{obconf.glade => obconf.ui} | 2153 ++++++++++++++++++--------------------- - src/preview.c | 136 ++- - src/preview_update.c | 4 +- - src/tree.c | 4 +- - src/windows.c | 92 +- - 18 files changed, 1227 insertions(+), 1522 deletions(-) - delete mode 100644 NEWS - delete mode 100644 TODO - delete mode 100644 src/obconf.gladep - rename src/{obconf.glade => obconf.ui} (75%) - -diff --git a/Makefile.am b/Makefile.am -index 369ec3d..61c3805 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -1,7 +1,7 @@ - SUBDIRS = po - - localedir = $(datadir)/locale --gladedir = $(datadir)/obconf -+resourcedir = $(datadir)/obconf - pixmapdir = $(datadir)/pixmaps - themedir = $(datadir)/openbox/themes - desktopdir = $(datadir)/applications -@@ -19,12 +19,11 @@ src_obconf_CPPFLAGS = \ - $(OPENBOX_CFLAGS) \ - $(LIBSTARTUPNOTIFICATION_CFLAGS) \ - $(GTK_CFLAGS) \ -- $(GLADE_CFLAGS) \ - $(GDK_PIXBUF_CFLAGS) \ - $(XML_CFLAGS) \ - -DLOCALEDIR=\"$(localedir)\" \ - -DPIXMAPDIR=\"$(pixmapdir)\" \ -- -DGLADEDIR=\"$(gladedir)\" \ -+ -DRESOURCEDIR=\"$(resourcedir)\" \ - -DTHEMEDIR=\"$(themedir)\" \ - -DG_LOG_DOMAIN=\"Obconf\" - src_obconf_LDADD = \ -@@ -31,7 +30,6 @@ src_obconf_LDADD = \ - $(OPENBOX_LIBS) \ - $(LIBSTARTUPNOTIFICATION_LIBS) \ - $(GTK_LIBS) \ -- $(GLADE_LIBS) \ - $(GDK_PIXBUF_LIBS) \ - $(LIBINTL) \ - $(ZLIB_LIBS) \ -@@ -66,13 +64,10 @@ src_obconf_SOURCES = \ - src/tree.c \ - src/tree.h - --dist_glade_DATA = \ -- src/obconf.glade \ -+dist_resource_DATA = \ -+ src/obconf.ui \ - pixmaps/video-display.png - --dist_noinst_DATA = \ -- src/obconf.gladep -- - dist_desktop_DATA = \ - obconf.desktop - -@@ -121,8 +116,7 @@ EXTRA_DIST = \ - m4/wchar_t.m4 \ - m4/wint_t.m4 \ - m4/xsize.m4 \ -- data/video-display.svg \ -- config.rpath -+ data/video-display.svg - - # Packages need to run these... - -diff --git a/NEWS b/NEWS -deleted file mode 100644 -index e69de29..0000000 -diff --git a/TODO b/TODO -deleted file mode 100644 -index e69de29..0000000 -diff --git a/configure.ac b/configure.ac -index f9b0775..b99620f 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1,6 +1,6 @@ - AC_PREREQ([2.54]) - AC_INIT([obconf], [2.0.4], [http://bugzilla.icculus.org]) --AM_INIT_AUTOMAKE -+AM_INIT_AUTOMAKE([subdir-objects foreign dist-xz]) - AC_CONFIG_SRCDIR([src/main.c]) - - AC_PREFIX_DEFAULT([/usr/local]) -@@ -16,7 +16,6 @@ AC_PROG_INSTALL - CHECK_EXPORT_DYNAMIC - LDFLAGS="$LDFLAGS $EXPORT_DYNAMIC_FLAGS" - --ALL_LINGUAS="" - AM_GNU_GETTEXT_VERSION(0.15) - AM_GNU_GETTEXT([external]) - -@@ -28,7 +27,7 @@ PKG_CHECK_MODULES(LIBSTARTUPNOTIFICATION, [libstartup-notification-1.0]) - AC_SUBST(LIBSTARTUPNOTIFICATION_CFLAGS) - AC_SUBST(LIBSTARTUPNOTIFICATION_LIBS) - --PKG_CHECK_MODULES(GTK, [gtk+-2.0]) -+PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.24.0]) - AC_SUBST(GTK_CFLAGS) - AC_SUBST(GTK_LIBS) - -@@ -36,10 +35,6 @@ PKG_CHECK_MODULES(GDK_PIXBUF, [gdk-pixbuf-2.0]) - AC_SUBST(GDK_PIXBUF_CFLAGS) - AC_SUBST(GDK_PIXBUF_LIBS) - --PKG_CHECK_MODULES(GLADE, [libglade-2.0]) --AC_SUBST(GLADE_CFLAGS) --AC_SUBST(GLADE_LIBS) -- - AC_CHECK_PROG(TAR, [tar], [yes], [no]) - if test "$TAR" = "no"; then - AC_MSG_ERROR([Unable to find the tar command.]) -diff --git a/src/about.c b/src/about.c -index c56eb26..5fed1a9 100644 ---- a/src/about.c -+++ b/src/about.c -@@ -10,7 +10,8 @@ void on_about_close_clicked() - gtk_widget_hide(get_widget("about_window")); - } - --void on_about_window_delete_event() -+gboolean on_about_window_delete_event() - { - gtk_widget_hide(get_widget("about_window")); -+ return TRUE; - } -diff --git a/src/desktops.c b/src/desktops.c -index 6f205c4..8297f00 100644 ---- a/src/desktops.c -+++ b/src/desktops.c -@@ -212,7 +212,7 @@ static void desktops_write_names() - tree_apply(); - - /* make openbox re-set the property */ -- XDeleteProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), -+ XDeleteProperty(gdk_x11_get_default_xdisplay(), GDK_ROOT_WINDOW(), - gdk_x11_get_xatom_by_name("_NET_DESKTOP_NAMES")); - } - -@@ -225,7 +225,7 @@ static void desktops_write_number() - ce.xclient.type = ClientMessage; - ce.xclient.message_type = - gdk_x11_get_xatom_by_name("_NET_NUMBER_OF_DESKTOPS"); -- ce.xclient.display = GDK_DISPLAY(); -+ ce.xclient.display = gdk_x11_get_default_xdisplay(); - ce.xclient.window = GDK_ROOT_WINDOW(); - ce.xclient.format = 32; - ce.xclient.data.l[0] = num_desktops; -@@ -233,7 +233,7 @@ static void desktops_write_number() - ce.xclient.data.l[2] = 0; - ce.xclient.data.l[3] = 0; - ce.xclient.data.l[4] = 0; -- XSendEvent(GDK_DISPLAY(), GDK_ROOT_WINDOW(), FALSE, -+ XSendEvent(gdk_x11_get_default_xdisplay(), GDK_ROOT_WINDOW(), FALSE, - SubstructureNotifyMask | SubstructureRedirectMask, - &ce); - } -diff --git a/src/dock.c b/src/dock.c -index c1b8d54..4055524 100644 ---- a/src/dock.c -+++ b/src/dock.c -@@ -82,7 +82,7 @@ void dock_setup_tab() - else if (!strcasecmp(s, "Floating")) pos = POSITION_FLOATING; - else pos = POSITION_TOPLEFT; - g_free(s); -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("dock_float_x"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), -@@ -107,7 +107,7 @@ void dock_setup_tab() - if (!strcasecmp(s, "Horizontal")) pos = DIRECTION_HORIZONTAL; - else pos = DIRECTION_VERTICAL; - g_free(s); -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("dock_nostrut"); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w), -@@ -136,7 +136,7 @@ static void dock_enable_stuff() - gboolean b; - - w = get_widget("dock_position"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) == POSITION_FLOATING; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) == POSITION_FLOATING; - - s = get_widget("dock_float_x"); - gtk_widget_set_sensitive(s, b); -@@ -166,75 +166,39 @@ static void dock_enable_stuff() - gtk_widget_set_sensitive(s, b); - } - --void on_dock_top_left_activate(GtkMenuItem *w, gpointer data) -+void on_dock_position_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("dock/position", "TopLeft"); -- dock_enable_stuff(); --} -- --void on_dock_top_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "Top"); -- dock_enable_stuff(); --} -- --void on_dock_top_right_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "TopRight"); -- dock_enable_stuff(); --} -- --void on_dock_left_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "Left"); -- dock_enable_stuff(); --} -- --void on_dock_right_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "Right"); -- dock_enable_stuff(); --} -- --void on_dock_bottom_left_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "BottomLeft"); -- dock_enable_stuff(); --} -- --void on_dock_bottom_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "Bottom"); -- dock_enable_stuff(); --} -- --void on_dock_bottom_right_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "BottomRight"); -- dock_enable_stuff(); --} -- --void on_dock_floating_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/position", "Floating"); -+ switch (gtk_combo_box_get_active(w)) { -+ case 0: -+ tree_set_string("dock/position", "TopLeft"); -+ break; -+ case 1: -+ tree_set_string("dock/position", "Top"); -+ break; -+ case 2: -+ tree_set_string("dock/position", "TopRight"); -+ break; -+ case 3: -+ tree_set_string("dock/position", "Left"); -+ break; -+ case 4: -+ tree_set_string("dock/position", "Right"); -+ break; -+ case 5: -+ tree_set_string("dock/position", "BottomLeft"); -+ break; -+ case 6: -+ tree_set_string("dock/position", "Bottom"); -+ break; -+ case 7: -+ tree_set_string("dock/position", "BottomRight"); -+ break; -+ case 8: -+ tree_set_string("dock/position", "Floating"); -+ break; -+ } - dock_enable_stuff(); - } - -@@ -276,18 +240,18 @@ void on_dock_stacking_bottom_toggled(GtkToggleButton *w, gpointer data) - tree_set_string("dock/stacking", "Below"); - } - --void on_dock_horizontal_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("dock/direction", "Horizontal"); --} -- --void on_dock_vertical_activate(GtkMenuItem *w, gpointer data) -+void on_dock_direction_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("dock/direction", "Vertical"); -+ switch (gtk_combo_box_get_active(w)) { -+ case 0: -+ tree_set_string("dock/direction", "Vertical"); -+ break; -+ case 1: -+ tree_set_string("dock/direction", "Horizontal"); -+ break; -+ } - } - - void on_dock_nostrut_toggled(GtkToggleButton *w, gpointer data) -diff --git a/src/main.c b/src/main.c -index 7acc3ec..ff11ef9 100644 ---- a/src/main.c -+++ b/src/main.c -@@ -38,7 +38,7 @@ - GtkWidget *mainwin = NULL; - GtkWidget *tabstrip = NULL; - --GladeXML *glade; -+GtkBuilder *builder; - xmlDocPtr doc; - xmlNodePtr root; - RrInstance *rrinst; -@@ -63,9 +63,9 @@ void obconf_error(gchar *msg, gboolean modal) - if (modal) - gtk_dialog_run(GTK_DIALOG(d)); - else { -- g_signal_connect_swapped(GTK_OBJECT(d), "response", -+ g_signal_connect_swapped(G_OBJECT(d), "response", - G_CALLBACK(gtk_widget_destroy), -- GTK_OBJECT(d)); -+ G_OBJECT(d)); - gtk_widget_show(d); - } - } -@@ -149,7 +149,7 @@ static gboolean get_all(Window win, Atom prop, Atom type, gint size, - gint ret_size; - gulong ret_items, bytes_left; - -- res = XGetWindowProperty(GDK_DISPLAY(), win, prop, 0l, G_MAXLONG, -+ res = XGetWindowProperty(gdk_x11_get_default_xdisplay(), win, prop, 0l, G_MAXLONG, - FALSE, type, &ret_type, &ret_size, - &ret_items, &bytes_left, &xdata); - if (res == Success) { -@@ -203,6 +203,7 @@ static gboolean prop_get_string_utf8(Window win, Atom prop, gchar **ret) - int main(int argc, char **argv) - { - gchar *p; -+ GError *error = NULL; - gboolean exit_with_error = FALSE; - - bindtextdomain(PACKAGE_NAME, LOCALEDIR); -@@ -217,18 +218,21 @@ int main(int argc, char **argv) - return 0; - } - -- p = g_build_filename(GLADEDIR, "obconf.glade", NULL); -- glade = glade_xml_new(p, NULL, NULL); -+ p = g_build_filename(RESOURCEDIR, "obconf.ui", NULL); -+ builder = gtk_builder_new(); -+ gtk_builder_add_from_file(builder, p, &error); - g_free(p); - -- if (!glade) { -- obconf_error(_("Failed to load the obconf.glade interface file. You have probably failed to install ObConf properly."), TRUE); -+ if (error) { -+ obconf_error(_("Failed to load the obconf.ui interface file. You have probably failed to install ObConf properly."), TRUE); -+ g_printerr("%s\n", error->message); -+ g_error_free(error); - exit_with_error = TRUE; - } - - paths = obt_paths_new(); - parse_i = obt_xml_instance_new(); -- rrinst = RrInstanceNew(GDK_DISPLAY(), gdk_x11_get_default_screen()); -+ rrinst = RrInstanceNew(gdk_x11_get_default_xdisplay(), gdk_x11_get_default_screen()); - - if (!obc_config_file) { - gchar *p; -@@ -270,14 +274,14 @@ int main(int argc, char **argv) - } - - if (!exit_with_error) { -- glade_xml_signal_autoconnect(glade); -+ gtk_builder_connect_signals(builder, NULL); - - { - gchar *s = g_strdup_printf - ("<span weight=\"bold\" size=\"xx-large\">ObConf %s</span>", - PACKAGE_VERSION); - gtk_label_set_markup(GTK_LABEL -- (glade_xml_get_widget(glade, "title_label")), -+ (gtk_builder_get_object(builder, "title_label")), - s); - g_free(s); - } -@@ -292,7 +296,7 @@ int main(int argc, char **argv) - dock_setup_tab(); - - mainwin = get_widget("main_window"); -- tabstrip = glade_xml_get_widget(glade, "tabstrip"); -+ tabstrip = get_widget("tabstrip"); - - if (obc_theme_install) - theme_install(obc_theme_install); -@@ -336,7 +340,7 @@ void obconf_show_main() - SnDisplay *sn_d; - SnLauncheeContext *sn_cx; - -- if (GTK_WIDGET_VISIBLE(mainwin)) return; -+ if (gtk_widget_get_visible(mainwin)) return; - - gtk_widget_show_all(mainwin); - -@@ -354,7 +358,7 @@ void obconf_show_main() - - if (sn_cx) - sn_launchee_context_setup_window -- (sn_cx, GDK_WINDOW_XWINDOW(GDK_WINDOW(mainwin->window))); -+ (sn_cx, GDK_WINDOW_XID(gtk_widget_get_window(mainwin))); - - if (sn_cx) - sn_launchee_context_complete(sn_cx); -diff --git a/src/main.h b/src/main.h -index 4f3213b..23852d3 100644 ---- a/src/main.h -+++ b/src/main.h -@@ -25,16 +25,15 @@ - #include <obt/paths.h> - - #include <gtk/gtk.h> --#include <glade/glade-xml.h> - --extern GladeXML *glade; -+extern GtkBuilder *builder; - extern RrInstance *rrinst; - extern GtkWidget *mainwin; - extern gchar *obc_config_file; - extern ObtPaths *paths; - extern ObtXmlInst *parse_i; - --#define get_widget(s) glade_xml_get_widget(glade, s) -+#define get_widget(s) GTK_WIDGET(gtk_builder_get_object(builder, s)) - - void obconf_error(gchar *msg, gboolean model); - void obconf_show_main(); -diff --git a/src/mouse.c b/src/mouse.c -index 88f13d9..ce9059a 100644 ---- a/src/mouse.c -+++ b/src/mouse.c -@@ -30,8 +30,6 @@ static xmlNodePtr saved_custom = NULL; - - static gint read_doubleclick_action(); - static void write_doubleclick_action(gint a); --static void on_titlebar_doubleclick_custom_activate(GtkMenuItem *w, -- gpointer data); - static void enable_stuff(); - - void mouse_setup_tab() -@@ -69,16 +67,10 @@ void mouse_setup_tab() - w = get_widget("titlebar_doubleclick"); - a = read_doubleclick_action(); - if (a == TITLEBAR_CUSTOM) { -- GtkWidget *i = gtk_menu_item_new_with_label(_("Custom actions")); -- g_signal_connect(i, "activate", -- G_CALLBACK (on_titlebar_doubleclick_custom_activate), -- NULL); -- gtk_menu_shell_append -- (GTK_MENU_SHELL -- (gtk_option_menu_get_menu -- (GTK_OPTION_MENU(w))), i); -+ gtk_combo_box_text_append_text -+ (GTK_COMBO_BOX_TEXT(w), _("Custom actions")); - } -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), a); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), a); - - enable_stuff(); - -@@ -147,26 +139,21 @@ void on_focus_under_mouse_toggled(GtkToggleButton *w, gpointer data) - tree_set_bool("focus/underMouse", gtk_toggle_button_get_active(w)); - } - --void on_titlebar_doubleclick_maximize_activate(GtkMenuItem *w, gpointer data) -+void on_titlebar_doubleclick_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- write_doubleclick_action(TITLEBAR_MAXIMIZE); --} -- --void on_titlebar_doubleclick_shade_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- write_doubleclick_action(TITLEBAR_SHADE); --} -- --static void on_titlebar_doubleclick_custom_activate(GtkMenuItem *w, -- gpointer data) --{ -- if (mapping) return; -- -- write_doubleclick_action(TITLEBAR_CUSTOM); -+ switch (gtk_combo_box_get_active(w)) { -+ case 0: -+ write_doubleclick_action(TITLEBAR_MAXIMIZE); -+ break; -+ case 1: -+ write_doubleclick_action(TITLEBAR_SHADE); -+ break; -+ case 2: -+ write_doubleclick_action(TITLEBAR_CUSTOM); -+ break; -+ } - } - - void on_doubleclick_time_value_changed(GtkSpinButton *w, gpointer data) -diff --git a/src/moveresize.c b/src/moveresize.c -index 6048a37..c6fb3dd 100644 ---- a/src/moveresize.c -+++ b/src/moveresize.c -@@ -82,7 +82,7 @@ void moveresize_setup_tab() - else if (!strcasecmp(s, "Never")) pos = POPUP_NEVER; - else pos = POPUP_NONPIXEL; - g_free(s); -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("drag_threshold"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), -@@ -94,7 +94,7 @@ void moveresize_setup_tab() - if (!strcasecmp(s, "Fixed")) pos = POSITION_FIXED; - else pos = POSITION_CENTER; - g_free(s); -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("fixed_x_popup"); - s = tree_get_string("resize/popupFixedPosition/x", "0"); -@@ -103,7 +103,7 @@ void moveresize_setup_tab() - if (!strcasecmp(s, "Center")) pos = EDGE_CENTER; - else if (opp) pos = EDGE_RIGHT; - else pos = EDGE_LEFT; -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("fixed_x_pos"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), MAX(atoi(s), 0)); -@@ -115,7 +115,7 @@ void moveresize_setup_tab() - if (!strcasecmp(s, "Center")) pos = EDGE_CENTER; - else if (opp) pos = EDGE_RIGHT; - else pos = EDGE_LEFT; -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), pos); - - w = get_widget("fixed_y_pos"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), MAX(atoi(s), 0)); -@@ -140,7 +140,7 @@ static void enable_stuff() - gboolean b; - - w = get_widget("resize_popup"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) != POPUP_NEVER; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) != POPUP_NEVER; - w = get_widget("resize_position"); - gtk_widget_set_sensitive(w, b); - -@@ -150,7 +150,7 @@ static void enable_stuff() - gtk_widget_set_sensitive(w, b); - - w = get_widget("resize_position"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) == POSITION_FIXED; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) == POSITION_FIXED; - w = get_widget("fixed_x_popup"); - gtk_widget_set_sensitive(w, b); - w = get_widget("fixed_y_popup"); -@@ -163,12 +163,12 @@ static void enable_stuff() - } - else { - w = get_widget("fixed_x_popup"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) != EDGE_CENTER; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) != EDGE_CENTER; - w = get_widget("fixed_x_pos"); - gtk_widget_set_sensitive(w, b); - - w = get_widget("fixed_y_popup"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) != EDGE_CENTER; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) != EDGE_CENTER; - w = get_widget("fixed_y_pos"); - gtk_widget_set_sensitive(w, b); - } -@@ -196,27 +196,21 @@ void on_resize_contents_toggled(GtkToggleButton *w, gpointer data) - tree_set_bool("resize/drawContents", gtk_toggle_button_get_active(w)); - } - --void on_resize_popup_nonpixel_activate(GtkMenuItem *w, gpointer data) -+void on_resize_popup_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("resize/popupShow", "NonPixel"); -- enable_stuff(); --} -- --void on_resize_popup_always_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("resize/popupShow", "Always"); -- enable_stuff(); --} -- --void on_resize_popup_never_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("resize/popupShow", "Never"); -+ switch(gtk_combo_box_get_active(w)) { -+ case 0: -+ tree_set_string("resize/popupShow", "NonPixel"); -+ break; -+ case 1: -+ tree_set_string("resize/popupShow", "Always"); -+ break; -+ case 2: -+ tree_set_string("resize/popupShow", "Never"); -+ break; -+ } - enable_stuff(); - } - -@@ -228,27 +222,21 @@ void on_drag_threshold_value_changed(GtkSpinButton *w, gpointer data) - gtk_spin_button_get_value_as_int(w)); - } - --void on_resize_position_center_activate(GtkMenuItem *w, gpointer data) -+void on_resize_position_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("resize/popupPosition", "Center"); -- enable_stuff(); --} -- --void on_resize_position_top_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("resize/popupPosition", "Top"); -- enable_stuff(); --} -- --void on_resize_position_fixed_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("resize/popupPosition", "Fixed"); -+ switch(gtk_combo_box_get_active(w)) { -+ case 0: -+ tree_set_string("resize/popupPosition", "Center"); -+ break; -+ case 1: -+ tree_set_string("resize/popupPosition", "Top"); -+ break; -+ case 2: -+ tree_set_string("resize/popupPosition", "Fixed"); -+ break; -+ } - enable_stuff(); - } - -@@ -266,7 +254,7 @@ static void write_fixed_position(const gchar *coord) - popup = get_widget(popupname); - g_free(popupname); - -- edge = gtk_option_menu_get_history(GTK_OPTION_MENU(popup)); -+ edge = gtk_combo_box_get_active(GTK_COMBO_BOX(popup)); - g_assert(edge == EDGE_CENTER || edge == EDGE_LEFT || edge == EDGE_RIGHT); - - if (edge == EDGE_CENTER) -@@ -295,23 +283,7 @@ static void write_fixed_position(const gchar *coord) - } - - --void on_fixed_x_position_left_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- write_fixed_position("x"); -- enable_stuff(); --} -- --void on_fixed_x_position_right_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- write_fixed_position("x"); -- enable_stuff(); --} -- --void on_fixed_x_position_center_activate(GtkMenuItem *w, gpointer data) -+void on_fixed_x_position_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -@@ -319,23 +291,7 @@ void on_fixed_x_position_center_activate(GtkMenuItem *w, gpointer data) - enable_stuff(); - } - --void on_fixed_y_position_top_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- write_fixed_position("y"); -- enable_stuff(); --} -- --void on_fixed_y_position_bottom_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- write_fixed_position("y"); -- enable_stuff(); --} -- --void on_fixed_y_position_center_activate(GtkMenuItem *w, gpointer data) -+void on_fixed_y_position_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -diff --git a/src/obconf.gladep b/src/obconf.gladep -deleted file mode 100644 -index 5bcc940..0000000 ---- a/src/obconf.gladep -+++ /dev/null -@@ -1,13 +0,0 @@ --<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> --<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd"> -- --<glade-project> -- <name>ObConf</name> -- <program_name>obconf</program_name> -- <directory>../</directory> -- <source_directory></source_directory> -- <pixmaps_directory>../pixmaps</pixmaps_directory> -- <gnome_support>FALSE</gnome_support> -- <output_translatable_strings>TRUE</output_translatable_strings> -- <translatable_strings_file>strings.c</translatable_strings_file> --</glade-project> -diff --git a/src/obconf.glade b/src/obconf.ui -similarity index 75% -rename from src/obconf.glade -rename to src/obconf.ui -index faf98e0..b2efefb 100644 ---- a/src/obconf.glade -+++ b/src/obconf.ui -@@ -1,31 +1,182 @@ --<?xml version="1.0" encoding="UTF-8"?> --<glade-interface> -+<?xml version="1.0"?> -+<interface> -+ <object class="GtkAdjustment" id="adjustment1"> -+ <property name="upper">100</property> -+ <property name="lower">1</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment10"> -+ <property name="upper">10000</property> -+ <property name="lower">1</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment11"> -+ <property name="upper">100</property> -+ <property name="lower">1</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment12"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">20</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment13"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">20</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment14"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">20</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment15"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">20</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment16"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment17"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment18"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">300</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment19"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">300</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment2"> -+ <property name="upper">100</property> -+ <property name="lower">1</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment3"> -+ <property name="upper">100</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">20</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment4"> -+ <property name="upper">100</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment5"> -+ <property name="upper">10000</property> -+ <property name="lower">100</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">100</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment6"> -+ <property name="upper">1000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment7"> -+ <property name="upper">1000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">1</property> -+ <property name="page_size">0</property> -+ <property name="value">1</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment8"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">0</property> -+ </object> -+ <object class="GtkAdjustment" id="adjustment9"> -+ <property name="upper">10000</property> -+ <property name="lower">0</property> -+ <property name="page_increment">10</property> -+ <property name="step_increment">10</property> -+ <property name="page_size">0</property> -+ <property name="value">0</property> -+ </object> - <!-- interface-requires gtk+ 2.6 --> - <!-- interface-naming-policy toplevel-contextual --> -- <widget class="GtkWindow" id="about_window"> -+ <object class="GtkDialog" id="about_window"> - <property name="can_focus">False</property> - <property name="title" translatable="yes">About ObConf</property> -- <property name="type_hint">dialog</property> -- <signal name="delete_event" handler="on_about_window_delete_event"/> -- <child> -- <widget class="GtkVBox" id="vbox33"> -+ <signal handler="on_about_window_delete_event" name="delete_event"/> -+ <child internal-child="vbox"> -+ <object class="GtkVBox" id="vbox33"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkVBox" id="vbox1"> -+ <object class="GtkVBox" id="vbox1"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="title_label"> -+ <object class="GtkLabel" id="title_label"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label" translatable="yes"><span weight="bold" size="xx-large">ObConf VERSION</span></property> - <property name="use_markup">True</property> - <property name="selectable">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -33,12 +184,12 @@ - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label81"> -+ <object class="GtkLabel" id="label81"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label" translatable="yes">A preferences manager for Openbox</property> - <property name="selectable">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -46,7 +197,7 @@ - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label80"> -+ <object class="GtkLabel" id="label80"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label">Copyright (c) 2003-2008 -@@ -55,27 +206,27 @@ Tim Riley <tr@slackzone.org> - Javeed Shaikh <syscrash2k@gmail.com></property> - <property name="justify">center</property> - <property name="selectable">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> -- <child> -- <widget class="GtkHButtonBox" id="hbuttonbox2"> -+ <child internal-child="action_area"> -+ <object class="GtkHButtonBox" id="hbuttonbox2"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="layout_style">end</property> - <child> -- <widget class="GtkButton" id="about_close"> -+ <object class="GtkButton" id="about_close"> - <property name="label">gtk-close</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -85,41 +236,39 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_stock">True</property> -- <signal name="clicked" handler="on_about_close_clicked" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_about_close_clicked" name="clicked"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="expand">True</property> -- <property name="fill">True</property> -- <property name="position">1</property> -- </packing> -+ </object> - </child> -- </widget> -+ </object> - </child> -- </widget> -- <widget class="GtkWindow" id="key_prompt"> -+ <action-widgets> -+ <action-widget response="-5">about_close</action-widget> -+ </action-widgets> -+ </object> -+ <object class="GtkWindow" id="key_prompt"> - <property name="can_focus">False</property> - <property name="title" translatable="yes">window1</property> - <child> -- <widget class="GtkVBox" id="vbox49"> -+ <object class="GtkVBox" id="vbox49"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkLabel" id="label117"> -+ <object class="GtkLabel" id="label117"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Press the key you wish to bind...</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -127,61 +276,61 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkEntry" id="entry2"> -+ <object class="GtkEntry" id="entry2"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="has_focus">True</property> -- <property name="invisible_char">●</property> -+ <property name="invisible_char">●</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - </child> -- </widget> -- <widget class="GtkWindow" id="main_window"> -+ </object> -+ <object class="GtkWindow" id="main_window"> - <property name="can_focus">False</property> - <property name="border_width">6</property> - <property name="title" translatable="yes">Openbox Configuration Manager</property> - <property name="icon_name">preferences-system-windows</property> -- <signal name="delete_event" handler="on_main_window_delete_event"/> -+ <signal handler="on_main_window_delete_event" name="delete_event"/> - <child> -- <widget class="GtkVBox" id="vbox8"> -+ <object class="GtkVBox" id="vbox8"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkNotebook" id="tabstrip"> -+ <object class="GtkNotebook" id="tabstrip"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="tab_pos">left</property> - <property name="scrollable">True</property> - <child> -- <widget class="GtkVBox" id="vbox20"> -+ <object class="GtkVBox" id="vbox20"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkVBox" id="vbox21"> -+ <object class="GtkVBox" id="vbox21"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label59"> -+ <object class="GtkLabel" id="label59"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Theme</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -189,15 +338,15 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox29"> -+ <object class="GtkHBox" id="hbox29"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label60"> -+ <object class="GtkLabel" id="label60"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -205,46 +354,46 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox22"> -+ <object class="GtkVBox" id="vbox22"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkScrolledWindow" id="scrolledwindow3"> -+ <object class="GtkScrolledWindow" id="scrolledwindow3"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="hscrollbar_policy">never</property> - <property name="vscrollbar_policy">automatic</property> - <property name="shadow_type">in</property> - <child> -- <widget class="GtkTreeView" id="theme_names"> -+ <object class="GtkTreeView" id="theme_names"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="headers_visible">False</property> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -252,34 +401,34 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox41"> -+ <object class="GtkVBox" id="vbox41"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkButton" id="install_theme"> -+ <object class="GtkButton" id="install_theme"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> -- <signal name="clicked" handler="on_install_theme_clicked"/> -+ <signal handler="on_install_theme_clicked" name="clicked"/> - <child> -- <widget class="GtkAlignment" id="alignment1"> -+ <object class="GtkAlignment" id="alignment1"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - <child> -- <widget class="GtkHBox" id="hbox53"> -+ <object class="GtkHBox" id="hbox53"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">2</property> - <child> -- <widget class="GtkImage" id="image1"> -+ <object class="GtkImage" id="image1"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="stock">gtk-open</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -287,30 +436,30 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label103"> -+ <object class="GtkLabel" id="label103"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">_Install a new theme...</property> - <property name="use_underline">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -318,34 +467,34 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox42"> -+ <object class="GtkVBox" id="vbox42"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkButton" id="theme_archive"> -+ <object class="GtkButton" id="theme_archive"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> -- <signal name="clicked" handler="on_theme_archive_clicked"/> -+ <signal handler="on_theme_archive_clicked" name="clicked"/> - <child> -- <widget class="GtkAlignment" id="alignment2"> -+ <object class="GtkAlignment" id="alignment2"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - <child> -- <widget class="GtkHBox" id="hbox55"> -+ <object class="GtkHBox" id="hbox55"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">2</property> - <child> -- <widget class="GtkImage" id="image2"> -+ <object class="GtkImage" id="image2"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="stock">gtk-save</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -353,71 +502,70 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label106"> -+ <object class="GtkLabel" id="label106"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">Create a theme _archive (.obt)...</property> - <property name="use_underline">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label3"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label3"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Theme</property> -- </widget> -+ </object> - <packing> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox36"> -+ <object class="GtkVBox" id="vbox36"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkVBox" id="vbox40"> -+ <object class="GtkVBox" id="vbox40"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label99"> -+ <object class="GtkLabel" id="label99"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Windows</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -425,23 +573,23 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox50"> -+ <object class="GtkHBox" id="hbox50"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkVBox" id="vbox69"> -+ <object class="GtkVBox" id="vbox69"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkHBox" id="hbox93"> -+ <object class="GtkHBox" id="hbox93"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label171"> -+ <object class="GtkLabel" id="label171"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -449,40 +597,29 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox70"> -+ <object class="GtkVBox" id="vbox70"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox51"> -+ <object class="GtkCheckButton" id="window_border"> -+ <property name="label" translatable="yes">_Windows retain a border when undecorated</property> - <property name="visible">True</property> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkCheckButton" id="window_border"> -- <property name="label" translatable="yes">_Windows retain a border when undecorated</property> -- <property name="visible">True</property> -- <property name="can_focus">True</property> -- <property name="receives_default">False</property> -- <property name="use_action_appearance">False</property> -- <property name="use_underline">True</property> -- <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_window_border_toggled" after="yes"/> -- </widget> -- <packing> -- <property name="expand">False</property> -- <property name="fill">False</property> -- <property name="position">0</property> -- </packing> -- </child> -- </widget> -+ <property name="can_focus">True</property> -+ <property name="receives_default">False</property> -+ <property name="use_action_appearance">False</property> -+ <property name="use_underline">True</property> -+ <property name="draw_indicator">True</property> -+ <signal after="yes" handler="on_window_border_toggled" name="toggled"/> -+ </object> - <packing> -- <property name="expand">True</property> -- <property name="fill">True</property> -+ <property name="expand">False</property> -+ <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> - <child> -- <widget class="GtkCheckButton" id="animate_iconify"> -+ <object class="GtkCheckButton" id="animate_iconify"> - <property name="label" translatable="yes">A_nimate iconify and restore</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -490,43 +627,43 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_animate_iconify_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_animate_iconify_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -534,18 +671,18 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox38"> -+ <object class="GtkVBox" id="vbox38"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label88"> -+ <object class="GtkLabel" id="label88"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Window Titles</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -553,15 +690,15 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox43"> -+ <object class="GtkHBox" id="hbox43"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label89"> -+ <object class="GtkLabel" id="label89"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -569,23 +706,23 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox83"> -+ <object class="GtkVBox" id="vbox83"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox44"> -+ <object class="GtkHBox" id="hbox44"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label90"> -+ <object class="GtkLabel" id="label90"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">_Button order:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">title_layout</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -593,10 +730,10 @@ Javeed Shaikh <syscrash2k@gmail.com></property> - </packing> - </child> - <child> -- <widget class="GtkEntry" id="title_layout"> -+ <object class="GtkEntry" id="title_layout"> - <property name="visible">True</property> - <property name="can_focus">True</property> -- <property name="tooltip" translatable="yes">N - The window's icon -+ <property name="tooltip-text" translatable="yes">N - The window's icon - D - The all-desktops (sticky) button - S - The shade (roll up) button - L - The label (window title) -@@ -607,15 +744,15 @@ C - The close button</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <signal name="changed" handler="on_title_layout_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_title_layout_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -623,16 +760,16 @@ C - The close button</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox114"> -+ <object class="GtkHBox" id="hbox114"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label233"> -+ <object class="GtkLabel" id="label233"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -640,12 +777,12 @@ C - The close button</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox115"> -+ <object class="GtkHBox" id="hbox115"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label229"> -+ <object class="GtkLabel" id="label229"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> -@@ -654,7 +791,7 @@ C - The close button</property> - L: - I: - M:</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -662,7 +799,7 @@ M:</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label230"> -+ <object class="GtkLabel" id="label230"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> -@@ -671,7 +808,7 @@ M:</property> - Window label (Title) - Iconify (Minimize) - Maximize</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -679,10 +816,10 @@ Maximize</property> - </packing> - </child> - <child> -- <widget class="GtkVSeparator" id="vseparator1"> -+ <object class="GtkVSeparator" id="vseparator1"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -690,7 +827,7 @@ Maximize</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label231"> -+ <object class="GtkLabel" id="label231"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> -@@ -698,7 +835,7 @@ Maximize</property> - <property name="label" translatable="yes">C: - S: - D:</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -706,7 +843,7 @@ D:</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label232"> -+ <object class="GtkLabel" id="label232"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> -@@ -714,42 +851,42 @@ D:</property> - <property name="label" translatable="yes">Close - Shade (Roll up) - Omnipresent (On all desktops)</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">4</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -757,18 +894,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox39"> -+ <object class="GtkVBox" id="vbox39"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label91"> -+ <object class="GtkLabel" id="label91"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Fonts</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -776,15 +913,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox45"> -+ <object class="GtkHBox" id="hbox45"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label92"> -+ <object class="GtkLabel" id="label92"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -792,21 +929,21 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkTable" id="table1"> -+ <object class="GtkTable" id="table1"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="n_rows">6</property> - <property name="n_columns">2</property> - <property name="row_spacing">3</property> - <child> -- <widget class="GtkFontButton" id="font_inactive"> -+ <object class="GtkFontButton" id="font_inactive"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_inactive_font_set"/> -- </widget> -+ <signal handler="on_font_inactive_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -817,14 +954,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkFontButton" id="font_menu_header"> -+ <object class="GtkFontButton" id="font_menu_header"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_menu_header_font_set"/> -- </widget> -+ <signal handler="on_font_menu_header_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -835,14 +972,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkFontButton" id="font_menu_item"> -+ <object class="GtkFontButton" id="font_menu_item"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_menu_item_font_set"/> -- </widget> -+ <signal handler="on_font_menu_item_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -853,28 +990,28 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label94"> -+ <object class="GtkLabel" id="label94"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">_Active window title: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">font_active</property> -- </widget> -+ </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"/> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label95"> -+ <object class="GtkLabel" id="label95"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">_Inactive window title: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">font_inactive</property> -- </widget> -+ </object> - <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> -@@ -883,14 +1020,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label96"> -+ <object class="GtkLabel" id="label96"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">Menu _header: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">font_menu_header</property> -- </widget> -+ </object> - <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> -@@ -899,14 +1036,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label97"> -+ <object class="GtkLabel" id="label97"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">_Menu Item: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">font_menu_item</property> -- </widget> -+ </object> - <packing> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> -@@ -915,13 +1052,13 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label98"> -+ <object class="GtkLabel" id="label98"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">Active _On-screen display: </property> - <property name="use_underline">True</property> -- </widget> -+ </object> - <packing> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> -@@ -930,14 +1067,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkFontButton" id="font_active"> -+ <object class="GtkFontButton" id="font_active"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_active_font_set"/> -- </widget> -+ <signal handler="on_font_active_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -945,13 +1082,13 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label240"> -+ <object class="GtkLabel" id="label240"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">1</property> - <property name="label" translatable="yes">Inactive O_n-screen display: </property> - <property name="use_underline">True</property> -- </widget> -+ </object> - <packing> - <property name="top_attach">5</property> - <property name="bottom_attach">6</property> -@@ -960,14 +1097,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkFontButton" id="font_active_display"> -+ <object class="GtkFontButton" id="font_active_display"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_active_display_font_set"/> -- </widget> -+ <signal handler="on_font_active_display_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -978,14 +1115,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkFontButton" id="font_inactive_display"> -+ <object class="GtkFontButton" id="font_inactive_display"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_font">True</property> -- <signal name="font_set" handler="on_font_inactive_display_font_set"/> -- </widget> -+ <signal handler="on_font_inactive_display_font_set" name="font_set"/> -+ </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> -@@ -995,66 +1132,62 @@ Omnipresent (On all desktops)</property> - <property name="y_options"/> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">1</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label84"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label84"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Appearance</property> -- </widget> -+ </object> - <packing> - <property name="position">1</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox12"> -+ <object class="GtkVBox" id="vbox12"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkVBox" id="vbox65"> -+ <object class="GtkVBox" id="vbox65"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label164"> -+ <object class="GtkLabel" id="label164"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Focusing Windows</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1062,15 +1195,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox89"> -+ <object class="GtkHBox" id="hbox89"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label165"> -+ <object class="GtkLabel" id="label165"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1078,12 +1211,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox66"> -+ <object class="GtkVBox" id="vbox66"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="focus_new"> -+ <object class="GtkCheckButton" id="focus_new"> - <property name="label" translatable="yes">Focus _new windows when they appear</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -1091,29 +1224,29 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_focus_new_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_focus_new_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1121,18 +1254,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox34"> -+ <object class="GtkVBox" id="vbox34"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label82"> -+ <object class="GtkLabel" id="label82"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Placing Windows</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1140,15 +1273,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox40"> -+ <object class="GtkHBox" id="hbox40"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label83"> -+ <object class="GtkLabel" id="label83"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1156,12 +1289,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox35"> -+ <object class="GtkVBox" id="vbox35"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="place_mouse"> -+ <object class="GtkCheckButton" id="place_mouse"> - <property name="label" translatable="yes">_Place new windows under the mouse pointer</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -1169,8 +1302,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_place_mouse_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_place_mouse_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1181,19 +1314,19 @@ Omnipresent (On all desktops)</property> - <placeholder/> - </child> - <child> -- <widget class="GtkHBox" id="hbox107"> -+ <object class="GtkHBox" id="hbox107"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="label220"> -+ <object class="GtkLabel" id="label220"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Prefer to place new windows _on:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">place_active_popup</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1201,84 +1334,46 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="place_active_popup"> -+ <object class="GtkComboBoxText" id="place_active_popup"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu13"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="menuitem8"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">The primary monitor</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_place_active_popup_primary_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="menuitem2"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">The active monitor</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_place_active_popup_active_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="menuitem4"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">The monitor with the mouse</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_place_active_popup_mouse_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="menuitem1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">All monitors</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_place_active_popup_all_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">The primary monitor</item> -+ <item translatable="yes">The active monitor</item> -+ <item translatable="yes">The monitor with the mouse</item> -+ <item translatable="yes">All monitors</item> -+ </items> -+ <signal handler="on_place_active_popup_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1286,18 +1381,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox86"> -+ <object class="GtkVBox" id="vbox86"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label243"> -+ <object class="GtkLabel" id="label243"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Primary Monitor</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1305,15 +1400,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox120"> -+ <object class="GtkHBox" id="hbox120"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label244"> -+ <object class="GtkLabel" id="label244"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1321,16 +1416,16 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox87"> -+ <object class="GtkVBox" id="vbox87"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox122"> -+ <object class="GtkHBox" id="hbox122"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label246"> -+ <object class="GtkLabel" id="label246"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> -@@ -1338,14 +1433,14 @@ Omnipresent (On all desktops)</property> - <property name="label" translatable="yes">The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows.</property> - <property name="wrap">True</property> - <property name="width_chars">0</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1353,19 +1448,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox121"> -+ <object class="GtkHBox" id="hbox121"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label245"> -+ <object class="GtkLabel" id="label245"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Primary _monitor:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">primary_monitor_popup</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1373,70 +1468,41 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="primary_monitor_popup"> -+ <object class="GtkComboBoxText" id="primary_monitor_popup"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu16"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="item1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Fixed Monitor</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_primary_monitor_fixed_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="active_monitor1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Active Monitor</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_primary_monitor_active_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="monitor_with_mouse_pointer1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Monitor With Mouse Pointer</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_primary_monitor_mouse_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Fixed Monitor</item> -+ <item translatable="yes">Active Monitor</item> -+ <item translatable="yes">Monitor With Mouse Pointer</item> -+ </items> -+ <signal handler="on_primary_monitor_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox123"> -+ <object class="GtkHBox" id="hbox123"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label249"> -+ <object class="GtkLabel" id="label249"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1444,14 +1510,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label248"> -+ <object class="GtkLabel" id="label248"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Fixed monitor:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">fixed_monitor</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1459,90 +1525,86 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="fixed_monitor"> -+ <object class="GtkSpinButton" id="fixed_monitor"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 1 100 1 10 0</property> -+ <property name="adjustment">adjustment1</property> - <property name="climb_rate">1</property> -- <signal name="value_changed" handler="on_fixed_monitor_value_changed"/> -- </widget> -+ <signal handler="on_fixed_monitor_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">2</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label22"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label22"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Windows</property> -- </widget> -+ </object> - <packing> - <property name="position">2</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox78"> -+ <object class="GtkVBox" id="vbox78"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkVBox" id="vbox14"> -+ <object class="GtkVBox" id="vbox14"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label34"> -+ <object class="GtkLabel" id="label34"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Moving and Resizing Windows</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1550,15 +1612,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox14"> -+ <object class="GtkHBox" id="hbox14"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label168"> -+ <object class="GtkLabel" id="label168"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1566,12 +1628,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox16"> -+ <object class="GtkVBox" id="vbox16"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="resize_contents"> -+ <object class="GtkCheckButton" id="resize_contents"> - <property name="label" translatable="yes">Update the window contents while _resizing</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -1579,8 +1641,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_resize_contents_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_resize_contents_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1588,19 +1650,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox86"> -+ <object class="GtkHBox" id="hbox86"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="drag_threshold_label"> -+ <object class="GtkLabel" id="drag_threshold_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Drag _threshold distance:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">drag_threshold</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1608,18 +1670,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="drag_threshold"> -+ <object class="GtkSpinButton" id="drag_threshold"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 1 100 1 10 0</property> -+ <property name="adjustment">adjustment2</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_drag_threshold_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_drag_threshold_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1627,38 +1689,38 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label160"> -+ <object class="GtkLabel" id="label160"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox17"> -+ <object class="GtkHBox" id="hbox17"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="resist_window_label"> -+ <object class="GtkLabel" id="resist_window_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Amount of resistance against other _windows:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">resist_window</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1666,18 +1728,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="resist_window"> -+ <object class="GtkSpinButton" id="resist_window"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">20 0 100 1 10 0</property> -+ <property name="adjustment">adjustment3</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_resist_window_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_resist_window_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1685,18 +1747,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label67"> -+ <object class="GtkLabel" id="label67"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1704,19 +1766,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox18"> -+ <object class="GtkHBox" id="hbox18"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="resist_edge_label"> -+ <object class="GtkLabel" id="resist_edge_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Amount of resistance against screen _edges:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">resist_edge</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1724,18 +1786,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="resist_edge"> -+ <object class="GtkSpinButton" id="resist_edge"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 0 100 1 10 0</property> -+ <property name="adjustment">adjustment4</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_resist_edge_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_resist_edge_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1743,18 +1805,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label68"> -+ <object class="GtkLabel" id="label68"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1762,7 +1824,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkCheckButton" id="warp_edge"> -+ <object class="GtkCheckButton" id="warp_edge"> - <property name="label" translatable="yes">_Switch desktops when moving a window past the screen edge</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -1770,8 +1832,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_warp_edge_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_warp_edge_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1779,15 +1841,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox103"> -+ <object class="GtkHBox" id="hbox103"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label214"> -+ <object class="GtkLabel" id="label214"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1795,19 +1857,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox104"> -+ <object class="GtkHBox" id="hbox104"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label215"> -+ <object class="GtkLabel" id="label215"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Amount of time to wait before switching:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">warp_edge_time</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1815,18 +1877,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="warp_edge_time"> -+ <object class="GtkSpinButton" id="warp_edge_time"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">100 100 10000 10 10 0</property> -+ <property name="adjustment">adjustment5</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_warp_edge_time_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_warp_edge_time_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1834,46 +1896,46 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label216"> -+ <object class="GtkLabel" id="label216"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">5</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -1881,18 +1943,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox79"> -+ <object class="GtkVBox" id="vbox79"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label222"> -+ <object class="GtkLabel" id="label222"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Information Dialog</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1900,24 +1962,24 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox80"> -+ <object class="GtkVBox" id="vbox80"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox90"> -+ <object class="GtkHBox" id="hbox90"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="label166"> -+ <object class="GtkLabel" id="label166"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Show _information dialog:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">resize_popup</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1925,69 +1987,40 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="resize_popup"> -+ <object class="GtkComboBoxText" id="resize_popup"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu11"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="resize_popup_nonpixel"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">When resizing terminal windows</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_popup_nonpixel_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="resize_popup_always"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Always</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_popup_always_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="resize_popup_never"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Never</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_popup_never_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">When resizing terminal windows</item> -+ <item translatable="yes">Always</item> -+ <item translatable="yes">Never</item> -+ </items> -+ <signal handler="on_resize_popup_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox108"> -+ <object class="GtkHBox" id="hbox108"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label35"> -+ <object class="GtkLabel" id="label35"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -1995,24 +2028,24 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox81"> -+ <object class="GtkVBox" id="vbox81"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox91"> -+ <object class="GtkHBox" id="hbox91"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="label167"> -+ <object class="GtkLabel" id="label167"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Information dialog's _position:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">resize_position</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2020,69 +2053,40 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="resize_position"> -+ <object class="GtkComboBoxText" id="resize_position"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu12"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="resize_position_center"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Centered on the window</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_position_center_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="resize_position_top"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Above the window</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_position_top_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="fixed_position_on_screen1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Fixed position on screen</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_resize_position_fixed_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Centered on the window</item> -+ <item translatable="yes">Above the window</item> -+ <item translatable="yes">Fixed position on screen</item> -+ </items> -+ <signal handler="on_resize_position_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox109"> -+ <object class="GtkHBox" id="hbox109"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label223"> -+ <object class="GtkLabel" id="label223"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2090,24 +2094,24 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox82"> -+ <object class="GtkVBox" id="vbox82"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox110"> -+ <object class="GtkHBox" id="hbox110"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="label224"> -+ <object class="GtkLabel" id="label224"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Fixed _x position:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">fixed_x_popup</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2115,46 +2119,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="fixed_x_popup"> -+ <object class="GtkComboBoxText" id="fixed_x_popup"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu14"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="menuitem3"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Centered</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_x_position_center_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="from_left_edge1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">From left edge</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_x_position_left_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="from_right_edge1"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">From right edge</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_x_position_right_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Centered</item> -+ <item translatable="yes">From left edge</item> -+ <item translatable="yes">From right edge</item> -+ </items> -+ <signal handler="on_fixed_x_position_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2162,23 +2137,23 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox112"> -+ <object class="GtkHBox" id="hbox112"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkSpinButton" id="fixed_x_pos"> -+ <object class="GtkSpinButton" id="fixed_x_pos"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 0 1000 1 10 0</property> -+ <property name="adjustment">adjustment6</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_fixed_x_pos_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_fixed_x_pos_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2186,45 +2161,45 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label227"> -+ <object class="GtkLabel" id="label227"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox111"> -+ <object class="GtkHBox" id="hbox111"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="label225"> -+ <object class="GtkLabel" id="label225"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Fixed _y position:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">fixed_y_popup</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2232,46 +2207,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="fixed_y_popup"> -+ <object class="GtkComboBoxText" id="fixed_y_popup"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu15"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="menuitem5"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Centered</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_y_position_center_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="menuitem6"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">From top edge</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_y_position_top_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="menuitem7"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">From bottom edge</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_fixed_y_position_bottom_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Centered</item> -+ <item translatable="yes">From top edge</item> -+ <item translatable="yes">From bottom edge</item> -+ </items> -+ <signal handler="on_fixed_y_position_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2279,23 +2225,23 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox113"> -+ <object class="GtkHBox" id="hbox113"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkSpinButton" id="fixed_y_pos"> -+ <object class="GtkSpinButton" id="fixed_y_pos"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 0 1000 1 10 0</property> -+ <property name="adjustment">adjustment7</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_fixed_y_pos_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_fixed_y_pos_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2303,112 +2249,108 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label228"> -+ <object class="GtkLabel" id="label228"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">3</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label221"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label221"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Move & Resize</property> -- </widget> -+ </object> - <packing> - <property name="position">3</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox56"> -+ <object class="GtkVBox" id="vbox56"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkVBox" id="vbox13"> -+ <object class="GtkVBox" id="vbox13"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label32"> -+ <object class="GtkLabel" id="label32"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Focusing Windows</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2416,15 +2358,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox13"> -+ <object class="GtkHBox" id="hbox13"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label33"> -+ <object class="GtkLabel" id="label33"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2432,12 +2374,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox15"> -+ <object class="GtkVBox" id="vbox15"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="focus_mouse"> -+ <object class="GtkCheckButton" id="focus_mouse"> - <property name="label" translatable="yes">_Focus windows when the mouse pointer moves over them</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -2445,8 +2387,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_focus_mouse_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_focus_mouse_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2454,15 +2396,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox32"> -+ <object class="GtkHBox" id="hbox32"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label65"> -+ <object class="GtkLabel" id="label65"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2470,12 +2412,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox25"> -+ <object class="GtkVBox" id="vbox25"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="focus_notlast"> -+ <object class="GtkCheckButton" id="focus_notlast"> - <property name="label" translatable="yes">Move focus under the mouse when _switching desktops</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -2483,8 +2425,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_focus_notlast_toggled"/> -- </widget> -+ <signal handler="on_focus_notlast_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2492,7 +2434,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkCheckButton" id="focus_under_mouse"> -+ <object class="GtkCheckButton" id="focus_under_mouse"> - <property name="label" translatable="yes">Move focus _under the mouse when the mouse is not moving</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -2500,8 +2442,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_focus_under_mouse_toggled"/> -- </widget> -+ <signal handler="on_focus_under_mouse_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2509,7 +2451,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkCheckButton" id="focus_raise"> -+ <object class="GtkCheckButton" id="focus_raise"> - <property name="label" translatable="yes">_Raise windows when the mouse pointer moves over them</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -2517,8 +2459,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_focus_raise_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_focus_raise_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2526,18 +2468,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox16"> -+ <object class="GtkHBox" id="hbox16"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="focus_delay_label"> -+ <object class="GtkLabel" id="focus_delay_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">_Delay before focusing and raising windows:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">focus_delay</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2545,18 +2487,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="focus_delay"> -+ <object class="GtkSpinButton" id="focus_delay"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">0 0 10000 10 10 0</property> -+ <property name="adjustment">adjustment8</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_focus_delay_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_focus_delay_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2564,53 +2506,53 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="focus_delay_label_units"> -+ <object class="GtkLabel" id="focus_delay_label_units"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> -- <property name="fill">False</property> -+ <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2618,18 +2560,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox61"> -+ <object class="GtkVBox" id="vbox61"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label155"> -+ <object class="GtkLabel" id="label155"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Titlebar</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2637,15 +2579,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox84"> -+ <object class="GtkHBox" id="hbox84"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label156"> -+ <object class="GtkLabel" id="label156"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2653,24 +2595,24 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox62"> -+ <object class="GtkVBox" id="vbox62"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox87"> -+ <object class="GtkHBox" id="hbox87"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="titlebar_doubleclick_label"> -+ <object class="GtkLabel" id="titlebar_doubleclick_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Double click on the _titlebar:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">titlebar_doubleclick</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2678,63 +2620,43 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="titlebar_doubleclick"> -+ <object class="GtkComboBoxText" id="titlebar_doubleclick"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu10"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="titlebar_doubleclick_maximize"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Maximizes the window</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_titlebar_doubleclick_maximize_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="titlebar_doubleclick_shade"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Shades the window</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_titlebar_doubleclick_shade_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Maximizes the window</item> -+ <item translatable="yes">Shades the window</item> -+ </items> -+ <signal handler="on_titlebar_doubleclick_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox85"> -+ <object class="GtkHBox" id="hbox85"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="doubleclick_time_label"> -+ <object class="GtkLabel" id="doubleclick_time_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Double click ti_me:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">doubleclick_time</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2742,18 +2664,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="doubleclick_time"> -+ <object class="GtkSpinButton" id="doubleclick_time"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">0 0 10000 10 10 0</property> -+ <property name="adjustment">adjustment9</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_doubleclick_time_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_doubleclick_time_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2761,39 +2683,39 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label158"> -+ <object class="GtkLabel" id="label158"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2801,73 +2723,69 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox63"> -+ <object class="GtkVBox" id="vbox63"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkHBox" id="hbox88"> -+ <object class="GtkHBox" id="hbox88"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label162"> -+ <object class="GtkLabel" id="label162"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> -- <property name="expand">True</property> -+ <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">4</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label118"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label118"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Mouse</property> -- </widget> -+ </object> - <packing> - <property name="position">4</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox18"> -+ <object class="GtkVBox" id="vbox18"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label51"> -+ <object class="GtkLabel" id="label51"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Desktops</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2875,15 +2793,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox24"> -+ <object class="GtkHBox" id="hbox24"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label52"> -+ <object class="GtkLabel" id="label52"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2891,12 +2809,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox19"> -+ <object class="GtkVBox" id="vbox19"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="desktop_popup"> -+ <object class="GtkCheckButton" id="desktop_popup"> - <property name="label" translatable="yes">_Show a notification when switching desktops</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -2904,8 +2822,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_desktop_popup_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_desktop_popup_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2913,15 +2831,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox105"> -+ <object class="GtkHBox" id="hbox105"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label217"> -+ <object class="GtkLabel" id="label217"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2929,19 +2847,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox106"> -+ <object class="GtkHBox" id="hbox106"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label218"> -+ <object class="GtkLabel" id="label218"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Amount of time to show the notification for:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">desktop_popup_time</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -2949,18 +2867,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="desktop_popup_time"> -+ <object class="GtkSpinButton" id="desktop_popup_time"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 1 10000 10 10 0</property> -+ <property name="adjustment">adjustment10</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_desktop_popup_time_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_desktop_popup_time_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2968,25 +2886,25 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label219"> -+ <object class="GtkLabel" id="label219"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -2994,18 +2912,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox25"> -+ <object class="GtkHBox" id="hbox25"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label53"> -+ <object class="GtkLabel" id="label53"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">_Number of desktops: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">desktop_num</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3013,25 +2931,25 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="desktop_num"> -+ <object class="GtkSpinButton" id="desktop_num"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 1 100 1 10 0</property> -+ <property name="adjustment">adjustment11</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_desktop_num_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_desktop_num_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3039,14 +2957,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label54"> -+ <object class="GtkLabel" id="label54"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Desktop names:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">desktop_names</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3054,74 +2972,70 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkScrolledWindow" id="scrolledwindow1"> -+ <object class="GtkScrolledWindow" id="scrolledwindow1"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="hscrollbar_policy">never</property> - <property name="vscrollbar_policy">automatic</property> - <property name="shadow_type">in</property> - <child> -- <widget class="GtkTreeView" id="desktop_names"> -+ <object class="GtkTreeView" id="desktop_names"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="headers_visible">False</property> -- </widget> -+ </object> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">4</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">5</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label31"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label31"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Desktops</property> -- </widget> -+ </object> - <packing> - <property name="position">5</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox71"> -+ <object class="GtkVBox" id="vbox71"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label173"> -+ <object class="GtkLabel" id="label173"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Desktop Margins</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3129,15 +3043,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox94"> -+ <object class="GtkHBox" id="hbox94"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label174"> -+ <object class="GtkLabel" id="label174"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3145,19 +3059,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox72"> -+ <object class="GtkVBox" id="vbox72"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label212"> -+ <object class="GtkLabel" id="label212"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="yalign">0</property> - <property name="label" translatable="yes">Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them.</property> - <property name="wrap">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3165,14 +3079,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox98"> -+ <object class="GtkHBox" id="hbox98"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label209"> -+ <object class="GtkLabel" id="label209"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3180,14 +3094,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox77"> -+ <object class="GtkVBox" id="vbox77"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label210"> -+ <object class="GtkLabel" id="label210"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3195,18 +3109,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox75"> -+ <object class="GtkVBox" id="vbox75"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label195"> -+ <object class="GtkLabel" id="label195"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="ypad">4</property> - <property name="label" translatable="yes">_Top</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">margins_top</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3214,15 +3128,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox101"> -+ <object class="GtkHBox" id="hbox101"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label196"> -+ <object class="GtkLabel" id="label196"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3230,18 +3144,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="margins_top"> -+ <object class="GtkSpinButton" id="margins_top"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">20 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment12</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_margins_top_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_margins_top_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3249,11 +3163,11 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label197"> -+ <object class="GtkLabel" id="label197"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3261,31 +3175,31 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label198"> -+ <object class="GtkLabel" id="label198"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3293,17 +3207,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label208"> -+ <object class="GtkLabel" id="label208"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3311,14 +3225,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox95"> -+ <object class="GtkHBox" id="hbox95"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label179"> -+ <object class="GtkLabel" id="label179"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3326,14 +3240,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox73"> -+ <object class="GtkVBox" id="vbox73"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label181"> -+ <object class="GtkLabel" id="label181"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3341,14 +3255,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label176"> -+ <object class="GtkLabel" id="label176"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="ypad">4</property> - <property name="label" translatable="yes">_Left</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">margins_left</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3356,15 +3270,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox96"> -+ <object class="GtkHBox" id="hbox96"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label186"> -+ <object class="GtkLabel" id="label186"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3372,18 +3286,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="margins_left"> -+ <object class="GtkSpinButton" id="margins_left"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">20 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment13</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_margins_left_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_margins_left_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3391,11 +3305,11 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label178"> -+ <object class="GtkLabel" id="label178"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3403,17 +3317,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label187"> -+ <object class="GtkLabel" id="label187"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3421,17 +3335,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label182"> -+ <object class="GtkLabel" id="label182"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3439,12 +3353,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkImage" id="image3"> -+ <object class="GtkImage" id="image3"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="pixel_size">150</property> - <property name="icon_name">video-display</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3452,14 +3366,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox74"> -+ <object class="GtkVBox" id="vbox74"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label188"> -+ <object class="GtkLabel" id="label188"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3467,14 +3381,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label189"> -+ <object class="GtkLabel" id="label189"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="ypad">4</property> - <property name="label" translatable="yes">_Right</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">margins_right</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3482,15 +3396,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox97"> -+ <object class="GtkHBox" id="hbox97"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label190"> -+ <object class="GtkLabel" id="label190"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3498,18 +3412,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="margins_right"> -+ <object class="GtkSpinButton" id="margins_right"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">20 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment14</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_margins_right_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_margins_right_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3517,11 +3431,11 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label191"> -+ <object class="GtkLabel" id="label191"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3529,17 +3443,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label192"> -+ <object class="GtkLabel" id="label192"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3547,17 +3461,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label193"> -+ <object class="GtkLabel" id="label193"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3565,17 +3479,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label180"> -+ <object class="GtkLabel" id="label180"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">4</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3583,14 +3497,14 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox100"> -+ <object class="GtkHBox" id="hbox100"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label206"> -+ <object class="GtkLabel" id="label206"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3598,18 +3512,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox76"> -+ <object class="GtkVBox" id="vbox76"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label201"> -+ <object class="GtkLabel" id="label201"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="ypad">4</property> - <property name="label" translatable="yes">_Bottom</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">margins_bottom</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3617,15 +3531,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox102"> -+ <object class="GtkHBox" id="hbox102"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label202"> -+ <object class="GtkLabel" id="label202"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3633,18 +3547,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="margins_bottom"> -+ <object class="GtkSpinButton" id="margins_bottom"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">20 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment15</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_margins_bottom_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_margins_bottom_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3652,11 +3566,11 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label203"> -+ <object class="GtkLabel" id="label203"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">px</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3664,17 +3578,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label204"> -+ <object class="GtkLabel" id="label204"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3682,17 +3596,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label205"> -+ <object class="GtkLabel" id="label205"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3700,17 +3614,17 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label207"> -+ <object class="GtkLabel" id="label207"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -3718,69 +3632,65 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label211"> -+ <object class="GtkLabel" id="label211"> - <property name="visible">True</property> - <property name="can_focus">False</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">4</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">6</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label172"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label172"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Margins</property> -- </widget> -+ </object> - <packing> - <property name="position">6</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox26"> -+ <object class="GtkVBox" id="vbox26"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="border_width">12</property> - <property name="spacing">18</property> - <child> -- <widget class="GtkVBox" id="vbox84"> -+ <object class="GtkVBox" id="vbox84"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label234"> -+ <object class="GtkLabel" id="label234"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Dock</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3788,15 +3698,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox118"> -+ <object class="GtkHBox" id="hbox118"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label238"> -+ <object class="GtkLabel" id="label238"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3804,7 +3714,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="label239"> -+ <object class="GtkLabel" id="label239"> - <property name="width_request">490</property> - <property name="visible">True</property> - <property name="can_focus">False</property> -@@ -3812,21 +3722,21 @@ Omnipresent (On all desktops)</property> - <property name="yalign">0</property> - <property name="label" translatable="yes">The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray.</property> - <property name="wrap">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -3834,18 +3744,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox27"> -+ <object class="GtkVBox" id="vbox27"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label70"> -+ <object class="GtkLabel" id="label70"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Position</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3853,15 +3763,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox33"> -+ <object class="GtkHBox" id="hbox33"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label71"> -+ <object class="GtkLabel" id="label71"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3869,24 +3779,24 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox30"> -+ <object class="GtkVBox" id="vbox30"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkHBox" id="hbox19"> -+ <object class="GtkHBox" id="hbox19"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="dock_position_label"> -+ <object class="GtkLabel" id="dock_position_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Position:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">dock_position</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -3894,113 +3804,30 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="dock_position"> -+ <object class="GtkComboBoxText" id="dock_position"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu5"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="top_left"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Top Left</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_top_left_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="top"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Top</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_top_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="top_right"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Top Right</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_top_right_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="left"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Left</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_left_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="right"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Right</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_right_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="bottom_left"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Bottom Left</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_bottom_left_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="bottom"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Bottom</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_bottom_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="bottom_right"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Bottom Right</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_bottom_right_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="floating"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Floating</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_floating_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Top Left</item> -+ <item translatable="yes">Top</item> -+ <item translatable="yes">Top Right</item> -+ <item translatable="yes">Left</item> -+ <item translatable="yes">Right</item> -+ <item translatable="yes">Bottom Left</item> -+ <item translatable="yes">Bottom</item> -+ <item translatable="yes">Bottom Right</item> -+ <item translatable="yes">Floating</item> -+ </items> -+ <signal handler="on_dock_position_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4008,15 +3835,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox36"> -+ <object class="GtkHBox" id="hbox36"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label76"> -+ <object class="GtkLabel" id="label76"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4024,18 +3851,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox20"> -+ <object class="GtkHBox" id="hbox20"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="dock_float_label"> -+ <object class="GtkLabel" id="dock_float_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">_Floating position:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">dock_float_x</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4043,18 +3870,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="dock_float_x"> -+ <object class="GtkSpinButton" id="dock_float_x"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment16</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_dock_float_x_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_float_x_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -4062,11 +3889,11 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="dock_float_label_x"> -+ <object class="GtkLabel" id="dock_float_label_x"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">x</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4074,32 +3901,32 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="dock_float_y"> -+ <object class="GtkSpinButton" id="dock_float_y"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">1 0 10000 1 10 0</property> -+ <property name="adjustment">adjustment17</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_dock_float_y_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_float_y_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4107,15 +3934,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox58"> -+ <object class="GtkHBox" id="hbox58"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label108"> -+ <object class="GtkLabel" id="label108"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4123,7 +3950,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkCheckButton" id="dock_nostrut"> -+ <object class="GtkCheckButton" id="dock_nostrut"> - <property name="label" translatable="yes">Allow _windows to be placed within the dock's area</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4131,15 +3958,15 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_dock_nostrut_toggled"/> -- </widget> -+ <signal handler="on_dock_nostrut_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -4147,19 +3974,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox38"> -+ <object class="GtkHBox" id="hbox38"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">12</property> - <child> -- <widget class="GtkLabel" id="dock_direction_label"> -+ <object class="GtkLabel" id="dock_direction_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Orientation: </property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">dock_direction</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4167,64 +3994,44 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkOptionMenu" id="dock_direction"> -+ <object class="GtkComboBoxText" id="dock_direction"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> -- <child> -- <widget class="GtkMenu" id="menu7"> -- <property name="can_focus">False</property> -- <child> -- <widget class="GtkMenuItem" id="vertical"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Vertical</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_vertical_activate"/> -- </widget> -- </child> -- <child> -- <widget class="GtkMenuItem" id="horizontal"> -- <property name="visible">True</property> -- <property name="can_focus">False</property> -- <property name="use_action_appearance">False</property> -- <property name="label" translatable="yes">Horizontal</property> -- <property name="use_underline">True</property> -- <signal name="activate" handler="on_dock_horizontal_activate"/> -- </widget> -- </child> -- </widget> -- </child> -- </widget> -+ <items> -+ <item translatable="yes">Vertical</item> -+ <item translatable="yes">Horizontal</item> -+ </items> -+ <signal handler="on_dock_direction_changed" name="changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4232,18 +4039,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox28"> -+ <object class="GtkVBox" id="vbox28"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label74"> -+ <object class="GtkLabel" id="label74"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Stacking</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4251,15 +4058,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox34"> -+ <object class="GtkHBox" id="hbox34"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label72"> -+ <object class="GtkLabel" id="label72"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4267,12 +4074,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox31"> -+ <object class="GtkVBox" id="vbox31"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkRadioButton" id="dock_stack_top"> -+ <object class="GtkRadioButton" id="dock_stack_top"> - <property name="label" translatable="yes">Keep dock _above other windows</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4280,8 +4087,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_dock_stacking_top_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_stacking_top_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4289,7 +4096,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkRadioButton" id="dock_stack_normal"> -+ <object class="GtkRadioButton" id="dock_stack_normal"> - <property name="label" translatable="yes">A_llow dock to be both above and below windows</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4298,8 +4105,8 @@ Omnipresent (On all desktops)</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> - <property name="group">dock_stack_top</property> -- <signal name="toggled" handler="on_dock_stacking_normal_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_stacking_normal_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4307,7 +4114,7 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkRadioButton" id="dock_stack_bottom"> -+ <object class="GtkRadioButton" id="dock_stack_bottom"> - <property name="label" translatable="yes">Keep dock _below other windows</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4316,29 +4123,29 @@ Omnipresent (On all desktops)</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> - <property name="group">dock_stack_top</property> -- <signal name="toggled" handler="on_dock_stacking_bottom_toggled" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_stacking_bottom_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4346,18 +4153,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox29"> -+ <object class="GtkVBox" id="vbox29"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="label75"> -+ <object class="GtkLabel" id="label75"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><span weight="bold">Hiding</span></property> - <property name="use_markup">True</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4365,15 +4172,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox35"> -+ <object class="GtkHBox" id="hbox35"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label73"> -+ <object class="GtkLabel" id="label73"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4381,12 +4188,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkVBox" id="vbox32"> -+ <object class="GtkVBox" id="vbox32"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkCheckButton" id="dock_hide"> -+ <object class="GtkCheckButton" id="dock_hide"> - <property name="label" translatable="yes">_Hide off screen</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4394,8 +4201,8 @@ Omnipresent (On all desktops)</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> -- <signal name="toggled" handler="on_dock_hide_toggled"/> -- </widget> -+ <signal handler="on_dock_hide_toggled" name="toggled"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4403,15 +4210,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox37"> -+ <object class="GtkHBox" id="hbox37"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label77"> -+ <object class="GtkLabel" id="label77"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4419,19 +4226,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox23"> -+ <object class="GtkHBox" id="hbox23"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="dock_hide_label"> -+ <object class="GtkLabel" id="dock_hide_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">_Delay before hiding:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">dock_hide_delay</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4439,18 +4246,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="dock_hide_delay"> -+ <object class="GtkSpinButton" id="dock_hide_delay"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">300 0 10000 10 10 0</property> -+ <property name="adjustment">adjustment18</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_dock_hide_delay_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_hide_delay_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -4458,25 +4265,25 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="dock_hide_label_units"> -+ <object class="GtkLabel" id="dock_hide_label_units"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -4484,15 +4291,15 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox56"> -+ <object class="GtkHBox" id="hbox56"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkLabel" id="label107"> -+ <object class="GtkLabel" id="label107"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label"> </property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4500,19 +4307,19 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox57"> -+ <object class="GtkHBox" id="hbox57"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="spacing">6</property> - <child> -- <widget class="GtkLabel" id="dock_show_label"> -+ <object class="GtkLabel" id="dock_show_label"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Delay before _showing:</property> - <property name="use_underline">True</property> - <property name="mnemonic_widget">dock_show_delay</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> -@@ -4520,18 +4327,18 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkSpinButton" id="dock_show_delay"> -+ <object class="GtkSpinButton" id="dock_show_delay"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="primary_icon_activatable">False</property> - <property name="secondary_icon_activatable">False</property> - <property name="primary_icon_sensitive">True</property> - <property name="secondary_icon_sensitive">True</property> -- <property name="adjustment">300 0 10000 10 10 0</property> -+ <property name="adjustment">adjustment19</property> - <property name="climb_rate">1</property> - <property name="numeric">True</property> -- <signal name="value_changed" handler="on_dock_show_delay_value_changed" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_dock_show_delay_value_changed" name="value_changed"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">True</property> -@@ -4539,73 +4346,69 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkLabel" id="dock_show_label_units"> -+ <object class="GtkLabel" id="dock_show_label_units"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes">ms</property> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">2</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">3</property> - </packing> - </child> -- </widget> -- <packing> -- <property name="position">7</property> -- </packing> -+ </object> - </child> -- <child> -- <widget class="GtkLabel" id="label41"> -+ <child type="tab"> -+ <object class="GtkLabel" id="label41"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="xalign">0</property> - <property name="xpad">6</property> - <property name="ypad">8</property> - <property name="label" translatable="yes">Dock</property> -- </widget> -+ </object> - <packing> - <property name="position">7</property> - <property name="tab_fill">False</property> -- <property name="type">tab</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -4613,16 +4416,16 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHBox" id="hbox39"> -+ <object class="GtkHBox" id="hbox39"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> -- <widget class="GtkHButtonBox" id="hbuttonbox1"> -+ <object class="GtkHButtonBox" id="hbuttonbox1"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="layout_style">start</property> - <child> -- <widget class="GtkButton" id="about"> -+ <object class="GtkButton" id="about"> - <property name="label" translatable="yes">Abo_ut</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4630,15 +4433,15 @@ Omnipresent (On all desktops)</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_underline">True</property> -- <signal name="clicked" handler="on_about_clicked" after="yes"/> -- </widget> -+ <signal after="yes" handler="on_about_clicked" name="clicked"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> -@@ -4646,12 +4449,12 @@ Omnipresent (On all desktops)</property> - </packing> - </child> - <child> -- <widget class="GtkHButtonBox" id="hbuttonbox2"> -+ <object class="GtkHButtonBox" id="hbuttonbox3"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="layout_style">end</property> - <child> -- <widget class="GtkButton" id="close"> -+ <object class="GtkButton" id="close"> - <property name="label">gtk-close</property> - <property name="visible">True</property> - <property name="can_focus">True</property> -@@ -4659,29 +4462,29 @@ Omnipresent (On all desktops)</property> - <property name="receives_default">False</property> - <property name="use_action_appearance">False</property> - <property name="use_stock">True</property> -- <signal name="clicked" handler="on_close_clicked"/> -- </widget> -+ <signal handler="on_close_clicked" name="clicked"/> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">1</property> - </packing> - </child> -- </widget> -+ </object> - </child> -- </widget> --</glade-interface> -+ </object> -+</interface> -diff --git a/src/preview.c b/src/preview.c -index 36fc94a..f52bb32 100644 ---- a/src/preview.c -+++ b/src/preview.c -@@ -54,7 +54,7 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - RrAppearance *bullet; /* for submenu */ - - GdkPixmap *pixmap; -- GdkPixbuf *pixbuf; -+ GdkPixbuf *pixbuf, *tmp_pixbuf; - - /* width and height of the whole menu */ - gint width, height; -@@ -104,6 +104,7 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - /* set border */ - pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height); - gdk_pixbuf_fill(pixbuf, rr_color_pixel(theme->menu_border_color)); -+ tmp_pixbuf = gdk_pixbuf_copy(pixbuf); - - /* menu appears after inside the border */ - x = y = theme->mbwidth; -@@ -126,9 +127,11 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - theme_pixmap_paint(title_text, bw, title_h); - - pixmap = gdk_pixmap_foreign_new(title_text->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, bw, title_h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ bw, title_h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, title_h, pixbuf, x, y); - - y += title_h + theme->mbwidth; - -@@ -141,9 +144,11 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - /* draw background for normal entry */ - theme_pixmap_paint(background, bw, bh); - pixmap = gdk_pixmap_foreign_new(background->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ bw, bh); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw normal entry */ - normal->surface.parent = background; -@@ -152,10 +157,12 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - RrMinSize(normal, &tw, &th); - theme_pixmap_paint(normal, tw, th); - pixmap = gdk_pixmap_foreign_new(normal->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x + PADDING, y + PADDING, -- tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ tw, th); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, -+ x + PADDING, y + PADDING); - - /* draw bullet */ - RrMinSize(normal, &tw, &th); -@@ -164,12 +171,12 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - bullet->surface.parenty = PADDING; - theme_pixmap_paint(bullet, th, th); - pixmap = gdk_pixmap_foreign_new(bullet->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, -- width - theme->mbwidth - th, -- y + PADDING, -- th, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ th, th); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, th, th, pixbuf, -+ width - theme->mbwidth - th, y + PADDING); - - y += th + 2*PADDING; - -@@ -179,10 +186,11 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - background->surface.parenty = y - theme->mbwidth; - theme_pixmap_paint(background, bw, bh); - pixmap = gdk_pixmap_foreign_new(background->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, -- bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ bw, bh); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw disabled entry */ - RrMinSize(disabled, &tw, &th); -@@ -191,10 +199,12 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - disabled->surface.parenty = PADDING; - theme_pixmap_paint(disabled, tw, th); - pixmap = gdk_pixmap_foreign_new(disabled->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x + PADDING, y + PADDING, -- tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ tw, th); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, -+ x + PADDING, y + PADDING); - - y += th + 2*PADDING; - -@@ -206,10 +216,11 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - - theme_pixmap_paint(background, bw, bh); - pixmap = gdk_pixmap_foreign_new(background->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, -- bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ bw, bh); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw selected entry */ - RrMinSize(selected, &tw, &th); -@@ -218,10 +229,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - selected->surface.parenty = PADDING; - theme_pixmap_paint(selected, tw, th); - pixmap = gdk_pixmap_foreign_new(selected->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x + PADDING, y + PADDING, -- tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, -+ tw, th); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, -+ x + PADDING, y + PADDING); -+ g_object_unref(tmp_pixbuf); - - return pixbuf; - } -@@ -234,7 +248,7 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - RrAppearance *a; - - GdkPixmap *pixmap; -- GdkPixbuf *pixbuf = NULL; -+ GdkPixbuf *pixbuf = NULL, *tmp_pixbuf = NULL; - GdkPixbuf *scratch; - - gint w, label_w, h, x, y; -@@ -249,6 +263,7 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - rr_color_pixel(focus ? - theme->frame_focused_border_color : - theme->frame_unfocused_border_color)); -+ tmp_pixbuf = gdk_pixbuf_copy(pixbuf); - - /* title */ - w = width - 2*theme->fbwidth; -@@ -257,9 +272,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - x = y = theme->fbwidth; - pixmap = gdk_pixmap_foreign_new(title->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* calculate label width */ - label_w = width - (theme->paddingx + theme->fbwidth + 1) * 2; -@@ -302,9 +318,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - theme_pixmap_paint(a, w, h); - pixmap = gdk_pixmap_foreign_new(a->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - x += theme->button_size + 2 + theme->paddingx + 1; - } else if (*layout == 'L') { /* label */ -@@ -319,9 +336,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - theme_pixmap_paint(a, w, h); - pixmap = gdk_pixmap_foreign_new(a->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - x += w + theme->paddingx + 1; - } else { -@@ -367,9 +385,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - pixmap = gdk_pixmap_foreign_new(a->pixmap); - /* use y + 1 because these buttons should be centered wrt the label - */ -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y + 1, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y + 1); - - x += theme->button_size + theme->paddingx + 1; - } -@@ -385,9 +404,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - theme_pixmap_paint(handle, w, h); - pixmap = gdk_pixmap_foreign_new(handle->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* openbox handles this drawing stuff differently (it fills the bottom - * of the window with the handle), so it avoids this bug where -@@ -406,15 +426,17 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - theme_pixmap_paint(a, w, h); - pixmap = gdk_pixmap_foreign_new(a->pixmap); -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* right grip */ - x = width - theme->fbwidth - theme->grip_width; -- pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, x, y, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -+ gdk_colormap_get_system(), -+ 0, 0, 0, 0, w, h); -+ gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - } - - /* title separator colour */ -@@ -452,6 +474,7 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - pixbuf, - x + theme->cbwidthx, - y + theme->cbwidthy); -+ g_object_unref(scratch); - - return pixbuf; - } -@@ -531,13 +554,16 @@ GdkPixbuf *preview_theme(const gchar *name, const gchar *titlelayout, - - window = preview_window(theme, titlelayout, FALSE, window_w, h); - gdk_pixbuf_copy_area(window, 0, 0, window_w, h, preview, 20, 0); -+ g_object_unref(window); - - window = preview_window(theme, titlelayout, TRUE, window_w, h); - gdk_pixbuf_copy_area(window, 0, 0, window_w, h, - preview, 10, theme->title_height + 5); -+ g_object_unref(window); - - gdk_pixbuf_copy_area(menu, 0, 0, menu_w, h, - preview, 0, 2 * (theme->title_height + 5)); -+ g_object_unref(menu); - - RrThemeFree(theme); - -diff --git a/src/preview_update.c b/src/preview_update.c -index 638f364..965431e 100644 ---- a/src/preview_update.c -+++ b/src/preview_update.c -@@ -136,8 +136,10 @@ static gboolean update_theme_preview_iterate(gpointer data) - inactive_window_font, menu_title_font, - menu_item_font, osd_active_font, - osd_inactive_font); -- if (preview) -+ if (preview) { - gtk_list_store_set(GTK_LIST_STORE(ls), &iter, 1, preview, -1); -+ g_object_unref(preview); -+ } - - return TRUE; - } -diff --git a/src/tree.c b/src/tree.c -index cbe9b90..4ad4a38 100644 ---- a/src/tree.c -+++ b/src/tree.c -@@ -114,7 +114,7 @@ void tree_apply() - - ce.xclient.type = ClientMessage; - ce.xclient.message_type = gdk_x11_get_xatom_by_name("_OB_CONTROL"); -- ce.xclient.display = GDK_DISPLAY(); -+ ce.xclient.display = gdk_x11_get_default_xdisplay(); - ce.xclient.window = GDK_ROOT_WINDOW(); - ce.xclient.format = 32; - ce.xclient.data.l[0] = 1; /* reconfigure */ -@@ -122,7 +122,7 @@ void tree_apply() - ce.xclient.data.l[2] = 0; - ce.xclient.data.l[3] = 0; - ce.xclient.data.l[4] = 0; -- XSendEvent(GDK_DISPLAY(), GDK_ROOT_WINDOW(), FALSE, -+ XSendEvent(gdk_x11_get_default_xdisplay(), GDK_ROOT_WINDOW(), FALSE, - SubstructureNotifyMask | SubstructureRedirectMask, - &ce); - } -diff --git a/src/windows.c b/src/windows.c -index 146a99d..ed289b7 100644 ---- a/src/windows.c -+++ b/src/windows.c -@@ -50,23 +50,23 @@ void windows_setup_tab() - w = get_widget("place_active_popup"); - s = tree_get_string("placement/monitor", "Any"); - if (!g_ascii_strcasecmp(s, "Active")) -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_ACTIVE); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ACTIVE); - else if (!g_ascii_strcasecmp(s, "Mouse")) -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_MOUSE); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_MOUSE); - else if (!g_ascii_strcasecmp(s, "Primary")) -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_PRIMARY); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_PRIMARY); - else -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_ALL); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ALL); - g_free(s); - - w = get_widget("primary_monitor_popup"); - s = tree_get_string("placement/primaryMonitor", ""); - if (!g_ascii_strcasecmp(s, "Active")) -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_ACTIVE); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ACTIVE); - else if (!g_ascii_strcasecmp(s, "Mouse")) -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_MOUSE); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_MOUSE); - else { -- gtk_option_menu_set_history(GTK_OPTION_MENU(w), PLACE_ON_FIXED); -+ gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_FIXED); - - w = get_widget("fixed_monitor"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), -@@ -88,36 +88,30 @@ static void enable_stuff() - b = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); - - w = get_widget("primary_monitor_popup"); -- b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) == PLACE_ON_FIXED; -+ b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) == PLACE_ON_FIXED; - w = get_widget("fixed_monitor"); - gtk_widget_set_sensitive(w, b); - } - --void on_primary_monitor_active_activate(GtkMenuItem *w, gpointer data) -+void on_primary_monitor_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("placement/primaryMonitor", "Active"); -- enable_stuff(); --} -- --void on_primary_monitor_mouse_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("placement/primaryMonitor", "Mouse"); -- enable_stuff(); --} -- --void on_primary_monitor_fixed_activate(GtkMenuItem *w, gpointer data) --{ -- GtkWidget *w2; -- -- if (mapping) return; -- -- w2 = get_widget("fixed_monitor"); -- tree_set_int("placement/primaryMonitor", -- gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(w2))); -+ switch (gtk_combo_box_get_active(w)) { -+ case 0: -+ { -+ GtkWidget *w2 = get_widget("fixed_monitor"); -+ tree_set_int("placement/primaryMonitor", -+ gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(w2))); -+ break; -+ } -+ break; -+ case 1: -+ tree_set_string("placement/primaryMonitor", "Active"); -+ break; -+ case 2: -+ tree_set_string("placement/primaryMonitor", "Mouse"); -+ } - enable_stuff(); - } - -@@ -146,30 +140,22 @@ void on_place_mouse_toggled(GtkToggleButton *w, gpointer data) - enable_stuff(); - } - --void on_place_active_popup_all_activate(GtkMenuItem *w, gpointer data) -+void on_place_active_popup_changed(GtkComboBox *w, gpointer data) - { - if (mapping) return; - -- tree_set_string("placement/monitor", "Any"); --} -- --void on_place_active_popup_active_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("placement/monitor", "Active"); --} -- --void on_place_active_popup_mouse_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("placement/monitor", "Mouse"); --} -- --void on_place_active_popup_primary_activate(GtkMenuItem *w, gpointer data) --{ -- if (mapping) return; -- -- tree_set_string("placement/monitor", "Primary"); -+ switch (gtk_combo_box_get_active(w)) { -+ case 0: -+ tree_set_string("placement/monitor", "Primary"); -+ break; -+ case 1: -+ tree_set_string("placement/monitor", "Active"); -+ break; -+ case 2: -+ tree_set_string("placement/monitor", "Mouse"); -+ break; -+ case 3: -+ tree_set_string("placement/monitor", "Any"); -+ break; -+ } - } --- -1.9.1 - diff --git a/repos/xorg/obconf/switch-to-gtk3.patch b/repos/xorg/obconf/switch-to-gtk3.patch deleted file mode 100644 index 510435ab..00000000 --- a/repos/xorg/obconf/switch-to-gtk3.patch +++ /dev/null @@ -1,349 +0,0 @@ -From b2d08e79f8499723ae4dffe8068381dd108898cb Mon Sep 17 00:00:00 2001 -From: galtgendo <galtgendo> -Date: Sat, 17 Aug 2013 20:55:04 +0200 -Subject: [PATCH] Switch to GTK+ 3 - ---- - configure.ac | 2 +- - src/preview.c | 180 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 112 insertions(+), 70 deletions(-) - -diff --git a/configure.ac b/configure.ac -index b99620f..86df550 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -27,7 +27,7 @@ PKG_CHECK_MODULES(LIBSTARTUPNOTIFICATION, [libstartup-notification-1.0]) - AC_SUBST(LIBSTARTUPNOTIFICATION_CFLAGS) - AC_SUBST(LIBSTARTUPNOTIFICATION_LIBS) - --PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.24.0]) -+PKG_CHECK_MODULES(GTK, [gtk+-3.0]) - AC_SUBST(GTK_CFLAGS) - AC_SUBST(GTK_LIBS) - -diff --git a/src/preview.c b/src/preview.c -index f52bb32..c00c3c0 100644 ---- a/src/preview.c -+++ b/src/preview.c -@@ -24,6 +24,8 @@ - #include <string.h> - - #include <obrender/theme.h> -+#include <gdk/gdkx.h> -+#include <cairo-xlib.h> - - #define PADDING 2 /* openbox does it :/ */ - -@@ -53,7 +55,10 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - RrAppearance *selected; - RrAppearance *bullet; /* for submenu */ - -- GdkPixmap *pixmap; -+ cairo_surface_t *surface; -+ GdkScreen *screen; -+ Display *xdisplay; -+ Visual *xvisual; - GdkPixbuf *pixbuf, *tmp_pixbuf; - - /* width and height of the whole menu */ -@@ -64,6 +69,10 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - gint bw, bh; - gint unused; - -+ screen = gdk_screen_get_default(); -+ xdisplay = gdk_x11_get_default_xdisplay(); -+ xvisual = gdk_x11_visual_get_xvisual(gdk_screen_get_system_visual(screen)); -+ - /* set up appearances */ - title = theme->a_menu_title; - -@@ -126,11 +135,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - - theme_pixmap_paint(title_text, bw, title_h); - -- pixmap = gdk_pixmap_foreign_new(title_text->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- bw, title_h); -+ surface = cairo_xlib_surface_create(xdisplay, title_text->pixmap, -+ xvisual, -+ bw, title_h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ bw, title_h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, title_h, pixbuf, x, y); - - y += title_h + theme->mbwidth; -@@ -143,11 +154,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - - /* draw background for normal entry */ - theme_pixmap_paint(background, bw, bh); -- pixmap = gdk_pixmap_foreign_new(background->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- bw, bh); -+ surface = cairo_xlib_surface_create(xdisplay, background->pixmap, -+ xvisual, -+ bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ bw, bh); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw normal entry */ -@@ -156,11 +169,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - normal->surface.parenty = PADDING; - RrMinSize(normal, &tw, &th); - theme_pixmap_paint(normal, tw, th); -- pixmap = gdk_pixmap_foreign_new(normal->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- tw, th); -+ surface = cairo_xlib_surface_create(xdisplay, normal->pixmap, -+ xvisual, -+ tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ tw, th); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, - x + PADDING, y + PADDING); - -@@ -170,11 +185,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - bullet->surface.parentx = bw - th; - bullet->surface.parenty = PADDING; - theme_pixmap_paint(bullet, th, th); -- pixmap = gdk_pixmap_foreign_new(bullet->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- th, th); -+ surface = cairo_xlib_surface_create(xdisplay, bullet->pixmap, -+ xvisual, -+ th, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ th, th); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, th, th, pixbuf, - width - theme->mbwidth - th, y + PADDING); - -@@ -185,11 +202,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - background->surface.parentx = x - theme->mbwidth; - background->surface.parenty = y - theme->mbwidth; - theme_pixmap_paint(background, bw, bh); -- pixmap = gdk_pixmap_foreign_new(background->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- bw, bh); -+ surface = cairo_xlib_surface_create(xdisplay, background->pixmap, -+ xvisual, -+ bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ bw, bh); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw disabled entry */ -@@ -198,11 +217,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - disabled->surface.parentx = PADDING; - disabled->surface.parenty = PADDING; - theme_pixmap_paint(disabled, tw, th); -- pixmap = gdk_pixmap_foreign_new(disabled->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- tw, th); -+ surface = cairo_xlib_surface_create(xdisplay, disabled->pixmap, -+ xvisual, -+ tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ tw, th); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, - x + PADDING, y + PADDING); - -@@ -215,11 +236,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - background->surface.parenty = y - theme->mbwidth; - - theme_pixmap_paint(background, bw, bh); -- pixmap = gdk_pixmap_foreign_new(background->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- bw, bh); -+ surface = cairo_xlib_surface_create(xdisplay, background->pixmap, -+ xvisual, -+ bw, bh); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ bw, bh); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, bw, bh, pixbuf, x, y); - - /* draw selected entry */ -@@ -228,11 +251,13 @@ static GdkPixbuf* preview_menu(RrTheme *theme) - selected->surface.parentx = PADDING; - selected->surface.parenty = PADDING; - theme_pixmap_paint(selected, tw, th); -- pixmap = gdk_pixmap_foreign_new(selected->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, -- tw, th); -+ surface = cairo_xlib_surface_create(xdisplay, selected->pixmap, -+ xvisual, -+ tw, th); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, -+ tw, th); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, tw, th, pixbuf, - x + PADDING, y + PADDING); - g_object_unref(tmp_pixbuf); -@@ -247,7 +272,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - RrAppearance *handle; - RrAppearance *a; - -- GdkPixmap *pixmap; -+ cairo_surface_t *surface; -+ GdkScreen *screen; -+ Display *xdisplay; -+ Visual *xvisual; - GdkPixbuf *pixbuf = NULL, *tmp_pixbuf = NULL; - GdkPixbuf *scratch; - -@@ -255,6 +283,10 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - - const gchar *layout; - -+ screen = gdk_screen_get_default(); -+ xdisplay = gdk_x11_get_default_xdisplay(); -+ xvisual = gdk_x11_visual_get_xvisual(gdk_screen_get_system_visual(screen)); -+ - title = focus ? theme->a_focused_title : theme->a_unfocused_title; - - /* set border */ -@@ -271,10 +303,12 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - theme_pixmap_paint(title, w, h); - - x = y = theme->fbwidth; -- pixmap = gdk_pixmap_foreign_new(title->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ surface = cairo_xlib_surface_create(xdisplay, title->pixmap, -+ xvisual, -+ w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* calculate label width */ -@@ -317,10 +351,12 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - w = h = theme->button_size + 2; - - theme_pixmap_paint(a, w, h); -- pixmap = gdk_pixmap_foreign_new(a->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ surface = cairo_xlib_surface_create(xdisplay, a->pixmap, -+ xvisual, -+ w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - x += theme->button_size + 2 + theme->paddingx + 1; -@@ -335,10 +371,12 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - h = theme->label_height; - - theme_pixmap_paint(a, w, h); -- pixmap = gdk_pixmap_foreign_new(a->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ surface = cairo_xlib_surface_create(xdisplay, a->pixmap, -+ xvisual, -+ w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - x += w + theme->paddingx + 1; -@@ -382,12 +420,14 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - h = theme->button_size; - - theme_pixmap_paint(a, w, h); -- pixmap = gdk_pixmap_foreign_new(a->pixmap); -+ surface = cairo_xlib_surface_create(xdisplay, a->pixmap, -+ xvisual, -+ w, h); - /* use y + 1 because these buttons should be centered wrt the label - */ -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y + 1); - - x += theme->button_size + theme->paddingx + 1; -@@ -403,10 +443,12 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - h = theme->handle_height; - - theme_pixmap_paint(handle, w, h); -- pixmap = gdk_pixmap_foreign_new(handle->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ surface = cairo_xlib_surface_create(xdisplay, handle->pixmap, -+ xvisual, -+ w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* openbox handles this drawing stuff differently (it fills the bottom -@@ -425,17 +467,17 @@ static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout, - w = theme->grip_width; - - theme_pixmap_paint(a, w, h); -- pixmap = gdk_pixmap_foreign_new(a->pixmap); -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ surface = cairo_xlib_surface_create(xdisplay, a->pixmap, -+ xvisual, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - - /* right grip */ - x = width - theme->fbwidth - theme->grip_width; -- tmp_pixbuf = gdk_pixbuf_get_from_drawable(tmp_pixbuf, pixmap, -- gdk_colormap_get_system(), -- 0, 0, 0, 0, w, h); -+ tmp_pixbuf = gdk_pixbuf_get_from_surface(surface, -+ 0, 0, w, h); -+ cairo_surface_destroy(surface); - gdk_pixbuf_copy_area(tmp_pixbuf, 0, 0, w, h, pixbuf, x, y); - } - --- -1.9.1 - diff --git a/repos/xorg/obmenu-generator/.checksum b/repos/xorg/obmenu-generator/.checksum deleted file mode 100644 index 0f025852..00000000 --- a/repos/xorg/obmenu-generator/.checksum +++ /dev/null @@ -1 +0,0 @@ -26f2bd4c033f1471eb06a7255d821df49cd2c1ef3f625309c08c6c822677dad7 obmenu-generator-0.93.tar.gz diff --git a/repos/xorg/obmenu-generator/.files b/repos/xorg/obmenu-generator/.files deleted file mode 100644 index 6eba2175..00000000 --- a/repos/xorg/obmenu-generator/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/obmenu-generator/ --rw-r--r-- root/root etc/xdg/obmenu-generator/schema.pl.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/obmenu-generator diff --git a/repos/xorg/obmenu-generator/abuild b/repos/xorg/obmenu-generator/abuild deleted file mode 100644 index b0a3af04..00000000 --- a/repos/xorg/obmenu-generator/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=obmenu-generator -version=0.93 -release=1 -source="https://github.com/trizen/$name/archive/$version/$name-$version.tar.gz" - -build() { - install -Dm755 $name $PKG/usr/bin/$name - install -Dm644 schema.pl $PKG/etc/xdg/$name/schema.pl -} diff --git a/repos/xorg/obmenu-generator/depends b/repos/xorg/obmenu-generator/depends deleted file mode 100644 index f40b0210..00000000 --- a/repos/xorg/obmenu-generator/depends +++ /dev/null @@ -1,2 +0,0 @@ -perl-data-dump -perl-linux-desktopfiles diff --git a/repos/xorg/openbox/.checksum b/repos/xorg/openbox/.checksum deleted file mode 100644 index fe7f81e4..00000000 --- a/repos/xorg/openbox/.checksum +++ /dev/null @@ -1 +0,0 @@ -8e3a1d5f13e3cd23057377d5ffc579aaf88dd503d4091b938331b77601c4e110 openbox-3.6.1.tar.gz diff --git a/repos/xorg/openbox/.files b/repos/xorg/openbox/.files deleted file mode 100644 index 7455758d..00000000 --- a/repos/xorg/openbox/.files +++ /dev/null @@ -1,142 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/openbox/ --rwxr-xr-x root/root etc/xdg/openbox/autostart.new --rwxr-xr-x root/root etc/xdg/openbox/environment.new --rw-r--r-- root/root etc/xdg/openbox/menu.xml.new --rw-r--r-- root/root etc/xdg/openbox/rc.xml.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/gdm-control --rwxr-xr-x root/root usr/bin/gnome-panel-control --rwxr-xr-x root/root usr/bin/obxprop --rwxr-xr-x root/root usr/bin/openbox --rwxr-xr-x root/root usr/bin/openbox-gnome-session --rwxr-xr-x root/root usr/bin/openbox-kde-session --rwxr-xr-x root/root usr/bin/openbox-session -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/openbox/ -drwxr-xr-x root/root usr/include/openbox/3.6/ -drwxr-xr-x root/root usr/include/openbox/3.6/obrender/ --rw-r--r-- root/root usr/include/openbox/3.6/obrender/color.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/font.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/geom.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/gradient.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/image.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/instance.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/mask.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/render.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/theme.h --rw-r--r-- root/root usr/include/openbox/3.6/obrender/version.h -drwxr-xr-x root/root usr/include/openbox/3.6/obt/ --rw-r--r-- root/root usr/include/openbox/3.6/obt/display.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/keyboard.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/link.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/paths.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/prop.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/signal.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/util.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/version.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/xml.h --rw-r--r-- root/root usr/include/openbox/3.6/obt/xqueue.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libobrender.so -> libobrender.so.32.0.0 -lrwxrwxrwx root/root usr/lib/libobrender.so.32 -> libobrender.so.32.0.0 --rwxr-xr-x root/root usr/lib/libobrender.so.32.0.0 -lrwxrwxrwx root/root usr/lib/libobt.so -> libobt.so.2.0.2 -lrwxrwxrwx root/root usr/lib/libobt.so.2 -> libobt.so.2.0.2 --rwxr-xr-x root/root usr/lib/libobt.so.2.0.2 --rwxr-xr-x root/root usr/lib/openbox-autostart --rwxr-xr-x root/root usr/lib/openbox-xdg-autostart -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/obrender-3.5.pc --rw-r--r-- root/root usr/lib/pkgconfig/obt-3.5.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/openbox.desktop -drwxr-xr-x root/root usr/share/gnome-session/ -drwxr-xr-x root/root usr/share/gnome-session/sessions/ --rw-r--r-- root/root usr/share/gnome-session/sessions/openbox-gnome-fallback.session --rw-r--r-- root/root usr/share/gnome-session/sessions/openbox-gnome.session -drwxr-xr-x root/root usr/share/gnome/ -drwxr-xr-x root/root usr/share/gnome/wm-properties/ --rw-r--r-- root/root usr/share/gnome/wm-properties/openbox.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/obxprop.1.gz --rw-r--r-- root/root usr/share/man/man1/openbox-gnome-session.1.gz --rw-r--r-- root/root usr/share/man/man1/openbox-kde-session.1.gz --rw-r--r-- root/root usr/share/man/man1/openbox-session.1.gz --rw-r--r-- root/root usr/share/man/man1/openbox.1.gz -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/openbox.png -drwxr-xr-x root/root usr/share/themes/ -drwxr-xr-x root/root usr/share/themes/Artwiz-boxed/ -drwxr-xr-x root/root usr/share/themes/Artwiz-boxed/openbox-3/ --rw-r--r-- root/root usr/share/themes/Artwiz-boxed/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Bear2/ -drwxr-xr-x root/root usr/share/themes/Bear2/openbox-3/ --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/close.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/close_pressed.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/desk.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/desk_toggled.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/iconify.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/iconify_pressed.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/max.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/max_pressed.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/max_toggled.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/shade.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/shade_pressed.xbm --rw-r--r-- root/root usr/share/themes/Bear2/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Clearlooks-3.4/ -drwxr-xr-x root/root usr/share/themes/Clearlooks-3.4/openbox-3/ --rw-r--r-- root/root usr/share/themes/Clearlooks-3.4/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Clearlooks-Olive/ -drwxr-xr-x root/root usr/share/themes/Clearlooks-Olive/openbox-3/ --rw-r--r-- root/root usr/share/themes/Clearlooks-Olive/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Clearlooks/ -drwxr-xr-x root/root usr/share/themes/Clearlooks/openbox-3/ --rw-r--r-- root/root usr/share/themes/Clearlooks/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Mikachu/ -drwxr-xr-x root/root usr/share/themes/Mikachu/openbox-3/ --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/bullet.xbm --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/close.xbm --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/desk.xbm --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/iconify.xbm --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/max.xbm --rw-r--r-- root/root usr/share/themes/Mikachu/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Natura/ -drwxr-xr-x root/root usr/share/themes/Natura/openbox-3/ --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/close.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/close_hover.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/desk.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/desk_hover.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/desk_toggled.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/iconify.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/iconify_hover.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/max.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/max_hover.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/max_toggled.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/shade.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/shade_hover.xbm --rw-r--r-- root/root usr/share/themes/Natura/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Onyx-Citrus/ -drwxr-xr-x root/root usr/share/themes/Onyx-Citrus/openbox-3/ --rw-r--r-- root/root usr/share/themes/Onyx-Citrus/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Onyx/ -drwxr-xr-x root/root usr/share/themes/Onyx/openbox-3/ --rw-r--r-- root/root usr/share/themes/Onyx/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Orang/ -drwxr-xr-x root/root usr/share/themes/Orang/openbox-3/ --rw-r--r-- root/root usr/share/themes/Orang/openbox-3/themerc -drwxr-xr-x root/root usr/share/themes/Syscrash/ -drwxr-xr-x root/root usr/share/themes/Syscrash/openbox-3/ --rw-r--r-- root/root usr/share/themes/Syscrash/openbox-3/max.xbm --rw-r--r-- root/root usr/share/themes/Syscrash/openbox-3/max_disabled.xbm --rw-r--r-- root/root usr/share/themes/Syscrash/openbox-3/max_pressed.xbm --rw-r--r-- root/root usr/share/themes/Syscrash/openbox-3/max_toggled.xbm --rw-r--r-- root/root usr/share/themes/Syscrash/openbox-3/themerc -drwxr-xr-x root/root usr/share/xsessions/ --rw-r--r-- root/root usr/share/xsessions/openbox-gnome.desktop --rw-r--r-- root/root usr/share/xsessions/openbox-kde.desktop --rw-r--r-- root/root usr/share/xsessions/openbox.desktop diff --git a/repos/xorg/openbox/abuild b/repos/xorg/openbox/abuild deleted file mode 100644 index 36d049fa..00000000 --- a/repos/xorg/openbox/abuild +++ /dev/null @@ -1,18 +0,0 @@ -name=openbox -version=3.6.1 -release=1 -source="http://$name.org/dist/$name/$name-$version.tar.gz" - -prebuild() { - 2to3 -w data/autostart/openbox-xdg-autostart - sed 's/python/python3/' -i data/autostart/openbox-xdg-autostart -} - -build() { - 2to3 -w data/autostart/openbox-xdg-autostart - sed 's/python/python3/' -i data/autostart/openbox-xdg-autostart - - ./configure --prefix=/usr - make - make -j1 DESTDIR=$PKG install -} diff --git a/repos/xorg/openbox/depends b/repos/xorg/openbox/depends deleted file mode 100644 index f3b3d9ac..00000000 --- a/repos/xorg/openbox/depends +++ /dev/null @@ -1,5 +0,0 @@ -libxinerama -libxrandr -imlib2 -libxcursor -startup-notification diff --git a/repos/xorg/openssh/.checksum b/repos/xorg/openssh/.checksum deleted file mode 100644 index 473a69bb..00000000 --- a/repos/xorg/openssh/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -4cb4d97b991b5593df23d723d455d89e86608df39454d6a734bbf06478130984 openssh-9.9p1.tar.gz -4012d0f90ad02ef57f7688b61d249061b7065e0b0fe7fcb7dd2d519cc9541a3c sshd.run diff --git a/repos/xorg/openssh/.files b/repos/xorg/openssh/.files deleted file mode 100644 index 70968087..00000000 --- a/repos/xorg/openssh/.files +++ /dev/null @@ -1,47 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/moduli.new --rw-r--r-- root/root etc/ssh_config.new --rw-r--r-- root/root etc/sshd_config.new -drwxr-xr-x root/root etc/sv/ -drwxr-xr-x root/root etc/sv/sshd/ --rwxr-xr-x root/root etc/sv/sshd/run.new -lrwxrwxrwx root/root etc/sv/sshd/supervise -> ../../../run/runit/supervise.sshd -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/scp --rwxr-xr-x root/root usr/bin/sftp --rwxr-xr-x root/root usr/bin/ssh --rwxr-xr-x root/root usr/bin/ssh-add --rwxr-xr-x root/root usr/bin/ssh-agent --rwxr-xr-x root/root usr/bin/ssh-keygen --rwxr-xr-x root/root usr/bin/ssh-keyscan -drwxr-xr-x root/root usr/libexec/ --rwxr-xr-x root/root usr/libexec/sftp-server --rws--x--x root/root usr/libexec/ssh-keysign --rwxr-xr-x root/root usr/libexec/ssh-pkcs11-helper --rwxr-xr-x root/root usr/libexec/ssh-sk-helper --rwxr-xr-x root/root usr/libexec/sshd-session -drwxr-xr-x root/root usr/sbin/ --rwxr-xr-x root/root usr/sbin/sshd -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/scp.1.gz --rw-r--r-- root/root usr/share/man/man1/sftp.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-add.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-agent.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-keygen.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-keyscan.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh.1.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/moduli.5.gz --rw-r--r-- root/root usr/share/man/man5/ssh_config.5.gz --rw-r--r-- root/root usr/share/man/man5/sshd_config.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/sftp-server.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-keysign.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-pkcs11-helper.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-sk-helper.8.gz --rw-r--r-- root/root usr/share/man/man8/sshd.8.gz -drwxr-xr-x root/root var/ -drwxr-xr-x root/root var/empty/ diff --git a/repos/xorg/openssh/abuild b/repos/xorg/openssh/abuild deleted file mode 100644 index 46314c92..00000000 --- a/repos/xorg/openssh/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=openssh -version=9.9p1 -release=1 -source="https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$name-$version.tar.gz - sshd.run" -sv="sshd.run" -build_opt="--without-zlib-version-check --with-privsep-user=nobody --with-privsep-path=/var/empty" -export CFLAGS="$CFLAGS -Wno-error=incompatible-pointer-types" diff --git a/repos/xorg/openssh/postinstall b/repos/xorg/openssh/postinstall deleted file mode 100755 index 981ce237..00000000 --- a/repos/xorg/openssh/postinstall +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -getent group sshd >/dev/null || groupadd -g 50 sshd -getent passwd messagebus >/dev/null || \ - useradd -c 'sshd PrivSep' \ - -d /var/lib/sshd \ - -g sshd \ - -s /bin/false \ - -u 50 sshd - diff --git a/repos/xorg/openssh/sshd.run b/repos/xorg/openssh/sshd.run deleted file mode 100755 index 8079fc4b..00000000 --- a/repos/xorg/openssh/sshd.run +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -exec 2>&1 -ssh-keygen -A >/dev/null 2>&1 # Will generate host keys if they don't already exist -[ -r conf ] && . ./conf -exec sshd -D $OPTS diff --git a/repos/xorg/paper-icon-theme/.checksum b/repos/xorg/paper-icon-theme/.checksum deleted file mode 100644 index 3a1cf40a..00000000 --- a/repos/xorg/paper-icon-theme/.checksum +++ /dev/null @@ -1 +0,0 @@ -33bae8e94936925b250dcb0cfc1aaac7a3753b455c7ac3750eddc79802f968e4 paper-icon-theme-1.5.0.tar.gz diff --git a/repos/xorg/paper-icon-theme/.files b/repos/xorg/paper-icon-theme/.files deleted file mode 100644 index 60cf5356..00000000 --- a/repos/xorg/paper-icon-theme/.files +++ /dev/null @@ -1,28429 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/ -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/ -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/ --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage01-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage02-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-stage03-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/animations/nm-vpn-connecting14.svg -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/ --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/account-logged-in.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/application-running.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-input-microphone-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-input-microphone-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-output-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-output-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-muted-blocking-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-muted-blocking.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/avatar-default.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-caution-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-empty-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-good-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-low-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-medium-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/battery_plugged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/blueman-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/blueman-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/blueman-tray-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/blueman-tray-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/blueman-tray.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-paired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/bluetooth-paired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/caffeine-cup-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/caffeine-cup-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/clipboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/clipit-trayicon.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/connect_creating.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/connect_established.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/cpu-frequency-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/deluge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/diodon-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-blank.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-busy2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-logo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/dropboxstatus-x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-available.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-extended-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/empathy-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/fluxgui-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/glipper.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/glippy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-disconn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-rx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-tx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnome-netstatus-txrx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gnote.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/google-chrome-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/google-hangouts-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpaste.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/grive-app-ind.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-full-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-high-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-low-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-medium-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-none-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gsm-3g-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/gtk-dialog-authentication-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/ic_light_enpass.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/im-skype.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ak.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Am.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ar.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Av.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Az-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Az-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Az.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Be.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bg-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bg.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bn-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bn-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Br-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Br-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Br-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Br.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Bs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-By-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-By-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-By-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-By.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ch.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Cs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Da.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-De.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Dv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Dz.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ee.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-28.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-29.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-31.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-32.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-33.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-34.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-35.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-En.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Eo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Eo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Eo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Es.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Et-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Et-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Et-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Et-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Et.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fa-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fa-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ff.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-28.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-29.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-31.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Fr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ga-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ga-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ga.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Gu.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ha-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ha-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ha.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-He-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-He-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-He-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-He-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-He.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hu.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Hy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ie.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ig.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ik.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-In.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Is.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-It.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ja.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ka-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ka-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ka-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ka-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ka.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ki-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ki-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ki-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ki.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Km.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Kn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ko-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ko-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ko.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ku.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Lv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Md.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ml-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ml-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ml-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ml.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Mt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-My.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ne.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Nl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Nl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Nl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Nl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Nl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-No.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Or.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ph.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ps-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ps-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ps.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Pt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ro.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ru.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sd.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Si-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Si-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Si.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sq.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sw-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sw-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sw.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Sy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ta.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Te-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Te-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Te-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Te.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tg.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Th-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Th-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Th.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Tr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Ur.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uz-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uz-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uz-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uz-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Uz.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Vi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Wo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Xs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Yo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard-Zh.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-keyboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-messages-new.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-messages-red.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-messages.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/indicator-virtual-box.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/kazam-countdown.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/kazam-paused.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/kazam-recording.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/kazam-stopped.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/keyboard-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/krb-expiring-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/krb-no-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/krb-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/microphone-sensitivity-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/microphone-sensitivity-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/microphone-sensitivity-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/microphone-sensitivity-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/mouse-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-4g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-gprs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-cellular-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-transmit-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-transmit.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-vpn-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-vpn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wired-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wired-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wired-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-hotspot.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/network-wireless-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-adhoc.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-device-wired-secureoffline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-no-connection.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-0-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-00-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-00.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-100-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-25-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-50-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-50.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-75-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-signal-75.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-tech-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-vpn-active-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-vpn-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-vpn-standalone-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/nm-wwan-tower.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/notes.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/onboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/phone-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/process-syncing-down.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/process-syncing-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/process-syncing-up.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/process-syncing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/redshift-status-off.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/redshift-status-on.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/remote-folder-sync-down.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/remote-folder-sync-up.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/remote-folder-sync.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/shutter-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-away-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connected-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connecting-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connecting-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connecting-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-connecting-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-disturb-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-disturb.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-invisible-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-offline-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/skype-status-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/spotify.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/steam_tray_mono.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-cloudy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-night-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-night-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/stock_weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/synapse.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-40.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-50.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-60.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-70.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-80.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/syspeek-90.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-devices-information.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-devices-panel-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-devices-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-log-out.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-shutdown-panel-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-shutdown-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/tomboy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/transmission-tray-icon.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/tray-message.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/tray-new-im.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/uget-tray-default.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/uget-tray-downloading.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/uget-tray-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-available-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-available.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-away-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-busy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-idle-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-invisible-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-offline-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-status-new.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/user-status-pending.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/variety-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/volume-level-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-overcast.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-severe-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-showers-scattered.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfce4-mixer-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfce4-mixer-no-record.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfce4-mixer-record.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfce4-mixer-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/22x22/panel/xfpm-ups-missing.svg -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/ -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/ --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage01-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage02-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-stage03-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/animations/nm-vpn-connecting14.svg -drwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/ --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/account-logged-in.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/airplane-mode.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/application-running.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-input-microphone-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-input-microphone-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-output-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-output-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-muted-blocking-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-muted-blocking.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/avatar-default.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-caution-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-empty-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-good-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-low-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-medium-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/battery_plugged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/blueman-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/blueman-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/blueman-tray-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/blueman-tray-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/blueman-tray.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-active.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-paired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/bluetooth-paired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/caffeine-cup-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/caffeine-cup-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/clipboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/clipit-trayicon.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/connect_creating.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/connect_established.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/cpu-frequency-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/deluge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/diodon-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-blank.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-busy2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-logo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/dropboxstatus-x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-available.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-extended-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/empathy-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/fluxgui-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/glipper.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/glippy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-disconn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-rx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-tx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnome-netstatus-txrx.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gnote.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/google-chrome-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/google-hangouts-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpaste.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/grive-app-ind.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-full-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-high-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-low-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-medium-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-none-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gsm-3g-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/gtk-dialog-authentication-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/ic_light_enpass.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/im-skype.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ak.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Am.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ar.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Av.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Az-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Az-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Az.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Be.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bg-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bg.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bn-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bn-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Br-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Br-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Br-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Br.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Bs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-By-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-By-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-By-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-By.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ch.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Cs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Da.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-De.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Dv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Dz.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ee.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-28.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-29.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-31.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-32.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-33.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-34.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-35.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-En.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Eo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Eo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Eo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Es.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Et-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Et-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Et-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Et-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Et.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fa-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fa-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ff.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-28.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-29.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-31.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Fr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ga-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ga-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ga.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Gu.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ha-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ha-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ha.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-He-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-He-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-He-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-He-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-He.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hu.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Hy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ie.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ig.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ik.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-In.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Is.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-It.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ja.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ka-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ka-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ka-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ka-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ka.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ki-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ki-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ki-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ki.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Km.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Kn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ko-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ko-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ko.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ku.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Lv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Md.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ml-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ml-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ml-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ml.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Mt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-My.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ne.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Nl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Nl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Nl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Nl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Nl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-No.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Or.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ph.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ps-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ps-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ps.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Pt.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ro.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-18.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-19.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-21.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-22.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-23.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-24.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-26.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-27.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ru.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sd.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Si-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Si-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Si.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sl.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sq.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sv.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sw-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sw-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sw.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Sy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ta.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Te-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Te-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Te-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Te.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tg.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Th-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Th-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Th.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Tr.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-7.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk-8.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uk.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Ur.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uz-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uz-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uz-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uz-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Uz.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Vi.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Wo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Xs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Yo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-4.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-5.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh-6.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard-Zh.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-keyboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-messages-new.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-messages-red.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-messages.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/indicator-virtual-box.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/kazam-countdown.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/kazam-paused.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/kazam-recording.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/kazam-stopped.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/keyboard-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/krb-expiring-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/krb-no-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/krb-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/microphone-sensitivity-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/microphone-sensitivity-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/microphone-sensitivity-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/microphone-sensitivity-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/mouse-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-4g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-gprs.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-cellular-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-transmit-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-transmit.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-vpn-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-vpn.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wired-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wired-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wired-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-hotspot.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/network-wireless-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-adhoc.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-device-wired-secureoffline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-no-connection.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-0-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-00-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-00.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-100-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-25-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-25.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-50-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-50.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-75-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-signal-75.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-tech-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-vpn-active-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-vpn-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-vpn-standalone-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/nm-wwan-tower.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/notes.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/notification-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/onboard.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/phone-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/process-syncing-down.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/process-syncing-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/process-syncing-up.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/process-syncing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/redshift-status-off.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/redshift-status-on.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/shutter-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-away-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connected-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connecting-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connecting-1.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connecting-2.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-connecting-3.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-disturb-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-disturb.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-invisible-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-offline-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/skype-status-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/spotify.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/steam_tray_mono.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-cloudy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-night-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-night-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/stock_weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/synapse.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-0.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-10.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-20.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-30.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-40.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-50.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-60.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-70.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-80.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/syspeek-90.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-devices-information.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-devices-panel-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-devices-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-log-out.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-shutdown-panel-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-shutdown-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/tomboy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/transmission-tray-icon.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/tray-message.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/tray-new-im.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/uget-tray-default.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/uget-tray-downloading.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/uget-tray-error.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-available-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-available.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-away-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-away.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-busy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-idle-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-invisible-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-offline-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-status-new.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/user-status-pending.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/variety-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-high.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-low.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/volume-level-none.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-overcast.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-severe-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-showers-scattered.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfce4-mixer-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfce4-mixer-no-record.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfce4-mixer-record.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfce4-mixer-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/24x24/panel/xfpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper-Mono-Dark/index.theme -drwxr-xr-x root/root usr/share/icons/Paper/ -drwxr-xr-x root/root usr/share/icons/Paper/16x16/ -drwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/action-unavailable.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/address-book-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/application-exit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/application-menu.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/appointment-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/appointment.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/back.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/bookmark-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/bookmark_add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/bookmarks_list_add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/bottom.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/browser-download.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/button_cancel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/calendar-go-today.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/call-start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/call-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/cancel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/centrejust.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/color-select.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/contact-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/dialog-cancel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/dialog-close.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/dialog-no.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-edit-decrypt.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-edit-encrypt.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-edit-sign-encrypt.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-encrypted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-export.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-import.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-open-recent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-open.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-page-setup.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-print-preview.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-print.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-properties.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-revert-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-revert.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-save-as.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-save.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/document-send.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/down.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-clear-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-clear-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-copy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-cut.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-delete.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-find-replace.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-find.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-paste.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-redo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-select-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-select.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-tag.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit-undo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/edit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editclear.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editcopy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editcut.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editdelete.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/editpaste.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/exit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filefind.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filenew.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/fileopen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filequickprint.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filesave.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/filesaveas.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/find-location.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/find.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/finish.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/focus-legacy-systray.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/focus-top-bar.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/focus-windows.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/folder-add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/folder-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/folder_new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/font-select.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-indent-less.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-indent-more.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-justify-center.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-justify-fill.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-justify-left.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-justify-right.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-bold.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-direction-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-direction-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-italic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-larger.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-remove-formatting.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-smaller.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-strikethrough.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/format-text-underline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-logout.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-run.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-searchtool.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-stock-mail-fwd.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-stock-mail-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-stock-mail-snd.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-stock-text-indent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gnome-stock-text-unindent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-bottom.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-first.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-jump-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-jump.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-last.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-next.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-previous.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-top.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/go-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gohome.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-bold.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-cancel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-close.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-copy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-cut.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-delete.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-execute.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-find-and-replace.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-find.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-back-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-back-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-forward-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-forward-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-go-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-bottom.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-first-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-first-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-last-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-last-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-goto-top.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-indent-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-indent-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-italic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-jump-to-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-jump-to-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-justify-center.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-justify-fill.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-justify-left.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-justify-right.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-leave-fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-forward-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-forward-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-next-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-next-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-pause.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-play-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-previous-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-previous-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-rewind-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-rewind-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-media-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-open.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-paste.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-print-preview.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-print.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-properties.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-quit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-redo-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-refresh.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-remove.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-revert-to-saved-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-revert-to-saved-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-save-as.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-save.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-select-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-sort-ascending.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-sort-descending.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-spell-check.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-strikethrough.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-underline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-undo-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-unindent-ltr.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-unindent-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-fit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/gtk-zoom-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-adjust.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-auto-adjust.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-crop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-denoise.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-filter.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-red-eye.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-sharpen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/image-straighten.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/insert-emoticon.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/insert-image.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/insert-link.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/insert-object.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/insert-text.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/kfind.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/kfm_home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/leftjust.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/link.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/list-add.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/list-remove-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/list-remove.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/location.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-flag.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-important.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-junk.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-notjunk.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-read.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-mark-unread.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-message-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-reply-all-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-reply-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-reply.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-send-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-send.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-sent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail-unread.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_replyall.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_send.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mail_spam.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/mark-location.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-eject.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-playback-pause.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-playback-start-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-playback-start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-playback-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-seek-backward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-seek-forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-skip-backward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-skip-forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/media-view-subtitles.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/next.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-flip-horizontal.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-flip-vertical.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-merge.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-move.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-rotate-left.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-rotate-right.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-select.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/object-straighten.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/open-menu.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/package-install.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/package-remove.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pan-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pan-end.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pan-start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pan-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pane-hide.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/pane-show.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_eject.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_end.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_fwd.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_pause.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_play.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_record.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_rew.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/player_stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/previous.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/process-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/redhat-home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/redo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/reload.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/reload3.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/reload_all_tabs.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/reload_page.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/remove.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/revert.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/rightjust.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/search.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/selection-end.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/selection-start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/send-to.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/sidebar-places.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/star-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/start.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_add-bookmark.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_bottom.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_close.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_copy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_cut.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_delete.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_down.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_file-properites.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_first.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_help-add-bookmark.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_last.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_leave-fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_left.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-compose.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-forward.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-reply-to-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-send-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_mail-send.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-fwd.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-next.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-pause.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-play.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-prev.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-rec.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-rew.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_media-stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-address-book.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-appointment.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-bcard.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-dir.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-tab.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_new-text.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_paste.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_print-preview.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_print-setup.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_print.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_properties.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_redo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_refresh.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_right.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_save-as.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_save.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_search-and-replace.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_search.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_select-all.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_spam.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_spellcheck.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text-strikethrough.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_bold.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_center.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_indent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_italic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_justify.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_left.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_right.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_underlined.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_text_unindent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_top.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_undo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_up.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stock_zoom-page.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/stop.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-log-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-run.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-search.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-shutdown.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/system-suspend.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/tab-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/tab_new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/text_bold.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/text_italic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/text_strike.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/text_under.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/tools-check-spelling.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/top.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/twitter-dm.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/twitter-home.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/twitter-mentions.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/twitter-profile.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/undo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/up.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-column.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-compact.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-continuous.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-coverflow.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-dual.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-filter-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-filter.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-grid.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-list-compact.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-list-images.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-list-video.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-list.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-more-horizontal.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-more.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-paged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-refresh.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-restore.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-sort-ascending.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/view-sort-descending.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag+.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag-.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmag1.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/viewmagfit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window-close.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window-maximize.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window-minimize.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window-pop-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window_fullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/window_nofullscreen.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/xfce-system-exit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-best-fit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-fit-best.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-original.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/actions/zoom-out.svg -drwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-perl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-html.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/gtk-file.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/template_source.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/text-html.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/account-logged-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/application-running.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-input-microphone-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-input-microphone-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-output-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-output-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-muted-blocking-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-muted-blocking.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/avatar-default.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-caution-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-empty-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-good-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-low-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-medium-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/battery_plugged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/blueman-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/blueman-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/blueman-tray-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/blueman-tray-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/blueman-tray.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-paired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/bluetooth-paired.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/connect_creating.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/connect_established.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-extended-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/empathy-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-disconn.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-rx.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-tx.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gnome-netstatus-txrx.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-full-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-high-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-low-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-medium-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-none-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gsm-3g-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/gtk-dialog-authentication-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/indicator-keyboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/indicator-messages-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/indicator-messages-red.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/indicator-messages.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/keyboard-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/krb-expiring-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/krb-no-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/krb-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/microphone-sensitivity-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/microphone-sensitivity-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/microphone-sensitivity-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/microphone-sensitivity-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/mouse-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-4g.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-gprs.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-cellular-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-transmit-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-transmit.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-vpn-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-vpn.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wired-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wired-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wired-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-hotspot.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/network-wireless-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-adhoc.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-device-wired-secureoffline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-no-connection.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-0-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-00-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-00.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-100-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-25-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-50-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-50.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-75-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-signal-75.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-tech-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-vpn-active-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-vpn-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-vpn-standalone-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/nm-wwan-tower.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/phone-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-cloudy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-night-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-night-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/stock_weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-devices-information.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-devices-panel-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-devices-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-shutdown-panel-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-shutdown-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/tray-message.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/tray-new-im.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-available-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-away-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-busy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-idle-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-invisible-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-offline-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-status-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/user-status-pending.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/volume-level-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-overcast.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-severe-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-showers-scattered.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfce4-mixer-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfce4-mixer-no-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfce4-mixer-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfce4-mixer-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/panel/xfpm-ups-missing.svg -drwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/application-x-gnome-saved-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-saved-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/status/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-consecutive-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-consecutive.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-no-repeat.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-song-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat-song.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-repeat.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-shuffle-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/media-playlist-shuffle.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_repeat.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_shuffle.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/view-wrapped-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/view-wrapped.svg --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16/web/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/ --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/16x16@2x/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/16x16@2x/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/22x22/ -drwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/ --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage01-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage02-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-stage03-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/animations/nm-vpn-connecting14.svg -drwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/ --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/account-logged-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/application-running.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-input-microphone-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-input-microphone-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-output-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-output-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-muted-blocking-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-muted-blocking.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/avatar-default.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-caution-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-empty-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-good-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-low-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-medium-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/battery_plugged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/blueman-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/blueman-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/blueman-tray-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/blueman-tray-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/blueman-tray.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-paired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/bluetooth-paired.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/caffeine-cup-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/caffeine-cup-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/clipboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/clipit-trayicon.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/connect_creating.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/connect_established.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/cpu-frequency-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/deluge.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/diodon-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-blank.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-busy2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-logo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/dropboxstatus-x.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-extended-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/empathy-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/fluxgui-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/glipper.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/glippy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-disconn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-rx.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-tx.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnome-netstatus-txrx.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gnote.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/google-chrome-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/google-hangouts-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpaste.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/grive-app-ind.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-full-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-high-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-low-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-medium-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-none-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gsm-3g-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/gtk-dialog-authentication-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/ic_light_enpass.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/im-skype.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ak.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Am.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ar.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Av.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Az-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Az-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Az.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Be.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bg-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bg.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bm.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bn-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bn-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Br-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Br-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Br-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Br.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Bs.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-By-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-By-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-By-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-By.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ch.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cm.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Cs.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Da.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-De.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Dv.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Dz.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ee.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-28.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-29.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-31.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-32.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-33.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-34.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-35.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-En.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Eo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Eo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Eo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Es.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Et-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Et-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Et-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Et-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Et.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fa-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fa-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fa.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ff.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fi.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-28.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-29.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-31.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Fr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ga-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ga-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ga.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Gu.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ha-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ha-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ha.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-He-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-He-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-He-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-He-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-He.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hi.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hu.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Hy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ie.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ig.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ik.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-In.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Is.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-It.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ja.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ka-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ka-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ka-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ka-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ka.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ki-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ki-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ki-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ki.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kk.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Km.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Kn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ko-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ko-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ko.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ku.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lt.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Lv.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Md.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mi.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mk.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ml-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ml-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ml-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ml.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Mt.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-My.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ne.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Nl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Nl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Nl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Nl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Nl.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-No.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Or.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pa.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ph.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pl.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ps-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ps-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ps.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Pt.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ro.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ru.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sa.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sd.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Si-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Si-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Si.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sk.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sl.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sq.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sv.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sw-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sw-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sw.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Sy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ta.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Te-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Te-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Te-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Te.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tg.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Th-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Th-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Th.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tk.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Tr.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uk.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Ur.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uz-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uz-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uz-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uz-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Uz.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Vi.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Wo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Xs.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Yo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard-Zh.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-keyboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-messages-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-messages-red.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-messages.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/indicator-virtual-box.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/kazam-countdown.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/kazam-paused.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/kazam-recording.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/kazam-stopped.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/keyboard-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/krb-expiring-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/krb-no-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/krb-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/microphone-sensitivity-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/microphone-sensitivity-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/microphone-sensitivity-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/microphone-sensitivity-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/mouse-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-4g.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-gprs.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-cellular-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-transmit-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-transmit.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-vpn-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-vpn.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wired-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wired-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wired-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-hotspot.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/network-wireless-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-adhoc.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-device-wired-secureoffline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-no-connection.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-0-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-00-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-00.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-100-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-25-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-50-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-50.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-75-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-signal-75.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-tech-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-vpn-active-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-vpn-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-vpn-standalone-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/nm-wwan-tower.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/notes.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/onboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/phone-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/process-syncing-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/process-syncing-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/process-syncing-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/process-syncing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/redshift-status-off.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/redshift-status-on.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/remote-folder-sync-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/remote-folder-sync-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/remote-folder-sync.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/shutter-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-away-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connected-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connecting-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connecting-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connecting-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-connecting-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-disturb-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-disturb.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-invisible-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-offline-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/skype-status-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/spotify.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/steam_tray_mono.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-cloudy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-night-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-night-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/stock_weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/synapse.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-40.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-50.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-60.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-70.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-80.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/syspeek-90.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-devices-information.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-devices-panel-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-devices-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-log-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-shutdown-panel-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-shutdown-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/tomboy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/transmission-tray-icon.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/tray-message.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/tray-new-im.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/uget-tray-default.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/uget-tray-downloading.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/uget-tray-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-available-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-away-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-busy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-idle-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-invisible-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-offline-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-status-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/user-status-pending.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/variety-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/volume-level-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-overcast.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-severe-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-showers-scattered.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfce4-mixer-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfce4-mixer-no-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfce4-mixer-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfce4-mixer-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/22x22/panel/xfpm-ups-missing.svg -drwxr-xr-x root/root usr/share/icons/Paper/24x24/ -drwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage01-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage02-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-stage03-connecting14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting01.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting02.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting03.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting04.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting05.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting06.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting07.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting08.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting09.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/animations/nm-vpn-connecting14.svg -drwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/account-logged-in.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/airplane-mode.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/application-running.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-input-microphone-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-input-microphone-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-output-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-output-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-low-zero-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-muted-blocking-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-muted-blocking.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/avatar-default.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-caution-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-empty-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-good-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-low-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-medium-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/battery_plugged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/blueman-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/blueman-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/blueman-tray-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/blueman-tray-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/blueman-tray.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-active.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-paired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/bluetooth-paired.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/caffeine-cup-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/caffeine-cup-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/clipboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/clipit-trayicon.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/connect_creating.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/connect_established.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/cpu-frequency-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/deluge.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/diodon-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-blank.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-busy2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-logo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/dropboxstatus-x.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-extended-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/empathy-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/fluxgui-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/glipper.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/glippy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-disconn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-rx.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-tx.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnome-netstatus-txrx.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gnote.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/google-chrome-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/google-hangouts-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpaste.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-battery-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gpm-ups-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/grive-app-ind.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-full-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-high-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-low-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-medium-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-none-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gsm-3g-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/gtk-dialog-authentication-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/ic_light_enpass.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/im-skype.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ak.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Am.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ar.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Av.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Az-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Az-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Az.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Be.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bg-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bg.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bm.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bn-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bn-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Br-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Br-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Br-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Br.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Bs.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-By-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-By-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-By-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-By.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ch.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cm.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Cs.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Da.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-De.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Dv.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Dz.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ee.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-28.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-29.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-31.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-32.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-33.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-34.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-35.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-En.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Eo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Eo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Eo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Es.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Et-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Et-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Et-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Et-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Et.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fa-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fa-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fa.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ff.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fi.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-28.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-29.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-31.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Fr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ga-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ga-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ga.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Gu.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ha-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ha-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ha.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-He-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-He-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-He-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-He-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-He.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hi-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hi-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hi-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hi.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hu.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Hy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ie.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ig.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ik.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-In.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Is.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-It.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ja.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ka-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ka-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ka-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ka-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ka.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ki-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ki-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ki-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ki.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kk.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Km.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kn-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kn-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Kn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ko-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ko-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ko.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ku.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lo-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lo-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lt.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Lv.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Md.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mi.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mk.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ml-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ml-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ml-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ml.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Mt.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-My.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ne.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Nl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Nl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Nl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Nl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Nl.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-No.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Or.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pa-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pa-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pa.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ph.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pl.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ps-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ps-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ps.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Pt.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ro.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-18.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-19.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-21.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-22.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-23.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-24.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-26.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-27.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ru.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sa.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sd.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Si-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Si-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Si.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sk.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sl-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sl-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sl-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sl-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sl.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sq.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-11.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-12.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-13.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-14.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-15.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-16.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-17.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr-9.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sv.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sw-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sw-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sw.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sy-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sy-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Sy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ta.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Te-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Te-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Te-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Te.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tg-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tg-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tg.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Th-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Th-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Th.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tk.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Tr.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-7.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk-8.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uk.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Ur.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uz-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uz-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uz-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uz-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Uz.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Vi.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Wo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Xs.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Yo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-4.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-5.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh-6.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard-Zh.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-keyboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-messages-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-messages-red.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-messages.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/indicator-virtual-box.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/kazam-countdown.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/kazam-paused.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/kazam-recording.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/kazam-stopped.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/keyboard-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/krb-expiring-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/krb-no-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/krb-valid-ticket.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/microphone-sensitivity-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/microphone-sensitivity-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/microphone-sensitivity-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/microphone-sensitivity-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/mouse-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-4g.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-gprs.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-cellular-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-transmit-receive.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-transmit.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-vpn-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-vpn.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wired-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wired-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wired-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-acquiring.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-hotspot.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-no-route.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-secure-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-secure-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-secure-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-secure-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-secure-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-signal-excellent.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-signal-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-signal-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-signal-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/network-wireless-signal-ok.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-adhoc.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-device-wired-secureoffline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-no-connection.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-0-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-00-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-00.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-100-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-25-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-25.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-50-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-50.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-75-secure.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-signal-75.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-3g.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-cdma-1x.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-edge.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-evdo.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-hspa.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-tech-umts.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-vpn-active-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-vpn-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-vpn-standalone-lock.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/nm-wwan-tower.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/notes.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/notification-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/onboard.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-caution.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-good.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/phone-battery-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/process-syncing-down.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/process-syncing-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/process-syncing-up.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/process-syncing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/redshift-status-off.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/redshift-status-on.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/shutter-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-away-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connected-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connecting-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connecting-1.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connecting-2.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-connecting-3.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-disturb-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-disturb.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-invisible-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-offline-notification.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/skype-status-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/spotify.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/steam_tray_mono.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-cloudy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-night-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-night-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/stock_weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/synapse.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-0.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-10.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-20.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-30.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-40.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-50.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-60.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-70.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-80.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/syspeek-90.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-devices-information.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-devices-panel-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-devices-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-log-out.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-shutdown-panel-restart.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-shutdown-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/tomboy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/transmission-tray-icon.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/tray-message.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/tray-new-im.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/uget-tray-default.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/uget-tray-downloading.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/uget-tray-error.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-available-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-available.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-away-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-away.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-busy-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-busy.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-idle-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-idle.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-invisible-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-invisible.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-offline-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-offline.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-status-new.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/user-status-pending.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/variety-indicator.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-high-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-low-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-medium-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-muted-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-none-panel.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/volume-level-none.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clear.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-010.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-030.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-050.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-070.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-090.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-110.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-120.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-130.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-140.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-150.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-160.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-170.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-180.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-190.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-200.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-210.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-220.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-230.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-240.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-250.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-260.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-270.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-280.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-290.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-300.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-310.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-320.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-330.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-340.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night-350.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds-night.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-few-clouds.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-fog.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-overcast.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-severe-alert.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-showers-scattered.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-showers.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-snow.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/weather-storm.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfce4-mixer-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfce4-mixer-no-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfce4-mixer-record.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfce4-mixer-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ac-adapter.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-keyboard-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-mouse-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-phone-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-primary-missing.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-000-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-020-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-040-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-040.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-060-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-060.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-080-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-080.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-100-charging.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-100.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-charged.svg --rwxr-xr-x root/root usr/share/icons/Paper/24x24/panel/xfpm-ups-missing.svg -drwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/application-x-gnome-saved-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-saved-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/status/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24/web/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/ --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/24x24@2x/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/24x24@2x/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/ -drwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/status/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32/web/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/ --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/32x32@2x/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/32x32@2x/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/ -drwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/nm-device-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/nm-device-wireless.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/nm-device-wwan.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-audio-volume-high.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-audio-volume-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-audio-volume-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-audio-volume-muted.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-audio-volume-off.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-battery-000.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-battery-020.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-battery-caution-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-battery-empty.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-battery-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-device-eject.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-disabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-display-brightness-full.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-display-brightness-low.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-display-brightness-medium.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-display-brightness-off.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-display-brightness.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-gsm-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-gsm-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-input-touchpad-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-keyboard-brightness.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-cellular-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-cellular.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-ethernet-connected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-wired-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-wired.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-wireless-disconnected.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-network-wireless.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-power.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-printer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-touchpad-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-wifi-enabled.svg --rwxr-xr-x root/root usr/share/icons/Paper/48x48/notifications/notification-wireless-disconnected.svg -drwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/status/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48/web/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/ --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/48x48@2x/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/48x48@2x/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/ -drwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/status/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512/web/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/back.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/document-open-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/document-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/document-print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/edit-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/editpaste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/fileprint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/filequickprint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/forward.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gnome-lockscreen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gnome-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gnome-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/go-next.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/go-previous.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-cancel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-back-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-back-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-forward-ltr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-forward-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-go-up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-quit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-zoom-100.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/gtk-zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/help-about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/help-contents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/help-faq.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/help-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/mail-mark-important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/mail-mark-junk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/mail-mark-notjunk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/mail_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/next.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/previous.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/process-stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_about.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_left.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_mail-send-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_paste.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_print-preview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_print.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_right.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_spam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_zoom-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stock_zoom-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/stop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-lock-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-log-out.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-reboot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-restart.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-suspend-hibernate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/system-suspend.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/up.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/viewmag+.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/viewmag-.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/viewmag1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/xfce-system-exit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/xfce-system-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/xfsm-logout.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/xfsm-shutdown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/zoom-in.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/zoom-original.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/actions/zoom-out.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/0ad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/10B4_steam.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/1CD8_rundll32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/1password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/2048.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/4137_winhlp32.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/7765_winebrowser.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/7z.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/A35F_hh.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/AdobeReader9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Blender.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/CMakeSetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Etermutilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/GnomeBaker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/MerProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/NoMachine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Pinta_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/QtIcon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/QtProject-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/QtProject-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/QtProject-qtcreator-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/QtProject-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Sci48M.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/Thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/VBox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/XMind.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/access.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessibility-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessibility_section.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-camera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-clipboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-document-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-ebook-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-notes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/accessories-text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/acroread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/activity-log-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/adobe-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/adobe-flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/adobe-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/adobeflashplugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/akregator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/alarm-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/amarok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/amarok2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/amarok_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/anaconda.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/android-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/android-studio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/anki.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/antimicro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/app-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/apper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/appgrid.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/applets-screenshooter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/application-x-wine-extension-its.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/apport-gtk2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/apport.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptdaemon-download.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptdaemon-working.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptik-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/aptik.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/archive-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/archivemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/arduino-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/arduino.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ark.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/artha.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/arts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/asounder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/assistant-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/asunder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/athena.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/atom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/atril.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/audacious.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/audacity.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/audex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/audience.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/audio-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/authy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/avidemux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ax-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/background.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/banshee-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/baobab.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/basket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bino.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/birdie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bitcoin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/blam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bleachbit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/blender.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/blueman.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/blueradio-48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/blueradio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bluetooth-48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bluetooth-radio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bluetoothradio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bpython.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/brackets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/brasero.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/brave.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/brightside.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/bug-buddy.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/builder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/byobu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cacao-oj6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cacao-oj7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cacao-oj8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cacao-oj9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/caffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cairo-dock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-blue-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-purple-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-01.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-02.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-03.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-04.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-05.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-06.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-07.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-08.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-09.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-10.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-11.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-13.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-14.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-15.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-16.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-17.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-18.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-19.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-20.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-21.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-22.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-26.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-27.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-28.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-29.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-30.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar-red-31.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calibre-ebook-edit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calibre-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calibre-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/calibre.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/california.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cantata.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/catfish.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/celestia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chrome-ocjnemjmlhjkeilmaidemofakmpclcbi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chromium-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/chromium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cinnamon-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/claws-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/clementine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/clipit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cmake-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cmake.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/code-oss.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/code.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/codeblocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/color-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/com.gexperts.Terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/com.gexperts.Tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/com.skype.Client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/com.valvesoftware.Steam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/corebird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-backgrounds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-cat-hardware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-date-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-desklets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-drivers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-fonts.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/cs-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-overview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-software-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-sources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-startup-programs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-themes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-universal-access.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-user-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-user.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cs-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/cuckoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/date.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dayfolder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dbeaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deadbeef.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deepin-emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deepin-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deja-dup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deluge-torrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/deluge.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/designer-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/desktop-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/desktop-tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/devassistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/devede.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/devedeng.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dictionary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/digikam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/discord-canary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/discord.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/disk-burner.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/disk-partition-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/disk-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/disks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dnfdragora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/docky.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dolphin-emu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dosbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/doublecmd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/dragonplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/easytag.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/eclipse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/emacs-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/emacs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/emacs23.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/emacs24.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/emacs25.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/email.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/engrampa.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/enpass.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/eog.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/eom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/epiphany-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/epiphany-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/epiphany-webkit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/evince.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/evolution-memos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/evolution.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/exaile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/fedy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/feedreader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/file-roller.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/filelight.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/filezilla.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/fingerprint-gui.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-3.0.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-3.5.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-4.0.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-aurora.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-beta.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-default.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-developer-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-esr.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-gtk3.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-nightly-icon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-nightly.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-original.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox-trunk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/firefox3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/firestarter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/firewall-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/five-or-more.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/flash-player-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/flashplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/flashplayerproperties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/flegita.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/fluxgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/focuswriter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/font-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/fonts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/freecad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/galculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gaupol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gba.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gcbalculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gcolor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gcolor2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gcolor3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gconf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdm-login-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdm-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdm-xnest.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdm2setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdmflexiserver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/geany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/geary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gedit-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gedit-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/geeqie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ghetto-skype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ghex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gimp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/git-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/git.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/giteye.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gitk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gitkraken.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gksu-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/glade-3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/glade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-2048.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-abrt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-apt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-baker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-books.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-boxes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-character-map.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-characters.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-color-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-commander.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-device-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-disks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-display-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-encfs-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-eterm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/gnome-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-logs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-mplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-nettool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-paint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-pomodoro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-power-statistics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-screenshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-accessibility-technologies.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-background.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-font.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-keybindings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-settings-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-software.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-sticky-notes-applet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-subtitles.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-todo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-weather.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-window-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnome-xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gnote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/goldendict.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/google-chrome-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/google-chrome-unstable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/google-chrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/google-chrome2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/googlechrome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gpa.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gparted.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gpick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gpicview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gpk-log.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/graphics-viewer-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gsmartcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gstreamer-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gthumb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gtk-redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gtk-theme-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/guake-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/guake.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gucharmap.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gufw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gufw_menu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gvbam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gvim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/gwenview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/help-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/hexchat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/hexedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/homebank.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/htop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/hwinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus-bopomofo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus-engine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus-pinyin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus-setup-chewing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus-setup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ibus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/icedove.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/iceweasel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/idea-ultimate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/im-chooser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/inkscape.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/insync.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij-idea-ce.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij-idea-community.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij-idea-ultimate-edition.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/intellij_idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/internet-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/internet-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/internet-news-reader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/internet-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ipython.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/irc-chat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/java-1.8.0.png.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/jetbrains-idea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/jockey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/juffed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/k3b.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kaddressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kaffeine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kamoso.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kbugbuster.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kcalc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kcharselect.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kcmkwm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kcmsound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kcolorchooser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kdenlive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/keepass.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/keepass2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/keepassx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/keepassx2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/keepassxc.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/key_bindings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kfontview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/khelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/klipper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kmail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kmix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/knotes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/knotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kodi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kolourpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/konsole.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kontact.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/korganizer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/krfb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ksnapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ksnapshot.png3 --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ksysguard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ktp-contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kuser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/kwin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-suite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice34.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice4.2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-main.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/libreoffice5.3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/liferea.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lightdm-gtk-greeter-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/linssid.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/linssid32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/linssid48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/logview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lrfviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lubuntu-software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/luminance-hdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lximage-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lximage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/lxterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mail-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mail_generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/master-pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-disk-usage-analyzer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-notification-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-panel-clock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-panel-workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mate-session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/maya.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mdmsetup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/media-player-banshee.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/medit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mendeley.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mendeleydesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mgba.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/midori.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/minecraft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mintbackup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mintdrivers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mintinstall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mintsources.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mintupdate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mirage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mixxx-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mono-runtime-common.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mono-runtime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mono.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/monodoc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mpv-icon-8bit-64x64.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mpv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mugshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia-audio-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia-photo-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia-photo-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia-video-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia-volume-control.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/multitasking-view.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mumble.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/muon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mupdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/museeq.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/mypaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nautilus-actions-config-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nautilus-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nemo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nepomuk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/netbeans-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/netbeans.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/notes.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-310-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-current-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-current-updates-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-drivers-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-x-server-setting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nvidia-x-server-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/nylas.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/octopi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/office-addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/okular.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ooo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openjdk-6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openjdk-7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openjdk-8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openjdk-9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/openterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera-browser-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera-developer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/opera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle_java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle_java6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle_java7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle_java8.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/oracle_java9.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/orage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/orage_globaltime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/orca.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.darktable.Darktable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gimp.GIMP.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Aisleriot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Books.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Builder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Calculator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Characters.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Cheese.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Contacts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.DejaDup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Devhelp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Empathy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Epiphany.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Evince.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.FeedReader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Files.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.GIMP.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Geary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Glade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Lollypop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Mahjongg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Maps.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Nautilus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Polari.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.PowerStats.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Software.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Todo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Totem.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Usage.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Weather.Application.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.Weather.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.bijiben.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.clocks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.eog.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.gedit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.gitg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.meld.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.gnome.tweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.base.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.draw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.math.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.startcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.libreoffice.LibreOffice.writer.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.mozilla.Firefox.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.mozilla.FirefoxDevEdition.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.mozilla.FirefoxNightly.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/org.mozilla.FirefoxNightlyWayland.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/org.videolan.VLC.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/osmo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/p7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/palimpsest.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pamac-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pamac-updater.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pamac.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/parole.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/partitionmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/password-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/passwords.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pdf-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pdf-utility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pdfchain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pdfmod.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pdfstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pgadmin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pgadmin3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pick-colour-picker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pidgin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pinta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pitivi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/plank.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/polari.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/popcorn-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/popcorntime.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/postgresql.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/postscript-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-calendar-and-tasks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-accessibility.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-baloo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-display-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-effects.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-hotcorners.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-notification-bell.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-notification.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-user-password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-user.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-desktop-wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-management-service.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-brightness-lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-login.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-network-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-notifications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-performance.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-privacy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-session-services.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-sharing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-time.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-windows-actions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-system-windows.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-theme.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-web-browser-shortcuts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/preferences-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pwsafe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/pycharm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python2.6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python2.7.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python3.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python3.2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python3.3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/python3.4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qbittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qpdfview.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt-assistant.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt-config.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt-designer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qt4logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qtconfig-qt4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qtcreator_logo_32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qtcreatorubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qterminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qtlogo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/qtox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/quassel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/r.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/recoll.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redhat-email.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redhat-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redhat-web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/rednotebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redshift-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redshift-icon-256.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redshift.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/redshiftgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/remmina.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/remote-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/retext.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/revelation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/rhythmbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ripperx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ristretto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/rstudio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/screensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/scribus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/seafile-client-qt5.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/seafile-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/seafile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/seahorse-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/seahorse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/serpentine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/session-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/setroubleshoot_icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/shotwell.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/showfoto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/showphoto.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/shutter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/simplescreenrecorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/skype-call-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/skype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/skype_protocol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/skypeforlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/smuxi-frontend-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/smuxi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/snes9x-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/snes9x.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-properties-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-store.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/softwarecenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sound-recorder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/soundconverter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sparkleshare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/speedcrunch.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/spotify-beta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/spotify-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/spotify-exe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/spotify-linux-48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/spotify.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/steam-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/steam-launcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/steam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/steam_icon_570.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/steampowered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/stellarium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/studio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/style.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/sublime-text-2.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/sublime-text-3.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/sublime-text.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/sublime.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/apps/sublime_text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sun-java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sun-javaws.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sun-jcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/susehelpcenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/sylpheed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/synaptic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/syncthing-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/syncthing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/synergy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/syntevo-smartgit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-config-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-config-date.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-config-firewall.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-config-services.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-config-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-file-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-os-installer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-search.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-software-install.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-software-package-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-software-update.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-users.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/system-utilities-logviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/teamviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terminal-tango.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terminator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terminix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terminology.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/terra.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/text-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/thunar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/thunderbird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tigervnc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tilda.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tilix.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/time-admin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tint2conf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tomahawk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tomboy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/totem.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tracker.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transgui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transmageddon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transmission-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transmission-qt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transmission-remote-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/transmission.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tuxpaint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/tvm-burn-cd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/typecatcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/typora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubiquity.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubuntu-qtcreator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubuntu-sdk-ide.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubuntu-sdk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubuntudash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ubuntusoftware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/uget-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/uget.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-color-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-datetime-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-display-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-sound-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/unity-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/update-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/usb-creator-gtk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/usb-creator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/user-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/user_auth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/userinfo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-file-archiver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-log-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-root-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-system-monitor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-terminal-alt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-tweak-tool.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utilities-x-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/utox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/variety-slideshow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/variety.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vbam.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/video-editor.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/virt-viewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/virtualbox-ose.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/virtualbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/visual-studio-code.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vivaldi-snapshot.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vivaldi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vivaldi_browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vlc-xmas.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vlc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vmplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vmware-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vmware-workstation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vmware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/vocal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/volume-knob.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wallpaper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/web-browser.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/webbrowser-app.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/whitebalance.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wine-file.0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wine-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wine-winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wine.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/winecfg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wireshark.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wmtweaks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wolfram-mathematica.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/workspace-switcher.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-office-etmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-office-wppmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-office-wpsmain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-spreadsheets.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/wps-writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xarchiver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xchat-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xchat-mini.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xchat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfburn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce-filemanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce-terminal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-appfinder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-backdrop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-dict.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-mixer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-notes-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-notifyd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-session.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfce4-workspaces.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xfwm4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/ximian-evolution-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xmind.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xnoise.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xpad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xpdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xplayer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xreader.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xscreensaver.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm-color.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm-color_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm-color_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm_32x32.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xterm_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/xviewer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/yast.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/yast2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/youtube-dl-gui.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/youtube-dl-gui_48x48.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/youtube-dl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/youtube-dlg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/yumex-dnf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/yumex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/zeal.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/zen-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/zotero.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/apps/zsnes.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-development.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-engineering.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-mathematics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-puzzles.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-science.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/applications-utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/configuration_section.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/credentials-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-cat-prefs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-details.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-extensions.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-general.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-language.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-power.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/cs-region.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-control-center.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-devel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-globe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-settings-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gnome-util.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/goa-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/gtk-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/kcontrol.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/knetattach.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/mate-network-properties.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/mate-power-manager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/networkmanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_development.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/package_utilities.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop-default-applications.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop-gaming.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop-locale.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop-online-accounts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-other.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-system-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-system-parental-controls.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-system-power-management.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-system-power.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/preferences-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-accessories.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-preferences.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-programming.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-sound_video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-system_settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/redhat-system_tools.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/stock_internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/system-help.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/systemsettings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/unity-power-panel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/v4l2ucp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-games.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-graphics.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-internet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-multimedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-office.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-system-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce-utils.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfce4-settings.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/categories/xfpm-ac-adapter.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/3floppy_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/audio-card.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/audio-speakers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/battery.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/blueman-device.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/bluetooth.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/camera-photo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/camera-web.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/camera.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/camera_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cdrom_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cdwriter_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/chardevice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/computer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cs-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cs-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cs-screen.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cs-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/cups.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-harddisk-ieee1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-harddisk-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/drive-removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/dvd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-battery.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-computer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-dvdr-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-dvdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-dvdram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-dvdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-disc-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-ethernet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-harddisk-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-harddisk-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-ipod.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-media-cf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-media-ms.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-media-sdmmc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-media-sm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-mouse-ball.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-mouse-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-printer-new.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-removable-1394.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-removable-usb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-dev-wavelan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gnome-fs-client.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gtk-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gtk-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/gtk-harddisk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/harddrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/hdd_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/devices/input-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/input-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/input-tablet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/ipod_mount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/joystick.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/devices/keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/kjobviewer.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/devices/kxkb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-cdr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-cdrom-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-cdrom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-cdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-dvd.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-dvdrw.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-optical-cd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-optical-copy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-optical-dvd-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-optical-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-optical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-removable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/media-tape.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/multimedia-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/music-player.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/network-vpn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/network-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/network-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/preferences-desktop-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/preferences-desktop-peripherals.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/preferences-desktop-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/printer-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/printer-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/printer1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/printmgr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/removable-media.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/scanner.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/stock_printers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/system-floppy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/unity-fallback-mount-helper.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/usbpendrive_unmount.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/video-display.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/xfce-printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/xfce4-display.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/devices/xfce4-keyboard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/xfce4-mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_HD.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_idetude.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_joystick.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_mouse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_printer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/devices/yast_soundcard.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-favorite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-noread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-nowrite.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-photos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/face-smile-big.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/face-smile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/stock_smiley-1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/stock_smiley-2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/stock_smiley-6.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/emotes/stock_smiley-7.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-7z.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-archive-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-octet-stream.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.android.package-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.debian.binary-package.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.iccprofile.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-7zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-addon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-apk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-arc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-archive.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-bittorrent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-bzip-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-cd-image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-firmware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-gzip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-java.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-object.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-pak.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-python.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-rpm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-xar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-xz-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-xz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-x-zoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/application-zip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/ascii.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-adpcm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-aiff.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-flac+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-flac.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-monkey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-mp2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-mpeg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-speex+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/audio-x-vorbis+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/binary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/contents2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/document.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/exec.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/extension.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/folder_tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/font-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/font.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/font_bitmap.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/font_truetype.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/font_type1.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-fs-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-fs-regular.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-magicpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-msword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-pdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-postscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-rtf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.ms-excel.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.rn-realmedia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.stardivision.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.stardivision.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.stardivision.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-wordperfect.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-7z-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-abiword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-applix-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-applix-word.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-archive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-arj.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-bzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-compress.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-cpio-compressed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-cpio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-deb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-dvi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-executable.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-bdf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-linux-psf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-pcf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-sunos-news.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-font-ttf.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-gnumeric.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-gzip-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-gzip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-gzpostscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-jar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-killustrator.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-kpresenter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-kspread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-kword.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-lha.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-lhz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-lzma.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-ms-dos-executable.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-perl.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-php.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-python-bytecode.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-rpm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-scribus.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-shockwave-flash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-stuffit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-tarz.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-tex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-x-zip.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-xhtml+xml.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-application-zip.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-audio.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-image.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-html.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-vnd.wap.wml.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-csh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-sh.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-vcard.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text-x-zsh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-mime-x-font-afm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gnome-package.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/gtk-file.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/html.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/image-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/kpresenter_kpr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/libpeas-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/media-video.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/mime_ascii.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/misc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/package-gdebi.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/package-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/package.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/package_editors.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/package_wordprocessing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/plan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/rar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/rpm.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/shellscript.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/sound.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/stock_addressbook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/stock_calendar.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/stock_script.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/tar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/template_source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-htmlh.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-markdown.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-plain.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-r.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-rust.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-R.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-c++src.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-c.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-csrc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-generic.svapplication-x-awk.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-go.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-haskell.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-java-source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-java.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-katefilelist.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-plain.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-preview.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-python.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-r-source.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-r.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-ruby.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text-x-script.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/text.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/tgz.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/txt.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/txt2.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/unknown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/uri-mms.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/uri-mmst.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/uri-pnm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/uri-rtspt.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/uri-rtspu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/vcalendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/vcard.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-mp4.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-vivo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-vnd.rn-realvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-wavelet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-anim.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-flic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-generic.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-google-vlc-plugin.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-javafx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-matroska.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-ms-wmp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-ms-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-msvideo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-ogm+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-theora+ogg.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video-x-wmv.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/video.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/wordprocessing.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/mimetypes/www.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/x-office-address-book.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/x-office-calendar.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/x-office-document.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/x-office-presentation.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/x-office-spreadsheet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/mimetypes/zip.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/antergos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/applications-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/archlinux-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/cs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/debian-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/debian-logo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/debian-swirl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/distributor-logo-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/elementaryos-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/emptytrash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/fedora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-black.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-blue.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-brown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-cloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-cyan.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-documents.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-download.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-git.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-green.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-grey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-magenta.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-onedrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-orange.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-pictures.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-public.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-publicshare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-recent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-red.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-remote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-templates.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-videos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-violet.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder-yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_black.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_blue.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_brown.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_green.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_grey.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_orange.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_pink.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_purple.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_red.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_color_yellow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/folder_home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-ftp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-nfs.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-share.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-smb.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-ssh.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-fs-trash-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-mime-x-directory-nfs-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-mime-x-directory-smb-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-mime-x-directory-smb-share.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-mime-x-directory-smb-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gnome-stock-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gtk-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/gtk-network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/inode-directory.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/korora-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/kubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/linux-mint-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/lubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/mageia-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/manjaro-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/manjaro-welcome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/mintwelcome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/network-workgroup.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/network.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/network_local.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/opensuse-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/redhat-network-server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/server.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/show-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/slackware-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/solus-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-antergos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-archlinux.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-debian.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-elementary.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-elementaryos.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-fedora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-korora.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-kubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-linux-mint.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-lubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-mageia.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-manjaro.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-opensuse.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-slackware.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-solus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/start-here-xubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/stock_folder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/trashcan_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu-gnome-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu-gnome.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu-mate-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu-mate.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/ubuntu.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/user-bookmarks.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/user-desktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/user-home.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/user-trash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/workspace-switcher-left-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/workspace-switcher-right-bottom.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/workspace-switcher-right-top.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/workspace-switcher-top-left.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/xfce-trash_empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/xubuntu-logo-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/places/xubuntu.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/appointment-missed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/appointment-soon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/aptdaemon-delete.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/aptdaemon-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/aptdaemon-update-cache.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/aptdaemon-upgrade.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/audio-volume-high.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/audio-volume-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/audio-volume-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/audio-volume-muted.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/avatar-default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-000-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-000.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-020-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-020.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-040-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-040.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-060-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-060.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-080-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-080.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-100-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-100.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-caution-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-caution.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-empty-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-empty.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-good-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-good.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-medium-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/battery-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/changes-allow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/changes-prevent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/channel-secure.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/computer-fail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/connect_creating.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/connect_established.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/connect_no.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-information.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-password.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/edittrash.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/feed-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/folder-drag-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/folder-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/folder-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/folder_open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-fs-directory-accept.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-fs-directory-visiting.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-fs-loading-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-fs-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-disconn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-rx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-tx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-netstatus-txrx.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gnome-stock-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-dialog-authentication.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/gtk-missing-image.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/im-user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/im-user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/im-user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/im-user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/image-loading.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/image-missing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/important.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-attachment.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-read.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-signed-verified.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-signed.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat-one-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat-one.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat-song-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat-song.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/media-playlist-repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/messagebox_critical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/messagebox_info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/messagebox_warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-transmit-receive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-transmit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-wired-disconnected.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/network-wired-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/nm-adhoc.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/nm-device-wired.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/nm-device-wireless.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/nm-no-connection.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/object-locked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/object-unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/person.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/pin-down.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/printer-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/printer-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/printer-printing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/security-high.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/security-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/security-medium.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/semi-starred-rtl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/semi-starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/software-update-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/software-update-urgent.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/starred.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_appointment-reminder-excl.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_appointment-reminder.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_attach.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_dialog-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_dialog-info.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_dialog-question.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_dialog-warning.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_lock-broken.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_lock-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_lock-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_lock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_mail-open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_mail-replied.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_mail-unread.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_open.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_repeat.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_trash_full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume-0.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume-max.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume-med.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume-min.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume-mute.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_volume.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_weather-cloudy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/stock_weather-sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/sunny.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/sync-error.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/sync-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/task-due.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/task-past-due.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/trashcan_full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/unlock.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/unlocked.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-available.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-busy.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-extended-away.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-idle.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-invisible.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-offline.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-online.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/user-trash-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/view-pim-tasks-pending.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-clear.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-few-clouds.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-overcast.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-severe-alert.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-showers-scattered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-showers.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/weather-snow.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-critical-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-critical.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-full-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-full.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-low-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-low.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-ok-charging.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-battery-ok.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/status/xfce-trash_full.png -drwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/ --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.ca.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.cn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.co.uk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.de.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.es.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.fr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Amazon-www.amazon.it.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/web/Dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Evernote-evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Evernote-www.evernote.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/FacebookMessenger-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Google-plus.google.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Pocket-getpocket.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Reddit-pay.reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Reddit-reddit.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Twitter-twitter.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/YouTube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/Youtube-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/amazon-mp3-store-source.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/amazon-store.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/as-icon.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/as-powered.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-apdfllckaahabafndbhieahigkjlhalf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-coobgpohoikkiipiblmjeljniedjpjpf-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-dlppkpafhbajpcmmoheippocdidnckmm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-knipolnnllmklapflnccelgolnpehhp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-mdapmeleikeppmfgadilffngabfpibok-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-nckgahadagoaajjgafhacjanaoiihapd-Default.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/chrome-niloccemoadcdkdjlinkgdfekeahmflj-Default.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/web/dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/everpad.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/facebook-facebook.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/facebookresource.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/fbmessenger.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/gdrive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/goa-account-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/google-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/googlemusicframe.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/googleplus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/gpmdp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/gtwitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/gwoffice.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/im-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/im-google-talk.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/im-msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/im-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/krunner_youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/lastfm-audioscrobbler.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/lastfm-www.last.fm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/msn.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/plexhometheater.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/plexmediamanager.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/reddit-is-a-dead-bird.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/slack.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-google-news.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-yahoo-mail.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-yahoonews.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/unity-webapps-youtube.com.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-amazon.png --rw-r--r-- root/root usr/share/icons/Paper/512x512@2x/web/web-dropbox.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-evernote.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-facebook-messenger.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-facebook.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-flickr.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-foursquare.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-gitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-google-drive.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-google-hangouts.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-google-play-music.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-google-plus.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-google.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-lastfm.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-microsoft.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-owncloud.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-plex.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-pocket.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-reddit.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-slack.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-telegram.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-twitter.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-whatsapp.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-yahoo.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/web-youtube.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/whatsappfordesktop.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/whatsie.png --rwxr-xr-x root/root usr/share/icons/Paper/512x512@2x/web/yahoo.png -drwxr-xr-x root/root usr/share/icons/Paper/8x8/ -drwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/ -drwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-default.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-downloads.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-dropbox-syncing.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-dropbox-unsyncable.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-dropbox-uptodate.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-important.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-new.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-readonly.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-shared.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-symbolic-link.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-synchronizing.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-system.png --rwxr-xr-x root/root usr/share/icons/Paper/8x8@2x/emblems/emblem-unreadable.png --rwxr-xr-x root/root usr/share/icons/Paper/cursor.theme -drwxr-xr-x root/root usr/share/icons/Paper/cursors/ --rwxr-xr-x root/root usr/share/icons/Paper/cursors/00008160000006810000408080010102 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/028006030e0e7ebffc7f7070c0600140 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/03b6e0fcb3499374a867c041f52298f0 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/08e8e1c95fe2fc01f976f1e063a24ccd --rwxr-xr-x root/root usr/share/icons/Paper/cursors/1081e37283d90000800003c07f3ef6bf --rwxr-xr-x root/root usr/share/icons/Paper/cursors/14fef782d02440884392942c11205230 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/2870a09082c103050810ffdffffe0204 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/3085a0e285430894940527032f8b26df --rwxr-xr-x root/root usr/share/icons/Paper/cursors/3ecb610c1bf2410f44200f48c40d3599 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/4498f0e0c1937ffe01fd06f973665830 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/6407b0e94181790501fd1e167b474872 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/640fb0e74195791501fd1ed57b41487f --rwxr-xr-x root/root usr/share/icons/Paper/cursors/9081237383d90e509aa00f00170e968f --rwxr-xr-x root/root usr/share/icons/Paper/cursors/9d800788f1b08800ae810202380a0822 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/X_cursor --rwxr-xr-x root/root usr/share/icons/Paper/cursors/all-scroll --rwxr-xr-x root/root usr/share/icons/Paper/cursors/arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/bd_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/bottom_left_corner --rwxr-xr-x root/root usr/share/icons/Paper/cursors/bottom_right_corner --rwxr-xr-x root/root usr/share/icons/Paper/cursors/bottom_side --rwxr-xr-x root/root usr/share/icons/Paper/cursors/bottom_tee --rwxr-xr-x root/root usr/share/icons/Paper/cursors/c7088f0f3e6c8088236ef8e1e3e70000 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/circle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/copy --rwxr-xr-x root/root usr/share/icons/Paper/cursors/cross --rwxr-xr-x root/root usr/share/icons/Paper/cursors/cross_reverse --rwxr-xr-x root/root usr/share/icons/Paper/cursors/crossed_circle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/crosshair --rwxr-xr-x root/root usr/share/icons/Paper/cursors/d9ce0ab605698f320427677b458ad60b --rwxr-xr-x root/root usr/share/icons/Paper/cursors/diamond_cross --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dnd-ask --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dnd-copy --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dnd-link --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dnd-move --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dnd-none --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dot_box_mask --rwxr-xr-x root/root usr/share/icons/Paper/cursors/dotbox --rwxr-xr-x root/root usr/share/icons/Paper/cursors/double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/draft_large --rwxr-xr-x root/root usr/share/icons/Paper/cursors/draft_small --rwxr-xr-x root/root usr/share/icons/Paper/cursors/draped_box --rwxr-xr-x root/root usr/share/icons/Paper/cursors/e29285e634086352946a0e7090d73106 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/fcf1c3c7cd4491d801f1e1c78f100000 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/fd_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/fleur --rwxr-xr-x root/root usr/share/icons/Paper/cursors/grabbing --rwxr-xr-x root/root usr/share/icons/Paper/cursors/h_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/hand --rwxr-xr-x root/root usr/share/icons/Paper/cursors/hand1 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/hand2 --rwxr-xr-x root/root usr/share/icons/Paper/cursors/help --rwxr-xr-x root/root usr/share/icons/Paper/cursors/icon --rwxr-xr-x root/root usr/share/icons/Paper/cursors/left_ptr --rwxr-xr-x root/root usr/share/icons/Paper/cursors/left_ptr_help --rwxr-xr-x root/root usr/share/icons/Paper/cursors/left_ptr_watch --rwxr-xr-x root/root usr/share/icons/Paper/cursors/left_side --rwxr-xr-x root/root usr/share/icons/Paper/cursors/left_tee --rwxr-xr-x root/root usr/share/icons/Paper/cursors/link --rwxr-xr-x root/root usr/share/icons/Paper/cursors/ll_angle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/lr_angle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/move --rwxr-xr-x root/root usr/share/icons/Paper/cursors/pencil --rwxr-xr-x root/root usr/share/icons/Paper/cursors/pirate --rwxr-xr-x root/root usr/share/icons/Paper/cursors/plus --rwxr-xr-x root/root usr/share/icons/Paper/cursors/pointer-move --rwxr-xr-x root/root usr/share/icons/Paper/cursors/question_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/right_ptr --rwxr-xr-x root/root usr/share/icons/Paper/cursors/right_side --rwxr-xr-x root/root usr/share/icons/Paper/cursors/right_tee --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_down_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_h_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_left_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_right_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_up_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/sb_v_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/target --rwxr-xr-x root/root usr/share/icons/Paper/cursors/tcross --rwxr-xr-x root/root usr/share/icons/Paper/cursors/top_left_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/top_left_corner --rwxr-xr-x root/root usr/share/icons/Paper/cursors/top_right_corner --rwxr-xr-x root/root usr/share/icons/Paper/cursors/top_side --rwxr-xr-x root/root usr/share/icons/Paper/cursors/top_tee --rwxr-xr-x root/root usr/share/icons/Paper/cursors/ul_angle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/ur_angle --rwxr-xr-x root/root usr/share/icons/Paper/cursors/v_double_arrow --rwxr-xr-x root/root usr/share/icons/Paper/cursors/vertical-text --rwxr-xr-x root/root usr/share/icons/Paper/cursors/watch --rwxr-xr-x root/root usr/share/icons/Paper/cursors/xterm --rwxr-xr-x root/root usr/share/icons/Paper/cursors/zoom-in --rwxr-xr-x root/root usr/share/icons/Paper/cursors/zoom-out --rwxr-xr-x root/root usr/share/icons/Paper/index.theme -drwxr-xr-x root/root usr/share/icons/Paper/scalable/ -drwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/action-unavailable-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/address-book-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/application-exit-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/application-menu-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/appointment-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/bookmark-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/browser-download-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/calendar-go-today-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/call-start-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/call-stop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/color-select-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/contact-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/detach-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-export-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-import-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-open-recent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-open-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-page-setup-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-print-preview-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-print-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-properties-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-revert-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-revert-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-revert-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-save-as-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-save-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/document-send-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-clear-all-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-clear-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-clear-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-copy-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-cut-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-delete-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-find-replace-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-find-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-paste-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-redo-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-redo-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-select-all-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-select-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-tag-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-undo-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/edit-undo-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/find-location-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/focus-legacy-systray-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/focus-top-bar-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/focus-windows-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/folder-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/font-select-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-less-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-less-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-less-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-more-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-more-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-indent-more-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-justify-center-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-justify-fill-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-justify-left-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-justify-right-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-bold-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-direction-ltr-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-direction-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-direction-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-italic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-larger-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-remove-formatting-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-smaller-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-strikethrough-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/format-text-underline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-bottom-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-down-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-first-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-first-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-first-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-home-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-jump-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-jump-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-jump-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-last-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-last-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-last-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-next-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-next-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-next-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-previous-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-previous-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-previous-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-top-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/go-up-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/help-about-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/help-info-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-crop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-denoise-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-filter-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-red-eye-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-sharpen-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/image-straighten-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/insert-emoticon-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/insert-image-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/insert-link-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/insert-object-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/insert-text-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/link-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/list-add-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/list-remove-all-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/list-remove-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/location-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-flag-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-forward-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-forward-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-mark-important-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-mark-junk-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-mark-notjunk-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-mark-read-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-mark-unread-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-message-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-all-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-all-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-sender-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-sender-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-reply-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-send-receive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-send-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mail-spam-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/mark-location-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/marker-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-eject-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-playback-pause-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-playback-start-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-playback-start-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-playback-start-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-playback-stop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-record-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-backward-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-backward-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-backward-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-forward-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-forward-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-seek-forward-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-backward-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-backward-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-backward-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-forward-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-forward-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-skip-forward-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/media-view-subtitles-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/notification-alert-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-flip-horizontal-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-flip-vertical-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-merge-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-move-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-rotate-left-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-rotate-right-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-select-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/object-straighten-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/open-menu-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-down-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-end-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-end-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-start-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-start-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pan-up-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pane-hide-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pane-hide-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pane-show-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/pane-show-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/process-stop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/search-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/selection-end-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/selection-end-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/selection-start-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/selection-start-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/send-to-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/sidebar-places-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/sidebar-show-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/star-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-lock-screen-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-log-out-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-restart-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-run-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-search-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-shutdown-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/system-suspend-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/tab-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/tag-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/tools-check-spelling-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/twitter-dm-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/twitter-home-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/twitter-mentions-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/twitter-profile-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-app-grid-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-column-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-compact-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-continuous-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-coverflow-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-dual-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-filter-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-filter-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-filter-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-fullscreen-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-grid-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-list-compact-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-list-images-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-list-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-list-video-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-more-horizontal-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-more-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-paged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-refresh-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-restore-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-sort-ascending-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/view-sort-descending-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/window-close-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/window-maximize-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/window-minimize-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/window-pop-out-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/zoom-fit-best-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/zoom-in-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/zoom-original-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/actions/zoom-out-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/accessories-calculator-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/accessories-character-map-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/accessories-dictionary-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/accessories-screenshot-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/accessories-text-editor-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/applets-screenshooter-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/bluetooth-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/builder-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/cheese-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/chromium-browser-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/deja-dup-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/dropbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/eog-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/firefox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/gnome-disks-state-standby-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/gnome-power-manager-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/gnome-screenshot-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/gnome-software-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/gnome-tweak-tool-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/google-chrome-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/help-browser-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/help-contents-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/help-faq-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/inkscape-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/internet-mail-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-base-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-calc-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-draw-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-impress-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-main-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-math-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/libreoffice-writer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/mail-archive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/media-eq-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-audio-player-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-equalizer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-photo-manager-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-photo-viewer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-video-player-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/multimedia-volume-control-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/office-calendar-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/org.gnome.Epiphany-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/org.gnome.Geary-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/org.gnome.tweaks-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/password-manager-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-color-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-accessibility-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-display-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-keyboard-shortcuts-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-locale-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-remote-desktop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-screensaver-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-sharing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-desktop-wallpaper-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-network-proxy-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-network-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-notifications-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-privacy-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-search-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/preferences-system-time-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/rhythmbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/seahorse-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/setroubleshoot_icon-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/shotwell-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/sparkleshare-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/system-file-manager-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/system-software-install-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/system-users-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/text-editor-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/unity-tweak-tool-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/user-info-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/utilities-system-monitor-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/utilities-terminal-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/utilities-tweak-tool-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/apps/web-browser-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-engineering-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-games-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-graphics-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-multimedia-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-science-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-system-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/applications-utilities-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/credentials-preferences-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/goa-panel-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/preferences-desktop-online-accounts-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/preferences-other-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/preferences-system-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/slideshow-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/categories/system-help-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/ac-adapter-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/audio-card-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/audio-headphones-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/audio-headset-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/audio-input-microphone-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/audio-speakers-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/battery-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/camera-photo-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/camera-video-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/camera-web-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/colorimeter-colorhug-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/computer-apple-ipad-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/computer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/display-projector-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-harddisk-ieee1394-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-harddisk-solidstate-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-harddisk-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-harddisk-system-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-harddisk-usb-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-multidisk-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-optical-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/drive-removable-media-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-dialpad-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-gaming-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-keyboard-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-mouse-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-tablet-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/input-touchpad-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/laptop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/media-flash-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/media-floppy-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/media-removable-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/media-tape-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/media-zip-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/multimedia-player-apple-ipod-touch-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/multimedia-player-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/network-wired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/network-wireless-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-apple-iphone-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-google-nexus-one-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-htc-g1-white-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-palm-pre-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-samsung-galaxy-s-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/phone-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/printer-network-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/printer-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/scanner-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/sim-card-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/smartphone-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/tablet-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/tv-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/uninterruptible-power-supply-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/video-display-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/devices/weather-storm-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-default-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-documents-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-favorite-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-important-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-music-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-ok-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-photos-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-shared-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-synchronizing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-system-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emblems/emblem-videos-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/emote-love-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-angel-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-angry-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-confused-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-cool-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-crying-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-devilish-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-embarrassed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-glasses-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-hat-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-kiss-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-laugh-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-monkey-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-plain-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-raspberry-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-sad-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-shutmouth-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-sick-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-smile-big-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-smile-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-smirk-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-surprise-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-tired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-uncertain-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-wink-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-worried-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/emotes/face-yawn-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/application-certificate-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/application-rss+xml-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/application-x-addon-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/application-x-executable-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/audio-x-generic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/extension-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/image-x-generic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/inode-directory-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/media-optical-bd-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/media-optical-cd-audio-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/media-optical-dvd-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/media-optical-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/package-x-generic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/playlist-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/text-html-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/text-x-generic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/video-x-generic-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-address-book-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-calendar-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-document-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-drawing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-presentation-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/mimetypes/x-office-spreadsheet-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/places/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-documents-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-download-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-music-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-pictures-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-publicshare-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-recent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-remote-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-saved-search-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-templates-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/folder-videos-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/mail-archive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/mail-folder-inbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/mail-folder-outbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/mail-inbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/mail-outbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/network-server-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/network-workgroup-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/start-here-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/user-bookmarks-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/user-desktop-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/user-home-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/places/user-trash-symbolic.svg -drwxr-xr-x root/root usr/share/icons/Paper/scalable/status/ --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/airplane-mode-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/airplane-mode-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/alarm-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/appointment-missed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/appointment-soon-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-input-microphone-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-input-microphone-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-input-microphone-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-input-microphone-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-volume-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-volume-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-volume-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/audio-volume-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/avatar-default-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-caution-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-caution-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-empty-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-empty-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-full-charged-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-full-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-good-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-low-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-medium-charging-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/battery-missing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/bluetooth-active-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/bluetooth-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/call-missed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/changes-allow-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/changes-prevent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/channel-insecure-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/channel-secure-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/checkbox-checked-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/checkbox-mixed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/checkbox-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/computer-fail-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/content-loading-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/dialog-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/dialog-information-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/dialog-password-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/dialog-question-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/dialog-warning-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/display-brightness-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/display-brightness-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/display-brightness-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/display-brightness-off-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/display-brightness-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/folder-drag-accept-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/folder-open-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/folder-visiting-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/image-loading-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/keyboard-brightness-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/mail-attachment-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/mail-read-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/mail-replied-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/mail-unread-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-consecutive-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-consecutive-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-consecutive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-no-repeat-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-no-shuffle-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-no-shuffle-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-one-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-one-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-song-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-song-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-song-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-repeat-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-shuffle-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-shuffle-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/media-playlist-shuffle-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/microphone-sensitivity-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/microphone-sensitivity-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/microphone-sensitivity-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/microphone-sensitivity-muted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-acquiring-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-3g-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-4g-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-acquiring-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-cdma-1x-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-connected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-disconnected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-edge-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-gprs-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-hspa-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-no-route-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-signal-excellent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-signal-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-signal-none-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-signal-ok-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-signal-weak-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-cellular-umts-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-disconnected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-idle-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-receive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-transmit-receive-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-transmit-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-vpn-acquiring-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-vpn-disconnected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-vpn-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-vpn-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-vpn-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-acquiring-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-disconnected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-no-route-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wired-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-acquiring-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-connected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-disconnected-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-encrypted-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-hotspot-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-no-route-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-signal-excellent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-signal-good-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-signal-none-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-signal-ok-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/network-wireless-signal-weak-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/non-starred-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/notification-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/notification-new-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/notification-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/printer-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/printer-printing-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/printer-warning-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/process-completed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/process-error-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/process-working-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/radio-checked-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/radio-mixed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/radio-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/rotation-allowed-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/rotation-locked-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/security-high-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/security-low-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/security-medium-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/semi-starred-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/semi-starred-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/software-update-available-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/software-update-urgent-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/starred-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/task-due-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/task-past-due-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/touchpad-disabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/touchpad-enabled-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-available-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-away-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-busy-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-idle-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-invisible-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-not-tracked-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-offline-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-status-pending-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/user-trash-full-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/view-private-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/view-wrapped-rtl-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/view-wrapped-symbolic-rtl.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/view-wrapped-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-clear-night-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-clear-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-few-clouds-night-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-few-clouds-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-fog-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-overcast-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-severe-alert-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-showers-scattered-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-showers-symbolic.svg --rwxr-xr-x root/root usr/share/icons/Paper/scalable/status/weather-snow-symbolic.svg diff --git a/repos/xorg/paper-icon-theme/abuild b/repos/xorg/paper-icon-theme/abuild deleted file mode 100644 index 9464d606..00000000 --- a/repos/xorg/paper-icon-theme/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=paper-icon-theme -version=1.5.0 -release=1 -source="https://github.com/snwh/$name/archive/v.$version/$name-$version.tar.gz" diff --git a/repos/xorg/pcmanfm/.checksum b/repos/xorg/pcmanfm/.checksum deleted file mode 100644 index c510d8d2..00000000 --- a/repos/xorg/pcmanfm/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -836f1b26e578870cf373a8b4b3a7a356d27d5720f8a2f99df2feefae77b6912f gcc14-support.patch -526e9a97938d5b45524d6836a5fe82bcf5539e744279917269d9aadf88951f07 pcmanfm-1.3.2.tar.xz diff --git a/repos/xorg/pcmanfm/.files b/repos/xorg/pcmanfm/.files deleted file mode 100644 index dccfd936..00000000 --- a/repos/xorg/pcmanfm/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/pcmanfm/ -drwxr-xr-x root/root etc/xdg/pcmanfm/default/ --rw-r--r-- root/root etc/xdg/pcmanfm/default/pcmanfm.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/pcmanfm -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/pcmanfm-modules.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pcmanfm/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/pcmanfm-desktop-pref.desktop --rw-r--r-- root/root usr/share/applications/pcmanfm.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/pcmanfm.1.gz -drwxr-xr-x root/root usr/share/pcmanfm/ -drwxr-xr-x root/root usr/share/pcmanfm/ui/ --rw-r--r-- root/root usr/share/pcmanfm/ui/about.ui --rw-r--r-- root/root usr/share/pcmanfm/ui/autorun.ui --rw-r--r-- root/root usr/share/pcmanfm/ui/connect.ui --rw-r--r-- root/root usr/share/pcmanfm/ui/desktop-pref.ui --rw-r--r-- root/root usr/share/pcmanfm/ui/pref.ui diff --git a/repos/xorg/pcmanfm/abuild b/repos/xorg/pcmanfm/abuild deleted file mode 100644 index 95d0b011..00000000 --- a/repos/xorg/pcmanfm/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=pcmanfm -version=1.3.2 -release=1 -source="https://downloads.sourceforge.net/$name/$name-$version.tar.xz - gcc14-support.patch" -build_opt="--with-gtk=3" - -prebuild() { - sed 's/po//' -i Makefile.am - autoreconf -fi -} diff --git a/repos/xorg/pcmanfm/depends b/repos/xorg/pcmanfm/depends deleted file mode 100644 index 05f315f1..00000000 --- a/repos/xorg/pcmanfm/depends +++ /dev/null @@ -1 +0,0 @@ -libfm diff --git a/repos/xorg/pcmanfm/gcc14-support.patch b/repos/xorg/pcmanfm/gcc14-support.patch deleted file mode 100644 index 7a31e211..00000000 --- a/repos/xorg/pcmanfm/gcc14-support.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 9bf5145eba45cd5e3b87d4f040618fe0ea69a81d Mon Sep 17 00:00:00 2001 -From: Mamoru TASAKA <mtasaka@fedoraproject.org> -Date: Fri, 26 Jul 2024 12:13:32 +0900 -Subject: [PATCH] Fix build with gcc14 -Werror=incompatible-pointer-types - -gcc14 now defaults to gcc -Werror=incompatible-pointer-types . -This commit adds required casts to different pointer types. ---- - src/desktop.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/desktop.c b/src/desktop.c -index 0686a595..b358f503 100644 ---- a/src/desktop.c -+++ b/src/desktop.c -@@ -1267,7 +1267,7 @@ static AtkObject *fm_desktop_accessible_ref_selection(AtkSelection *selection, - item = items->data; - if (item->item->is_selected) - if (i-- == 0) -- return g_object_ref(item); -+ return (AtkObject *)g_object_ref(item); - } - return NULL; - } -@@ -1454,7 +1454,7 @@ static AtkObject *fm_desktop_accessible_ref_child(AtkObject *accessible, - item = g_list_nth_data(priv->items, index); - if (!item) - return NULL; -- return g_object_ref(item); -+ return (AtkObject *)g_object_ref(item); - } - - static void fm_desktop_accessible_initialize(AtkObject *accessible, gpointer data) diff --git a/repos/xorg/pcmanfm/postinstall b/repos/xorg/pcmanfm/postinstall deleted file mode 100755 index 80598c06..00000000 --- a/repos/xorg/pcmanfm/postinstall +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -update-desktop-database --quiet diff --git a/repos/xorg/perl-data-dump/.checksum b/repos/xorg/perl-data-dump/.checksum deleted file mode 100644 index 220b80d8..00000000 --- a/repos/xorg/perl-data-dump/.checksum +++ /dev/null @@ -1 +0,0 @@ -4fbb391c0e9eea79b50e6cc90d9c1682d2e8f730f0826c9dfa04b704934188fd Data-Dump-1.25.tar.gz diff --git a/repos/xorg/perl-data-dump/.files b/repos/xorg/perl-data-dump/.files deleted file mode 100644 index 1ccd6423..00000000 --- a/repos/xorg/perl-data-dump/.files +++ /dev/null @@ -1,24 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/perl5/ -drwxr-xr-x root/root usr/lib/perl5/5.40/ -drwxr-xr-x root/root usr/lib/perl5/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/Data/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/Data/Dump.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/Data/Dump/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/Data/Dump/FilterContext.pm --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/Data/Dump/Filtered.pm --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/Data/Dump/Trace.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Data/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Data/Dump/ --rw-r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Data/Dump/.packlist -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --r--r--r-- root/root usr/share/man/man3/Data::Dump.3.gz --r--r--r-- root/root usr/share/man/man3/Data::Dump::Filtered.3.gz --r--r--r-- root/root usr/share/man/man3/Data::Dump::Trace.3.gz diff --git a/repos/xorg/perl-data-dump/abuild b/repos/xorg/perl-data-dump/abuild deleted file mode 100644 index 3b93c3cd..00000000 --- a/repos/xorg/perl-data-dump/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=perl-data-dump -version=1.25 -release=1 -source="https://cpan.metacpan.org/authors/id/G/GA/GARU/Data-Dump-${version}.tar.gz" diff --git a/repos/xorg/perl-linux-desktopfiles/.checksum b/repos/xorg/perl-linux-desktopfiles/.checksum deleted file mode 100644 index 6d8d8c69..00000000 --- a/repos/xorg/perl-linux-desktopfiles/.checksum +++ /dev/null @@ -1 +0,0 @@ -69a64c786246f51b79873bee78de2b9be2185b904aa681dad980b57fb3149b36 Linux-DesktopFiles-0.26.tar.gz diff --git a/repos/xorg/perl-linux-desktopfiles/.files b/repos/xorg/perl-linux-desktopfiles/.files deleted file mode 100644 index 6e3ba0a6..00000000 --- a/repos/xorg/perl-linux-desktopfiles/.files +++ /dev/null @@ -1,18 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/perl5/ -drwxr-xr-x root/root usr/lib/perl5/5.40/ -drwxr-xr-x root/root usr/lib/perl5/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/Linux/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.40/Linux/DesktopFiles.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Linux/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Linux/DesktopFiles/ --rw-r--r-- root/root usr/lib/perl5/site_perl/5.40/x86_64-linux-thread-multi/auto/Linux/DesktopFiles/.packlist -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --r--r--r-- root/root usr/share/man/man3/Linux::DesktopFiles.3.gz diff --git a/repos/xorg/perl-linux-desktopfiles/abuild b/repos/xorg/perl-linux-desktopfiles/abuild deleted file mode 100644 index 068a2102..00000000 --- a/repos/xorg/perl-linux-desktopfiles/abuild +++ /dev/null @@ -1,12 +0,0 @@ -name=perl-linux-desktopfiles -version=0.26 -release=1 -source="https://cpan.metacpan.org/authors/id/T/TR/TRIZEN/Linux-DesktopFiles-$version.tar.gz" - -prebuild() { - PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ - PERL_AUTOINSTALL=--skipdeps \ - PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$PKG'" \ - PERL_MB_OPT="--installdirs vendor --destdir '$PKG'" \ - MODULEBUILDRC=/dev/null -} diff --git a/repos/xorg/perl-xml-simple/.checksum b/repos/xorg/perl-xml-simple/.checksum deleted file mode 100644 index 885f7110..00000000 --- a/repos/xorg/perl-xml-simple/.checksum +++ /dev/null @@ -1 +0,0 @@ -34edaad39f7ca3c777dca32a934e154bf14aefaee830ac71afec5ba5e7feae73 XML-Simple-2.25.tar.gz diff --git a/repos/xorg/perl-xml-simple/.files b/repos/xorg/perl-xml-simple/.files deleted file mode 100644 index 25143d66..00000000 --- a/repos/xorg/perl-xml-simple/.files +++ /dev/null @@ -1,21 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/perl5/ -drwxr-xr-x root/root usr/lib/perl5/5.38/ -drwxr-xr-x root/root usr/lib/perl5/5.38/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/XML/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.38/XML/Simple.pm -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/XML/Simple/ --r--r--r-- root/root usr/lib/perl5/site_perl/5.38/XML/Simple/FAQ.pod -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/x86_64-linux-thread-multi/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/x86_64-linux-thread-multi/auto/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/x86_64-linux-thread-multi/auto/XML/ -drwxr-xr-x root/root usr/lib/perl5/site_perl/5.38/x86_64-linux-thread-multi/auto/XML/Simple/ --rw-r--r-- root/root usr/lib/perl5/site_perl/5.38/x86_64-linux-thread-multi/auto/XML/Simple/.packlist -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man3/ --r--r--r-- root/root usr/share/man/man3/XML::Simple.3.gz --r--r--r-- root/root usr/share/man/man3/XML::Simple::FAQ.3.gz diff --git a/repos/xorg/perl-xml-simple/abuild b/repos/xorg/perl-xml-simple/abuild deleted file mode 100644 index 728de02a..00000000 --- a/repos/xorg/perl-xml-simple/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=perl-xml-simple -version=2.25 -release=1 -source="https://www.cpan.org/authors/id/G/GR/GRANTM/XML-Simple-$version.tar.gz" diff --git a/repos/xorg/picom/.checksum b/repos/xorg/picom/.checksum deleted file mode 100644 index 0c04df8b..00000000 --- a/repos/xorg/picom/.checksum +++ /dev/null @@ -1 +0,0 @@ -aecf9ed6c1b9decb948f2d9511daacb0b2fe0c67e1d20cdaaeb50dbbe718d28f picom-12.5.tar.gz diff --git a/repos/xorg/picom/.files b/repos/xorg/picom/.files deleted file mode 100644 index 0e713166..00000000 --- a/repos/xorg/picom/.files +++ /dev/null @@ -1,28 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/autostart/ --rw-r--r-- root/root etc/xdg/autostart/picom.desktop.new --rw-r--r-- root/root etc/xdg/picom.conf.example.new --rw-r--r-- root/root etc/xdg/picom.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/compton -> picom -lrwxrwxrwx root/root usr/bin/compton-trans -> picom-trans --rwxr-xr-x root/root usr/bin/picom -lrwxrwxrwx root/root usr/bin/picom-inspect -> picom --rwxr-xr-x root/root usr/bin/picom-trans -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/picom-api.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/compton.desktop --rw-r--r-- root/root usr/share/applications/picom.desktop -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/compton.png -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/compton.svg diff --git a/repos/xorg/picom/abuild b/repos/xorg/picom/abuild deleted file mode 100644 index 3225de81..00000000 --- a/repos/xorg/picom/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=picom -version=12.5 -release=1 -source="https://github.com/yshui/$name/archive/v$version/$name-$version.tar.gz" - -postbuild() { - install -Dm644 picom.sample.conf $PKG/etc/xdg/picom.conf - install -Dm644 picom.sample.conf $PKG/etc/xdg/picom.conf.example -} diff --git a/repos/xorg/picom/depends b/repos/xorg/picom/depends deleted file mode 100644 index 2da8c8c5..00000000 --- a/repos/xorg/picom/depends +++ /dev/null @@ -1,9 +0,0 @@ -libconfig -uthash -libev -xcb-util-renderutil -xcb-util-image -pixman -pcre2 -dbus -libepoxy diff --git a/repos/xorg/rxvt-unicode/.checksum b/repos/xorg/rxvt-unicode/.checksum deleted file mode 100644 index faa15cb5..00000000 --- a/repos/xorg/rxvt-unicode/.checksum +++ /dev/null @@ -1,3 +0,0 @@ -0f97c97000c9f9f30c4b6eaa7b52a5bfdbec28fc34f48d448871a85131651cad perl-5.38.patch -70a150223fc6d6e27c9678272d82676025207ffd1ff08868c7454b018fff4953 rxvt-unicode-9.31.tar.bz2 -f010809b0f1df70b2f9fb5320cf8c4bc5425f1e8545b2adc5cf6a0e4bab0c25d screen_c_9_30.diff diff --git a/repos/xorg/rxvt-unicode/.files b/repos/xorg/rxvt-unicode/.files deleted file mode 100644 index 60b8059e..00000000 --- a/repos/xorg/rxvt-unicode/.files +++ /dev/null @@ -1,75 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/urclock --rwxr-xr-x root/root usr/bin/urxvt --rwxr-xr-x root/root usr/bin/urxvtc --rwxr-xr-x root/root usr/bin/urxvtd -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/urxvt/ -drwxr-xr-x root/root usr/lib/urxvt/perl/ --rw-r--r-- root/root usr/lib/urxvt/perl/background --rw-r--r-- root/root usr/lib/urxvt/perl/bell-command --rw-r--r-- root/root usr/lib/urxvt/perl/block-graphics-to-ascii --rw-r--r-- root/root usr/lib/urxvt/perl/clickthrough --rw-r--r-- root/root usr/lib/urxvt/perl/clipboard-osc --rw-r--r-- root/root usr/lib/urxvt/perl/confirm-paste --rw-r--r-- root/root usr/lib/urxvt/perl/digital-clock --rw-r--r-- root/root usr/lib/urxvt/perl/eval --rw-r--r-- root/root usr/lib/urxvt/perl/example-refresh-hooks --rw-r--r-- root/root usr/lib/urxvt/perl/keysym-list --rw-r--r-- root/root usr/lib/urxvt/perl/kuake --rw-r--r-- root/root usr/lib/urxvt/perl/matcher --rw-r--r-- root/root usr/lib/urxvt/perl/option-popup --rw-r--r-- root/root usr/lib/urxvt/perl/overlay-osc --rw-r--r-- root/root usr/lib/urxvt/perl/readline --rw-r--r-- root/root usr/lib/urxvt/perl/remote-clipboard --rw-r--r-- root/root usr/lib/urxvt/perl/searchable-scrollback --rw-r--r-- root/root usr/lib/urxvt/perl/selection --rw-r--r-- root/root usr/lib/urxvt/perl/selection-autotransform --rw-r--r-- root/root usr/lib/urxvt/perl/selection-pastebin --rw-r--r-- root/root usr/lib/urxvt/perl/selection-popup --rw-r--r-- root/root usr/lib/urxvt/perl/selection-to-clipboard --rw-r--r-- root/root usr/lib/urxvt/perl/tabbed --rw-r--r-- root/root usr/lib/urxvt/perl/urxvt-popup --rw-r--r-- root/root usr/lib/urxvt/perl/xim-onthespot --rw-r--r-- root/root usr/lib/urxvt/urxvt.pm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/urclock.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-background.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-bell-command.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-block-graphics-to-ascii.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-clickthrough.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-clipboard-osc.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-confirm-paste.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-digital-clock.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-eval.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-example-refresh-hooks.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-extensions.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-keysym-list.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-kuake.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-matcher.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-option-popup.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-overlay-osc.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-readline.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-remote-clipboard.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-searchable-scrollback.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-selection-autotransform.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-selection-pastebin.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-selection-popup.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-selection-to-clipboard.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-selection.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-tabbed.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt-xim-onthespot.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvt.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvtc.1.gz --rw-r--r-- root/root usr/share/man/man1/urxvtd.1.gz -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/urxvtperl.3.gz -drwxr-xr-x root/root usr/share/man/man7/ --rw-r--r-- root/root usr/share/man/man7/urxvt.7.gz -drwxr-xr-x root/root usr/share/terminfo/ -drwxr-xr-x root/root usr/share/terminfo/r/ --rw-r--r-- root/root usr/share/terminfo/r/rxvt-unicode --rw-r--r-- root/root usr/share/terminfo/r/rxvt-unicode-256color diff --git a/repos/xorg/rxvt-unicode/abuild b/repos/xorg/rxvt-unicode/abuild deleted file mode 100644 index e9693a34..00000000 --- a/repos/xorg/rxvt-unicode/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=rxvt-unicode -version=9.31 -release=1 -source="http://dist.schmorp.de/${name}/${name}-${version}.tar.bz2 - screen_c_9_30.diff - perl-5.38.patch" -export TERMINFO=$PKG/usr/share/terminfo - -prebuild() { - mkdir -p $PKG/usr/share/terminfo -} diff --git a/repos/xorg/rxvt-unicode/depends b/repos/xorg/rxvt-unicode/depends deleted file mode 100644 index 8f50c62b..00000000 --- a/repos/xorg/rxvt-unicode/depends +++ /dev/null @@ -1,3 +0,0 @@ -libptytty -libxext -libxft diff --git a/repos/xorg/rxvt-unicode/perl-5.38.patch b/repos/xorg/rxvt-unicode/perl-5.38.patch deleted file mode 100644 index 948dc963..00000000 --- a/repos/xorg/rxvt-unicode/perl-5.38.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/rxvtperl.xs b/src/rxvtperl.xs -index 25b1144b..f664f397 100644 ---- a/src/rxvtperl.xs -+++ b/src/rxvtperl.xs -@@ -399,7 +399,7 @@ rxvt_perl_interp::init () - { - if (!perl) - { -- rxvt_push_locale (""); // perl init destroys current locale -+ rxvt_push_locale ("C"); // perl init destroys current locale - - { - perl_environ = rxvt_environ; diff --git a/repos/xorg/rxvt-unicode/screen_c_9_30.diff b/repos/xorg/rxvt-unicode/screen_c_9_30.diff deleted file mode 100644 index 6d7c4c2e..00000000 --- a/repos/xorg/rxvt-unicode/screen_c_9_30.diff +++ /dev/null @@ -1,72 +0,0 @@ -diff --git a/src/screen.C b/src/screen.C -index 51c7b410..8fdfad9d 100644 ---- a/src/screen.C -+++ b/src/screen.C -@@ -293,6 +293,7 @@ rxvt_term::scr_reset () - - int common_col = min (prev_ncol, ncol); - -+ // resize swap_buf, blank drawn_buf - for (int row = min (nrow, prev_nrow); row--; ) - { - scr_blank_screen_mem (drawn_buf [row], DEFAULT_RSTYLE); -@@ -306,6 +307,7 @@ rxvt_term::scr_reset () - int pend = MOD (term_start + top_row , prev_total_rows); - int q = total_rows; // rewrapped row - -+#if ENABLE_FRILLS - if ((rewrap_always || top_row) && !rewrap_never) - { - // Re-wrap lines. This is rather ugly, possibly because I am too dumb -@@ -387,36 +389,35 @@ rxvt_term::scr_reset () - scr_blank_line (*qline, qline->l, ncol - qline->l, DEFAULT_RSTYLE); - } - while (p != pend && q > 0); -- -- term_start = total_rows - nrow; -- top_row = q - term_start; -- -- // make sure all terminal lines exist -- while (top_row > 0) -- scr_blank_screen_mem (ROW (--top_row), DEFAULT_RSTYLE); - } - else -+#endif - { -- // if no scrollback exists (yet), wing, instead of wrap -+ // wing, instead of wrap -+ screen.cur.row += nrow - prev_nrow; - -- for (int row = min (nrow, prev_nrow); row--; ) -+ do - { -- line_t &src = prev_row_buf [MOD (term_start + row, prev_total_rows)]; -- line_t &dst = row_buf [row]; -+ p = MOD (p - 1, prev_total_rows); -+ q--; - -- copy_line (dst, src); -+ copy_line (row_buf [q], prev_row_buf [p]); - } -+ while (p != pend && q > 0); -+ } - -- for (int row = prev_nrow; row < nrow; row++) -- scr_blank_screen_mem (row_buf [row], DEFAULT_RSTYLE); -+ term_start = total_rows - nrow; -+ top_row = q - term_start; - -- term_start = 0; -- } -+ // make sure all terminal lines exist -+ while (top_row > 0) -+ scr_blank_screen_mem (ROW (--top_row), DEFAULT_RSTYLE); - - clamp_it (screen.cur.row, 0, nrow - 1); - clamp_it (screen.cur.col, 0, ncol - 1); - } - -+ // ensure drawn_buf, swap_buf and terminal rows are all initialized - for (int row = nrow; row--; ) - { - if (!ROW (row).valid ()) scr_blank_screen_mem (ROW (row), DEFAULT_RSTYLE);
\ No newline at end of file diff --git a/repos/xorg/scrot/.checksum b/repos/xorg/scrot/.checksum deleted file mode 100644 index c9a0e54e..00000000 --- a/repos/xorg/scrot/.checksum +++ /dev/null @@ -1 +0,0 @@ -e81077b408ee07357985e490c4da2aef4002c5207289a047431fa63e4de3f7aa scrot-1.11.1.tar.gz diff --git a/repos/xorg/scrot/.files b/repos/xorg/scrot/.files deleted file mode 100644 index eccb6010..00000000 --- a/repos/xorg/scrot/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/scrot -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/scrot.1.gz diff --git a/repos/xorg/scrot/abuild b/repos/xorg/scrot/abuild deleted file mode 100644 index 180742b3..00000000 --- a/repos/xorg/scrot/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=scrot -version=1.11.1 -release=1 -source="https://github.com/resurrecting-open-source-projects/scrot/releases/download/$version/$name-$version.tar.gz" diff --git a/repos/xorg/scrot/depends b/repos/xorg/scrot/depends deleted file mode 100644 index 44de5587..00000000 --- a/repos/xorg/scrot/depends +++ /dev/null @@ -1,3 +0,0 @@ -imlib2 -libxcomposite -libxinerama diff --git a/repos/xorg/sessreg/.checksum b/repos/xorg/sessreg/.checksum deleted file mode 100644 index dde459f8..00000000 --- a/repos/xorg/sessreg/.checksum +++ /dev/null @@ -1 +0,0 @@ -321ba9db4a4cc9c164986dfb014d3afa0ca1090de2495fb37019c0d3bb287f0c sessreg-1.1.3.tar.xz diff --git a/repos/xorg/sessreg/.files b/repos/xorg/sessreg/.files deleted file mode 100644 index 370102e3..00000000 --- a/repos/xorg/sessreg/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/sessreg -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/sessreg.1.gz diff --git a/repos/xorg/sessreg/abuild b/repos/xorg/sessreg/abuild deleted file mode 100644 index bcdf54f2..00000000 --- a/repos/xorg/sessreg/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=sessreg -version=1.1.3 -release=1 -source="https://www.x.org/releases/individual/app/${name}-${version}.tar.xz" diff --git a/repos/xorg/sessreg/depends b/repos/xorg/sessreg/depends deleted file mode 100644 index cef882fc..00000000 --- a/repos/xorg/sessreg/depends +++ /dev/null @@ -1 +0,0 @@ -xorgproto diff --git a/repos/xorg/slim/.checksum b/repos/xorg/slim/.checksum deleted file mode 100644 index 1090fb00..00000000 --- a/repos/xorg/slim/.checksum +++ /dev/null @@ -1,3 +0,0 @@ -97aafea3994881a802890ede740d2f9174b6f95d72f303fe7ec295ecf037cd7f run -9c7fd144befd75fee153335be3995ea61ce49bb2e354ebc2f39b46521997d27a slim-1.4.0.tar.gz -b68e160647b6f910692e11a6cceca40a2586c5b40db22b7df3c5d54747e4fb4c slim.conf diff --git a/repos/xorg/slim/.files b/repos/xorg/slim/.files deleted file mode 100644 index 0f4b5676..00000000 --- a/repos/xorg/slim/.files +++ /dev/null @@ -1,26 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/slim.conf.new -drwxr-xr-x root/root etc/sv/ -drwxr-xr-x root/root etc/sv/slim/ --rwxr-xr-x root/root etc/sv/slim/run.new -lrwxrwxrwx root/root etc/sv/slim/supervise -> ../../../run/runit/supervise.slim -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/slim -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libslim.so -> libslim.so.1.4.0 --rwxr-xr-x root/root usr/lib/libslim.so.1.4.0 -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/slim.1.gz -drwxr-xr-x root/root usr/share/slim/ -drwxr-xr-x root/root usr/share/slim/themes/ -drwxr-xr-x root/root usr/share/slim/themes/default/ --rw-r--r-- root/root usr/share/slim/themes/default/background.jpg --rw-r--r-- root/root usr/share/slim/themes/default/panel.png --rw-r--r-- root/root usr/share/slim/themes/default/slim.theme -drwxr-xr-x root/root usr/share/slim/themes/original/ --rw-r--r-- root/root usr/share/slim/themes/original/background.jpg --rw-r--r-- root/root usr/share/slim/themes/original/panel.png --rw-r--r-- root/root usr/share/slim/themes/original/slim.theme diff --git a/repos/xorg/slim/abuild b/repos/xorg/slim/abuild deleted file mode 100644 index 1fb86c64..00000000 --- a/repos/xorg/slim/abuild +++ /dev/null @@ -1,15 +0,0 @@ -name=slim -version=1.4.0 -release=1 -source="https://sourceforge.net/projects/$name-fork/files/$name-$version.tar.gz - slim.conf - run" -sv="run" -build_opt=" - -DUSE_CONSOLEKIT=no \ - -DUSE_PAM=no -" - -postbuild() { - install -m644 $SRC/slim.conf $PKG/etc/slim.conf -} diff --git a/repos/xorg/slim/depends b/repos/xorg/slim/depends deleted file mode 100644 index 98911b0c..00000000 --- a/repos/xorg/slim/depends +++ /dev/null @@ -1,5 +0,0 @@ -libjpeg-turbo -libxft -libxrandr -libxmu -sessreg diff --git a/repos/xorg/slim/run b/repos/xorg/slim/run deleted file mode 100755 index 765580b1..00000000 --- a/repos/xorg/slim/run +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec slim -nodaemon diff --git a/repos/xorg/slim/slim.conf b/repos/xorg/slim/slim.conf deleted file mode 100644 index 64d57498..00000000 --- a/repos/xorg/slim/slim.conf +++ /dev/null @@ -1,124 +0,0 @@ -# Path, X server and arguments (if needed) -# Note: -xauth $authfile is automatically appended, vt07 appended if no -# vtxx argument given. -default_path /bin:/usr/bin:/sbin:/usr/sbin -default_xserver /usr/bin/X -#xserver_arguments -dpi 75 -xserver_arguments -nolisten tcp -deferglyphs 16 - -# Full path to the xauth binary -xauth_path /usr/bin/xauth - -# Xauth file for server -authfile /var/run/slim.auth - - -# Commands for halt, login, etc. -halt_cmd /sbin/poweroff -reboot_cmd /sbin/reboot -console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login" -#suspend_cmd /usr/sbin/suspend - -# Activate numlock when slim starts. Valid values: on|off -# Default is to not change it -#numlock on - -# Hide the mouse cursor (note: does not work with some WMs). -# Valid values: true|false -#hidecursor false - -# This command is executed after a succesful login. -# You can place the %session and %theme variables to handle launching of -# specific commands in .xinitrc depending on chosen session and slim theme. -# Ensure that the command handles an empty %session, as that is the default -# -# NOTE: if your system does not have bash you need to adjust the command -# according to your preferred shell: -# login_cmd exec /bin/bash -login ~/.xinitrc %session -login_cmd exec /bin/sh -l ~/.xinitrc %session - -# Commands executed when starting and exiting a session. -# They can be used for registering a X11 session with -# sessreg. You can use the %user variable -# -# sessionstart_cmd some command -# sessionstop_cmd some command -sessionstart_cmd /usr/bin/sessreg -a -l "$DISPLAY" %user -sessionstop_cmd /usr/bin/sessreg -d -l "$DISPLAY" %user - -# Start in daemon mode. Valid values: yes | no -# Note that this can be overridden by the command line options "-d" and "-n" -daemon yes - -# Available sessions: -# The current chosen session name replaces %session in the login_cmd -# above, so your login command can handle different sessions. -# If no session is chosen (via F1), %session will be an empty string. This -# allows the script to handle default in a user-specific manner, if desired. -# See the xinitrc.sample file shipped with slim sources. -#sessions xfce4,icewm-session,wmaker,blackbox - -# Alternatively, read available sessions from the contents of a -# directory. The directory can contain either executable scripts, -# or xsessions .desktop files. In the case of .desktop files, the name -# displayed is the Name= value and the string substutited in place of -# %session is the Exec= value -- note that this may provide a full -# path to the session executable! -#sessiondir /usr/share/xsessions - - -# Executed when pressing F11 (requires imagemagick) -#screenshot_cmd import -window root /slim.png -# Alternative using scrot. -screenshot_cmd scrot /root/slim.png - -# Delay after failed authentication before allowing another attempt -# NOTE: This delay is additional to the time PAM takes to fail, and -# the feedback message remains after this delay. While the -# default value is 2 seconds, it's quite reasonable to set it -# to zero. -wrong_passwd_timeout 0 - -# Whether to sound the bell on failed login -#bell 0 - -# Whether to leave the username intact if authorisation fails. For -# users who mistype their password, 1 is better. -#keep_user_on_fail 0 - -# default user, leave blank to not pre-load the username. -#default_user simone - -# Focus the password field on start when default_user is set -# Set to "yes" to enable this feature -#focus_password no - -# Automatically login the default user (without entering -# the password. Set to "yes" to enable this feature -#auto_login no - - -# current theme, use comma separated list to specify a set to -# randomly choose from -current_theme default - -# Lock file -lockfile /run/lock/slim.pid - -# Log file - full path for a file, or just stderr (or /dev/stderr) to send -# all log messages to stderr. -logfile /var/log/slim.log - -#---------------------------------------------------- -# The following options might be considered better placed in the theme.They -# will work either way; the theme takes priority if duplicated - -# welcome message. Available variables: %host, %domain -welcome_msg Welcome to %host - -# Session message. Prepended to the session name when pressing F1 -#session_msg Session: - -# shutdown / reboot messages -shutdown_msg The system is halting... -reboot_msg The system is rebooting... diff --git a/repos/xorg/smartmontools/.checksum b/repos/xorg/smartmontools/.checksum deleted file mode 100644 index 9ee138df..00000000 --- a/repos/xorg/smartmontools/.checksum +++ /dev/null @@ -1,3 +0,0 @@ -146653c72aa4aeb7ff910aa1ce9a94edb1b4d08587834510323640cf34c7528a smartd.finish -feaf83ab2b823e15ce2c6dd20f81f28c03312f5d11f9b38748f551cb9fb57f7d smartd.run -15af56b5c94c87f33fe65bfe1d2b17816737858d5f71c395144ed14431d5e1ae smartmontools-7.4.tar.gz diff --git a/repos/xorg/smartmontools/.files b/repos/xorg/smartmontools/.files deleted file mode 100644 index 8bc14d70..00000000 --- a/repos/xorg/smartmontools/.files +++ /dev/null @@ -1,24 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/smartd.conf.new -drwxr-xr-x root/root etc/smartd_warning.d/ --rwxr-xr-x root/root etc/smartd_warning.sh.new -drwxr-xr-x root/root etc/sv/ -drwxr-xr-x root/root etc/sv/smartd/ --rwxr-xr-x root/root etc/sv/smartd/finish.new --rwxr-xr-x root/root etc/sv/smartd/run.new -lrwxrwxrwx root/root etc/sv/smartd/supervise -> ../../../run/runit/supervise.smartd -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/sbin/ --rwxr-xr-x root/root usr/sbin/smartctl --rwxr-xr-x root/root usr/sbin/smartd --rwxr-xr-x root/root usr/sbin/update-smart-drivedb -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/smartd.conf.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/smartctl.8.gz --rw-r--r-- root/root usr/share/man/man8/smartd.8.gz --rw-r--r-- root/root usr/share/man/man8/update-smart-drivedb.8.gz -drwxr-xr-x root/root usr/share/smartmontools/ --rw-r--r-- root/root usr/share/smartmontools/drivedb.h diff --git a/repos/xorg/smartmontools/abuild b/repos/xorg/smartmontools/abuild deleted file mode 100644 index ed226a1e..00000000 --- a/repos/xorg/smartmontools/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=smartmontools -version=7.4 -release=1 -source="https://downloads.sourceforge.net/$name/$name-$version.tar.gz - smartd.run - smartd.finish" -sv="smartd.run smartd.finish" -build_opt="--with-initscriptdir=no --with-libsystemd=no" diff --git a/repos/xorg/smartmontools/smartd.finish b/repos/xorg/smartmontools/smartd.finish deleted file mode 100644 index 85e568f0..00000000 --- a/repos/xorg/smartmontools/smartd.finish +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -# no devices found, disable smartd -[ $1 = 17 ] && sv d $(dirname $0) diff --git a/repos/xorg/smartmontools/smartd.run b/repos/xorg/smartmontools/smartd.run deleted file mode 100644 index e4f00acc..00000000 --- a/repos/xorg/smartmontools/smartd.run +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -exec 2>&1 -exec smartd -n diff --git a/repos/xorg/sowm/.checksum b/repos/xorg/sowm/.checksum deleted file mode 100644 index 67ae1123..00000000 --- a/repos/xorg/sowm/.checksum +++ /dev/null @@ -1,3 +0,0 @@ -ed1da33d1f14b6bf991c94bd0a7f7ab4887e95764fa8b517ae32b6ee3fb9f9c9 config.h -f59398bdc38dd79cbc97a81da06daaf9c5b9e6978e492fb55aeaf91ae1767aaf multihead-support.patch -b25d810b6e9c6512492d8f1859084a64bdab14d052760e7ba6bd0204d31c1efb sowm-1.6.tar.gz diff --git a/repos/xorg/sowm/.files b/repos/xorg/sowm/.files deleted file mode 100644 index cc60ec24..00000000 --- a/repos/xorg/sowm/.files +++ /dev/null @@ -1,3 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/sowm diff --git a/repos/xorg/sowm/abuild b/repos/xorg/sowm/abuild deleted file mode 100644 index 16ee6c07..00000000 --- a/repos/xorg/sowm/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=sowm -version=1.6 -release=1 -source="https://github.com/dylanaraps/${name}/archive/${version}/${name}-${version}.tar.gz - multihead-support.patch - config.h" - -prebuild() { - cp $SRC/config.h . -} - diff --git a/repos/xorg/sowm/config.h b/repos/xorg/sowm/config.h deleted file mode 100644 index 34fdd06c..00000000 --- a/repos/xorg/sowm/config.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#define MOD Mod4Mask - -const char* menu[] = {"dmenu_run", 0}; -const char* term[] = {"xterm", 0}; -const char* scrot[] = {"scr", 0}; -const char* briup[] = {"bri", "10", "+", 0}; -const char* bridown[] = {"bri", "10", "-", 0}; -const char* voldown[] = {"amixer", "sset", "Master", "5%-", 0}; -const char* volup[] = {"amixer", "sset", "Master", "5%+", 0}; -const char* volmute[] = {"amixer", "sset", "Master", "toggle", 0}; - -static struct key keys[] = { - {MOD, XK_q, win_kill, {0}}, - {MOD, XK_c, win_center, {0}}, - {MOD, XK_f, win_fs, {0}}, - - {Mod1Mask, XK_Tab, win_next, {0}}, - {Mod1Mask|ShiftMask, XK_Tab, win_prev, {0}}, - - {MOD, XK_d, run, {.com = menu}}, - {MOD, XK_p, run, {.com = scrot}}, - {MOD, XK_Return, run, {.com = term}}, - - {0, XF86XK_AudioLowerVolume, run, {.com = voldown}}, - {0, XF86XK_AudioRaiseVolume, run, {.com = volup}}, - {0, XF86XK_AudioMute, run, {.com = volmute}}, - {0, XF86XK_MonBrightnessUp, run, {.com = briup}}, - {0, XF86XK_MonBrightnessDown, run, {.com = bridown}}, - - {MOD, XK_1, ws_go, {.i = 1}}, - {MOD|ShiftMask, XK_1, win_to_ws, {.i = 1}}, - {MOD, XK_2, ws_go, {.i = 2}}, - {MOD|ShiftMask, XK_2, win_to_ws, {.i = 2}}, - {MOD, XK_3, ws_go, {.i = 3}}, - {MOD|ShiftMask, XK_3, win_to_ws, {.i = 3}}, - {MOD, XK_4, ws_go, {.i = 4}}, - {MOD|ShiftMask, XK_4, win_to_ws, {.i = 4}}, - {MOD, XK_5, ws_go, {.i = 5}}, - {MOD|ShiftMask, XK_5, win_to_ws, {.i = 5}}, - {MOD, XK_6, ws_go, {.i = 6}}, - {MOD|ShiftMask, XK_6, win_to_ws, {.i = 6}}, -}; - -#endif diff --git a/repos/xorg/sowm/depends b/repos/xorg/sowm/depends deleted file mode 100644 index f30da080..00000000 --- a/repos/xorg/sowm/depends +++ /dev/null @@ -1 +0,0 @@ -libxinerama diff --git a/repos/xorg/sowm/multihead-support.patch b/repos/xorg/sowm/multihead-support.patch deleted file mode 100644 index 58b1f454..00000000 --- a/repos/xorg/sowm/multihead-support.patch +++ /dev/null @@ -1,118 +0,0 @@ -From 053833863349107f2cbef6332c7eff0ef6b70344 Mon Sep 17 00:00:00 2001 -From: Devon Morris <devonmorris1992@gmail.com> -Date: Sat, 11 Apr 2020 15:40:09 -0400 -Subject: [PATCH] added Xinerama fullscreen support - ---- - Makefile | 2 +- - sowm.c | 38 ++++++++++++++++++++++++++++++++++---- - sowm.h | 2 ++ - 3 files changed, 37 insertions(+), 5 deletions(-) - -diff --git a/Makefile b/Makefile -index 3450a85..a7191f5 100644 ---- a/Makefile -+++ b/Makefile -@@ -10,7 +10,7 @@ config.h: - cp config.def.h config.h - - sowm: -- $(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 $(LDFLAGS) -+ $(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 -lXinerama $(LDFLAGS) - - install: all - install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm -diff --git a/sowm.c b/sowm.c -index 8b21dc6..88e7de4 100644 ---- a/sowm.c -+++ b/sowm.c -@@ -4,6 +4,7 @@ - #include <X11/XF86keysym.h> - #include <X11/keysym.h> - #include <X11/XKBlib.h> -+#include <X11/extensions/Xinerama.h> - #include <stdlib.h> - #include <signal.h> - #include <unistd.h> -@@ -11,7 +12,7 @@ - #include "sowm.h" - - static client *list = {0}, *ws_list[10] = {0}, *cur; --static int ws = 1, sw, sh, wx, wy, numlock = 0; -+static int ws = 1, sw, sh, wx, wy, numlock = 0, monitors; - static unsigned int ww, wh; - - static Display *d; -@@ -62,6 +63,8 @@ void notify_motion(XEvent *e) { - wy + (mouse.button == 1 ? yd : 0), - MAX(1, ww + (mouse.button == 3 ? xd : 0)), - MAX(1, wh + (mouse.button == 3 ? yd : 0))); -+ -+ win_size(cur->w, &cur->wx, &cur->wx, &cur->ww, &cur->wh); - } - - void key_press(XEvent *e) { -@@ -126,11 +129,37 @@ void win_kill(const Arg arg) { - if (cur) XKillClient(d, cur->w); - } - -+int multimonitor_action (int action) { // action = 0 -> center; action = 1 -> fs -+ if (!XineramaIsActive(d)) return 1; -+ XineramaScreenInfo *si = XineramaQueryScreens(d, &monitors); -+ for (int i = 0; i < monitors; i++) { -+ if ((cur->wx + (cur->ww/2) >= (unsigned int)si[i].x_org -+ && cur->wx + (cur->ww/2) < (unsigned int)si[i].x_org + si[i].width) -+ && ( cur->wy + (cur->wh/2) >= (unsigned int)si[i].y_org -+ && cur->wy + (cur->wh/2) < (unsigned int)si[i].y_org + si[i].height)) { -+ if (action) -+ XMoveResizeWindow(d, cur->w, -+ si[i].x_org, si[i].y_org, -+ si[i].width, si[i].height); -+ else -+ XMoveWindow(d, cur->w, -+ si[i].x_org + ((si[i].width - ww)/2), -+ si[i].y_org + ((si[i].height -wh)/2)); -+ break; -+ } -+ } -+ return 0; -+} -+ - void win_center(const Arg arg) { - if (!cur) return; - - win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh); -- XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2); -+ if (multimonitor_action(0)) { -+ XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2); -+ } -+ -+ win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh); - } - - void win_fs(const Arg arg) { -@@ -138,8 +167,9 @@ void win_fs(const Arg arg) { - - if ((cur->f = cur->f ? 0 : 1)) { - win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh); -- XMoveResizeWindow(d, cur->w, 0, 0, sw, sh); -- -+ if(multimonitor_action(1)) { -+ XMoveResizeWindow(d, cur->w, 0, 0, sw, sh); -+ } - } else { - XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh); - } -diff --git a/sowm.h b/sowm.h -index 455ed93..9823d6d 100644 ---- a/sowm.h -+++ b/sowm.h -@@ -33,6 +33,8 @@ typedef struct client { - Window w; - } client; - -+int multimonitor_action(int action); -+ - void button_press(XEvent *e); - void button_release(XEvent *e); - void configure_request(XEvent *e); diff --git a/repos/xorg/spacefm/.checksum b/repos/xorg/spacefm/.checksum deleted file mode 100644 index 2f9a0389..00000000 --- a/repos/xorg/spacefm/.checksum +++ /dev/null @@ -1,7 +0,0 @@ -bd3c26140b7fedb67a4bfd280192aeccbc33aff76ce478fe32d5f0318716eb95 spacefm -2e0dee30b882d0829e7f744f3679313566c3618d127eea011a245b8896eb63b2 spacefm-1.0.6.tar.gz -2d5e2579c5a83dbea72cfad23d211ccb1ffd4fba8955f9df79d179ad243b4d6f spacefm-9999-include-sysmacros.patch -12d89569c4aceddcb7c08d25712f31a00b8e4d9d036feac20f0ac51f793e3b5f spacefm-dash.patch -f443e7ba6e747feeb578476c75515b20fdedd71580fdc6a6337f430044534b93 spacefm-fno-common.patch -68369fe3e83d8f45a800c626f1a4689c4d68747c2e0be39b0553134e785772a1 spacefm-gcc14-build-fix.patch -976ae01883f31f5c0581acaf4e6a0e1d109d49e60f431c6ad8de84f5ba348350 x11-only.patch diff --git a/repos/xorg/spacefm/.files b/repos/xorg/spacefm/.files deleted file mode 100644 index ee188ac0..00000000 --- a/repos/xorg/spacefm/.files +++ /dev/null @@ -1,57 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/spacefm/ --rw-r--r-- root/root etc/spacefm/spacefm.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/spacefm --rwxr-xr-x root/root usr/bin/spacefm-auth --rwxr-xr-x root/root usr/bin/spacefm-bin --rwxr-xr-x root/root usr/bin/spacefm-installer -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/spacefm-find.desktop --rw-r--r-- root/root usr/share/applications/spacefm-folder-handler.desktop --rw-r--r-- root/root usr/share/applications/spacefm.desktop -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/Faenza/ -drwxr-xr-x root/root usr/share/icons/Faenza/apps/ -drwxr-xr-x root/root usr/share/icons/Faenza/apps/48/ --rw-r--r-- root/root usr/share/icons/Faenza/apps/48/spacefm-find.png --rw-r--r-- root/root usr/share/icons/Faenza/apps/48/spacefm-root.png --rw-r--r-- root/root usr/share/icons/Faenza/apps/48/spacefm.png -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/ -drwxr-xr-x root/root usr/share/icons/hicolor/128x128/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-cube-blue.png --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-cube-green.png --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-cube-red.png --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-pyramid-blue.png --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-pyramid-green.png --rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/spacefm-128-pyramid-red.png -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ -drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-cube-blue.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-cube-green.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-cube-red.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-folder-blue.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-folder-red.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-pyramid-blue.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-pyramid-green.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-48-pyramid-red.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-find.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm-root.png --rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/spacefm.png -drwxr-xr-x root/root usr/share/mime/ -drwxr-xr-x root/root usr/share/mime/packages/ --rw-r--r-- root/root usr/share/mime/packages/spacefm-mime.xml -drwxr-xr-x root/root usr/share/spacefm/ -drwxr-xr-x root/root usr/share/spacefm/ui/ --rw-r--r-- root/root usr/share/spacefm/ui/about-dlg.ui --rw-r--r-- root/root usr/share/spacefm/ui/appchooserdlg.ui --rw-r--r-- root/root usr/share/spacefm/ui/file_properties.ui --rw-r--r-- root/root usr/share/spacefm/ui/find-files.ui --rw-r--r-- root/root usr/share/spacefm/ui/find-files2.ui --rw-r--r-- root/root usr/share/spacefm/ui/godlg.ui --rw-r--r-- root/root usr/share/spacefm/ui/prefdlg.ui --rw-r--r-- root/root usr/share/spacefm/ui/prefdlg2.ui diff --git a/repos/xorg/spacefm/abuild b/repos/xorg/spacefm/abuild deleted file mode 100644 index b99e8a1e..00000000 --- a/repos/xorg/spacefm/abuild +++ /dev/null @@ -1,23 +0,0 @@ -name=spacefm -version=1.0.6 -release=2 -source="https://github.com/IgnorantGuru/${name}/archive/${version}/${name}-${version}.tar.gz - spacefm-9999-include-sysmacros.patch - spacefm-dash.patch - spacefm-fno-common.patch - spacefm-gcc14-build-fix.patch - x11-only.patch - $name" - -build() { - ./configure \ - --prefix=/usr \ - --disable-pixmaps \ - --with-gtk3 \ - --disable-video-thumbnails - make - make -j1 $DESTDIR=$PKG install - - mv $PKG/usr/bin/spacefm $PKG/usr/bin/spacefm-bin - install -m755 $SRC/$name $PKG/usr/bin/spacefm -} diff --git a/repos/xorg/spacefm/depends b/repos/xorg/spacefm/depends deleted file mode 100644 index 8ff81688..00000000 --- a/repos/xorg/spacefm/depends +++ /dev/null @@ -1,3 +0,0 @@ -gtk3 -intltool -libudev-zero diff --git a/repos/xorg/spacefm/spacefm b/repos/xorg/spacefm/spacefm deleted file mode 100755 index 106d0748..00000000 --- a/repos/xorg/spacefm/spacefm +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -export GDK_BACKEND=x11 -exec spacefm-bin $@ diff --git a/repos/xorg/spacefm/spacefm-9999-include-sysmacros.patch b/repos/xorg/spacefm/spacefm-9999-include-sysmacros.patch deleted file mode 100644 index 3a586bba..00000000 --- a/repos/xorg/spacefm/spacefm-9999-include-sysmacros.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/main.c -+++ b/src/main.c -@@ -30,6 +30,8 @@ - - #include <locale.h> - -+#include <sys/sysmacros.h> /* for major/minor, dev_t */ -+ - #include "main-window.h" - - #include "vfs-file-info.h" diff --git a/repos/xorg/spacefm/spacefm-dash.patch b/repos/xorg/spacefm/spacefm-dash.patch deleted file mode 100644 index 7b99fee4..00000000 --- a/repos/xorg/spacefm/spacefm-dash.patch +++ /dev/null @@ -1,47 +0,0 @@ -https://github.com/IgnorantGuru/spacefm/pull/813 - -From 30fc0024a8f023277537db1e168294c21ca3b9b0 Mon Sep 17 00:00:00 2001 -From: orbea <orbea@riseup.net> -Date: Sun, 7 May 2023 07:31:56 -0700 -Subject: [PATCH] configure.ac: fix bad substitutions with dash - -Uses POSIX compatible substitutions that is not specific to bash. - -Gentoo-Issue: https://bugs.gentoo.org/891181 ---- - configure.ac | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 035da60e2..ec080e03f 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -40,11 +40,11 @@ bash_path="$withval" - # bash v4. SpaceFM runs bash as root and you WILL open root exploits if you - # disable this check, or run bash based on $PATH. - if test ! -z "$bash_path"; then -- if test ! "${bash_path:0:1}" = "/"; then -+ if test "${bash_path%"${bash_path#?}"}" != "/"; then - AC_MSG_ERROR([Fatal Error: Option --with-bash-path requires absolute path.]) - fi - echo "Modifying spacefm-auth to use bash path..." -- bash_esc="${bash_path//\//\\/}" -+ bash_esc="$(printf %s "$bash_path" | sed "s|/|\\\/|g")" - sed "s/\(\/bin\/bash\)/$bash_esc/" src/spacefm-auth.bash > src/spacefm-auth - else - cp -pf src/spacefm-auth.bash src/spacefm-auth -@@ -308,12 +308,12 @@ data/Makefile - ]) - - resolve_datadir="$(eval echo "$datadir")" --while [[ "${resolve_datadir:0:1}" == "$" ]]; do -+while test "${resolve_datadir%"${resolve_datadir#?}"}" = "\$"; do - resolve_datadir="$(eval echo "$resolve_datadir")" - done - - resolve_htmldir="$(eval echo "$htmldir")" --while [[ "${resolve_htmldir:0:1}" == "$" ]]; do -+while test "${resolve_htmldir%"${resolve_htmldir#?}"}" = "\$"; do - resolve_htmldir="$(eval echo "$resolve_htmldir")" - done - diff --git a/repos/xorg/spacefm/spacefm-fno-common.patch b/repos/xorg/spacefm/spacefm-fno-common.patch deleted file mode 100644 index 4cdc834a..00000000 --- a/repos/xorg/spacefm/spacefm-fno-common.patch +++ /dev/null @@ -1,86 +0,0 @@ ---- a/src/settings.c -+++ b/src/settings.c -@@ -52,6 +52,24 @@ - /* Dirty hack: check whether we are under LXDE or not */ - #define is_under_LXDE() (g_getenv( "_LXSESSION_PID" ) != NULL) - -+char* settings_terminal_su = NULL; -+char* settings_graphical_su = NULL; -+GList* xset_cmd_history = NULL; -+XSet* evt_win_focus = NULL; -+XSet* evt_win_move = NULL; -+XSet* evt_win_click = NULL; -+XSet* evt_win_key = NULL; -+XSet* evt_win_close = NULL; -+XSet* evt_pnl_show = NULL; -+XSet* evt_pnl_focus = NULL; -+XSet* evt_pnl_sel = NULL; -+XSet* evt_tab_new = NULL; -+XSet* evt_tab_chdir = NULL; -+XSet* evt_tab_focus = NULL; -+XSet* evt_tab_close = NULL; -+XSet* evt_device = NULL; -+ -+ - AppSettings app_settings = {0}; - /* const gboolean singleInstance_default = TRUE; */ - const gboolean show_hidden_files_default = FALSE; ---- a/src/settings.h -+++ b/src/settings.h -@@ -120,7 +120,7 @@ const char* xset_get_user_tmp_dir(); - /////////////////////////////////////////////////////////////////////////////// - //MOD extra settings below - --GList* xsets; -+extern GList* xsets; - - enum { - XSET_B_UNSET, -@@ -311,22 +311,22 @@ typedef struct - } XMenuItem; - - // cache these for speed in event handlers --XSet* evt_win_focus; --XSet* evt_win_move; --XSet* evt_win_click; --XSet* evt_win_key; --XSet* evt_win_close; --XSet* evt_pnl_show; --XSet* evt_pnl_focus; --XSet* evt_pnl_sel; --XSet* evt_tab_new; --XSet* evt_tab_chdir; --XSet* evt_tab_focus; --XSet* evt_tab_close; --XSet* evt_device; -+extern XSet* evt_win_focus; -+extern XSet* evt_win_move; -+extern XSet* evt_win_click; -+extern XSet* evt_win_key; -+extern XSet* evt_win_close; -+extern XSet* evt_pnl_show; -+extern XSet* evt_pnl_focus; -+extern XSet* evt_pnl_sel; -+extern XSet* evt_tab_new; -+extern XSet* evt_tab_chdir; -+extern XSet* evt_tab_focus; -+extern XSet* evt_tab_close; -+extern XSet* evt_device; - - // instance-wide command history --GList* xset_cmd_history; -+extern GList* xset_cmd_history; - - static const char* terminal_programs[] = //for pref-dialog.c - { -@@ -374,8 +374,8 @@ static const char* gsu_commands[] = // order and contents must match prefdlg.ui - }; - - // These will contain the su and gsu settings from /etc/spacefm/spacefm.conf --char* settings_terminal_su; --char* settings_graphical_su; -+extern char* settings_terminal_su; -+extern char* settings_graphical_su; - - typedef struct - { diff --git a/repos/xorg/spacefm/spacefm-gcc14-build-fix.patch b/repos/xorg/spacefm/spacefm-gcc14-build-fix.patch deleted file mode 100644 index 7212241c..00000000 --- a/repos/xorg/spacefm/spacefm-gcc14-build-fix.patch +++ /dev/null @@ -1,76 +0,0 @@ -https://github.com/IgnorantGuru/spacefm/pull/816 -From: Brahmajit Das <brahmajit.xyz@gmail.com> -Date: Mon, 22 Apr 2024 02:09:09 +0530 -Subject: [PATCH 1/1] Fix build issues with GCC 14 - -GCC 14 enables -Wincompatible-pointer-types by default thus resulting in -build error such as: -exo-icon-view.c:2686:27: error: assignment to GdkWindow {aka struct _GdkWindow } from incompatible pointer type GObject {aka struct _GObject } [-Wincompatible-pointer-types] - -Much of the code changes are borrowed from older code segments. - -First reported on Gentoo linux, for more reference please bug: -https://bugs.gentoo.org/928492 - -Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com> ---- a/src/exo/exo-gdk-pixbuf-extensions.c -+++ b/src/exo/exo-gdk-pixbuf-extensions.c -@@ -492,7 +492,10 @@ exo_gdk_pixbuf_scale_down (GdkPixbuf *source, - - /* check if we need to scale */ - if (G_UNLIKELY (source_width <= dest_width && source_height <= dest_height)) -- return g_object_ref (G_OBJECT (source)); -+ { -+ g_object_ref (G_OBJECT (source)); -+ return source; -+ } - - /* check if aspect ratio should be preserved */ - if (G_LIKELY (preserve_aspect_ratio)) ---- a/src/exo/exo-icon-chooser-model.c -+++ b/src/exo/exo-icon-chooser-model.c -@@ -671,7 +671,8 @@ _exo_icon_chooser_model_get_for_icon_theme (GtkIconTheme *icon_theme) - g_object_set_data (G_OBJECT (icon_theme), "exo-icon-chooser-default-model", model); - - /* associated the model with the icon theme */ -- model->icon_theme = g_object_ref (G_OBJECT (icon_theme)); -+ model->icon_theme = icon_theme; -+ g_object_ref (G_OBJECT (icon_theme)); - exo_icon_chooser_model_icon_theme_changed (icon_theme, model); - g_signal_connect (G_OBJECT (icon_theme), "changed", G_CALLBACK (exo_icon_chooser_model_icon_theme_changed), model); - } ---- a/src/exo/exo-icon-view.c -+++ b/src/exo/exo-icon-view.c -@@ -2683,7 +2683,8 @@ exo_icon_view_key_press_event (GtkWidget *widget, - /* allocate a new event to forward */ - new_event = gdk_event_copy ((GdkEvent *) event); - g_object_unref (G_OBJECT (new_event->key.window)); -- new_event->key.window = g_object_ref (G_OBJECT (gtk_widget_get_window (GTK_WIDGET(icon_view->priv->search_entry)))); -+ new_event->key.window = gtk_widget_get_window (GTK_WIDGET(icon_view->priv->search_entry)); -+ g_object_ref (G_OBJECT (gtk_widget_get_window (GTK_WIDGET(new_event->key.window)))); - - /* send the event to the search entry. If the "preedit-changed" signal is - * emitted during this event, priv->search_imcontext_changed will be set. -@@ -3082,7 +3083,8 @@ exo_icon_view_set_hadjustment (ExoIconView *icon_view, - if (!hadj) - hadj = gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0); - -- icon_view->priv->hadjustment = g_object_ref_sink (G_OBJECT (hadj)); -+ icon_view->priv->hadjustment = hadj; -+ g_object_ref_sink (G_OBJECT (icon_view->priv->hadjustment)); - - g_signal_connect (icon_view->priv->hadjustment, "value-changed", - G_CALLBACK (exo_icon_view_adjustment_changed), -@@ -3109,7 +3111,8 @@ exo_icon_view_set_vadjustment (ExoIconView *icon_view, - if (!vadj) - vadj = gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0); - -- icon_view->priv->vadjustment = g_object_ref_sink (G_OBJECT (vadj)); -+ icon_view->priv->vadjustment = vadj; -+ g_object_ref_sink(G_OBJECT (icon_view->priv->vadjustment)); - - g_signal_connect (icon_view->priv->vadjustment, "value-changed", - G_CALLBACK (exo_icon_view_adjustment_changed), --- -2.44.0 - diff --git a/repos/xorg/spacefm/x11-only.patch b/repos/xorg/spacefm/x11-only.patch deleted file mode 100644 index 1b2f9f14..00000000 --- a/repos/xorg/spacefm/x11-only.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/main.c 2021-02-09 13:54:32.847364236 +0100 -+++ b/src/main.c 2021-02-09 10:41:51.541203271 +0100 -@@ -1350,6 +1351,7 @@ - vfs_file_monitor_clean(); - return 1; - } -+ gdk_set_allowed_backends("x11"); - gtk_init (&argc, &argv); - int ret = custom_dialog_init( argc, argv ); - if ( ret != 0 ) diff --git a/repos/xorg/st/.checksum b/repos/xorg/st/.checksum deleted file mode 100644 index d7a79421..00000000 --- a/repos/xorg/st/.checksum +++ /dev/null @@ -1 +0,0 @@ -5f42aca0fbf4d8014cd36075a853c37318b2f75aee3b8bc0992b51bead966315 st-0.9.2.tar.gz diff --git a/repos/xorg/st/.files b/repos/xorg/st/.files deleted file mode 100644 index b9628fb6..00000000 --- a/repos/xorg/st/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/st -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/st.1.gz diff --git a/repos/xorg/st/abuild b/repos/xorg/st/abuild deleted file mode 100644 index dc679824..00000000 --- a/repos/xorg/st/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=st -version=0.9.2 -release=1 -source="http://dl.suckless.org/${name}/${name}-${version}.tar.gz" diff --git a/repos/xorg/st/depends b/repos/xorg/st/depends deleted file mode 100644 index 75b9a7d5..00000000 --- a/repos/xorg/st/depends +++ /dev/null @@ -1 +0,0 @@ -libxft diff --git a/repos/xorg/startup-notification/.checksum b/repos/xorg/startup-notification/.checksum deleted file mode 100644 index fbf08c3c..00000000 --- a/repos/xorg/startup-notification/.checksum +++ /dev/null @@ -1 +0,0 @@ -134131fdd210d2eaef76eda9826b4a832807aac231dba334f157751ed1d6da36 startup-notification-0.12.tar.gz diff --git a/repos/xorg/startup-notification/.files b/repos/xorg/startup-notification/.files deleted file mode 100644 index 675ef712..00000000 --- a/repos/xorg/startup-notification/.files +++ /dev/null @@ -1,16 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/startup-notification-1.0/ -drwxr-xr-x root/root usr/include/startup-notification-1.0/libsn/ --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn-common.h --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn-launchee.h --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn-launcher.h --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn-monitor.h --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn-util.h --rw-r--r-- root/root usr/include/startup-notification-1.0/libsn/sn.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libstartup-notification-1.so -> libstartup-notification-1.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libstartup-notification-1.so.0 -> libstartup-notification-1.so.0.0.0 --rwxr-xr-x root/root usr/lib/libstartup-notification-1.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libstartup-notification-1.0.pc diff --git a/repos/xorg/startup-notification/abuild b/repos/xorg/startup-notification/abuild deleted file mode 100644 index 65b17365..00000000 --- a/repos/xorg/startup-notification/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=startup-notification -version=0.12 -release=1 -source="https://www.freedesktop.org/software/$name/releases/$name-$version.tar.gz" diff --git a/repos/xorg/startup-notification/depends b/repos/xorg/startup-notification/depends deleted file mode 100644 index b8872ca0..00000000 --- a/repos/xorg/startup-notification/depends +++ /dev/null @@ -1,2 +0,0 @@ -libx11 -xcb-util diff --git a/repos/xorg/sxhkd/.checksum b/repos/xorg/sxhkd/.checksum deleted file mode 100644 index db1eb200..00000000 --- a/repos/xorg/sxhkd/.checksum +++ /dev/null @@ -1 +0,0 @@ -839fdc302b3302d31faccba0c194644b0d7c4cce6cc8c6bcd2742fa0bc21190c sxhkd-0.6.2.tar.gz diff --git a/repos/xorg/sxhkd/.files b/repos/xorg/sxhkd/.files deleted file mode 100644 index efaddc65..00000000 --- a/repos/xorg/sxhkd/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/sxhkd -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/sxhkd.1.gz diff --git a/repos/xorg/sxhkd/abuild b/repos/xorg/sxhkd/abuild deleted file mode 100644 index 3e8ba90e..00000000 --- a/repos/xorg/sxhkd/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=sxhkd -version=0.6.2 -release=1 -source="https://github.com/baskerville/${name}/archive/${version}/${name}-${version}.tar.gz" diff --git a/repos/xorg/sxhkd/depends b/repos/xorg/sxhkd/depends deleted file mode 100644 index 36487791..00000000 --- a/repos/xorg/sxhkd/depends +++ /dev/null @@ -1,2 +0,0 @@ -xcb-util-keysyms -xcb-util diff --git a/repos/xorg/tango-icon-theme-extras/.checksum b/repos/xorg/tango-icon-theme-extras/.checksum deleted file mode 100644 index 43177193..00000000 --- a/repos/xorg/tango-icon-theme-extras/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -1a476c118f4dce395e13e96ae969f93727cf94c47583efd460e08a2800ac2e52 rsvg.patch -0590b7fee08c0c735d0a54f3a033c1e4350992dbe154b83a7533b8fae93dc1be tango-icon-theme-extras-0.1.0.tar.gz diff --git a/repos/xorg/tango-icon-theme-extras/.files b/repos/xorg/tango-icon-theme-extras/.files deleted file mode 100644 index fe57b98a..00000000 --- a/repos/xorg/tango-icon-theme-extras/.files +++ /dev/null @@ -1,184 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/Tango/ -drwxr-xr-x root/root usr/share/icons/Tango/128x128/ -drwxr-xr-x root/root usr/share/icons/Tango/128x128/devices/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/ -drwxr-xr-x root/root usr/share/icons/Tango/16x16/devices/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/ -drwxr-xr-x root/root usr/share/icons/Tango/22x22/devices/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/ -drwxr-xr-x root/root usr/share/icons/Tango/24x24/devices/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/ -drwxr-xr-x root/root usr/share/icons/Tango/32x32/devices/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/ -drwxr-xr-x root/root usr/share/icons/Tango/48x48/devices/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/ -drwxr-xr-x root/root usr/share/icons/Tango/64x64/devices/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/ -drwxr-xr-x root/root usr/share/icons/Tango/72x72/devices/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/ -drwxr-xr-x root/root usr/share/icons/Tango/96x96/devices/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-dell-dj-pocket.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-U2-color.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-U2-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-mini-blue.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-mini-gold.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-mini-green.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-mini-pink.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-mini-silver.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-nano-black.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-nano-white.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-shuffle.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-standard-color.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-standard-monochrome.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-video-black.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-ipod-video-white.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player-motorola-rokr.png -drwxr-xr-x root/root usr/share/icons/Tango/scalable/ -drwxr-xr-x root/root usr/share/icons/Tango/scalable/devices/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-dell-dj-pocket.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-U2-color.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-U2-monochrome.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-mini-blue.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-mini-gold.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-mini-green.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-mini-pink.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-mini-silver.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-nano-black.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-nano-white.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-shuffle.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-standard-color.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-standard-monochrome.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-video-black.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-ipod-video-white.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player-motorola-rokr.svg diff --git a/repos/xorg/tango-icon-theme-extras/abuild b/repos/xorg/tango-icon-theme-extras/abuild deleted file mode 100644 index 895583f5..00000000 --- a/repos/xorg/tango-icon-theme-extras/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=tango-icon-theme-extras -version=0.1.0 -release=1 -source="http://tango.freedesktop.org/releases/$name-$version.tar.gz - rsvg.patch" -patch_opt="-Np0" -build_opt="--enable-png-creation" - -prebuild() { - autoreconf -fi -} diff --git a/repos/xorg/tango-icon-theme-extras/depends b/repos/xorg/tango-icon-theme-extras/depends deleted file mode 100644 index 41786497..00000000 --- a/repos/xorg/tango-icon-theme-extras/depends +++ /dev/null @@ -1 +0,0 @@ -tango-icon-theme diff --git a/repos/xorg/tango-icon-theme-extras/rsvg.patch b/repos/xorg/tango-icon-theme-extras/rsvg.patch deleted file mode 100644 index 1644c191..00000000 --- a/repos/xorg/tango-icon-theme-extras/rsvg.patch +++ /dev/null @@ -1,49 +0,0 @@ ---- configure.ac 2006-01-10 23:22:31.000000000 +0100 -+++ configure.ac.patched 2016-02-11 12:30:25.093357000 +0100 -@@ -55,7 +55,7 @@ - fi - fi - --# Check for rsvg or ksvgtopng for creating large scale bitmaps from svg -+# Check for imagemagick for creating large scale bitmaps from svg - AC_ARG_ENABLE(png-creation, - AC_HELP_STRING([--enable-png-creation], - [enable creating png images from svg [default=disabled]]), -@@ -65,17 +65,13 @@ - SVGCONVERT="" - AC_MSG_CHECKING([SVG to PNG conversion method]) - if test "x$enable_large_bitmaps" = "xyes"; then -- PKG_CHECK_EXISTS([librsvg-2.0 >= 2.12.3], -+ PKG_CHECK_EXISTS([imagemagick], - [enable_large_bitmaps=yes], [enable_large_bitmaps=no]) -- if test "x$enable_large_bitmaps" = "xyes"; then -- svgconvert_prog="rsvg" -- else -- svgconvert_prog="ksvgtopng" -- fi -+ svgconvert_prog="convert" - AC_MSG_RESULT([$svgconvert_prog]) - AC_PATH_PROG(SVGCONVERT, $svgconvert_prog) - if test -z "$SVGCONVERT"; then -- AC_MSG_ERROR([You need librsvg >= 2.12.3 or ksvgtopng installed to create large scale bitmaps]) -+ AC_MSG_ERROR([You need imagemagick installed to create large scale bitmaps]) - else - enable_large_bitmaps=yes - fi ---- svg2png.sh.in 2006-01-10 23:22:31.000000000 +0100 -+++ svg2png.sh.in.patched 2016-02-11 12:36:00.153362000 +0100 -@@ -8,11 +8,8 @@ - fi - - ICONNAME=`echo ${3} | sed -e "s/.svg//"` --if test `basename $SVGCONVERT` = "rsvg"; then -- OPTIONS="-w ${1} -h ${1}" --else -- OPTIONS="${1} ${1}" --fi - -+OPTIONS="-background none" -+OUTPUT="-resize ${1}x${1}" - --${SVGCONVERT} ${OPTIONS} ${3} ${2}/${ICONNAME}.png -+${SVGCONVERT} ${OPTIONS} ${3} ${OUTPUT} ${2}/${ICONNAME}.png diff --git a/repos/xorg/tango-icon-theme/.checksum b/repos/xorg/tango-icon-theme/.checksum deleted file mode 100644 index 640f8a07..00000000 --- a/repos/xorg/tango-icon-theme/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -b6cc8fd46d4e0f8426af6bc946dea53665382c520c21715a8525764b3df83acc rsvg.patch -26e7bd904e850f96258a4f447a570405d6847a5294781f1b67a2f265bdf36e1c tango-icon-theme-0.8.90.tar.gz diff --git a/repos/xorg/tango-icon-theme/.files b/repos/xorg/tango-icon-theme/.files deleted file mode 100644 index e38bd304..00000000 --- a/repos/xorg/tango-icon-theme/.files +++ /dev/null @@ -1,8521 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/Tango/ -drwxr-xr-x root/root usr/share/icons/Tango/128x128/ -drwxr-xr-x root/root usr/share/icons/Tango/128x128/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/categories/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/128x128/status/ --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/128x128/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/128x128/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/ -drwxr-xr-x root/root usr/share/icons/Tango/16x16/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-mark-not-junk.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_not-spam.png -> mail-mark-not-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/animations/ -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/animations/gnome-spinner.png -> process-working.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/animations/process-working.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/categories/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/16x16/status/ --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/16x16/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/16x16/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/ -drwxr-xr-x root/root usr/share/icons/Tango/22x22/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-mark-not-junk.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_not-spam.png -> mail-mark-not-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/animations/ -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/animations/gnome-spinner.png -> process-working.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/animations/process-working.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/categories/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/22x22/status/ --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/22x22/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/22x22/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/ -drwxr-xr-x root/root usr/share/icons/Tango/24x24/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-mark-not-junk.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_not-spam.png -> mail-mark-not-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/categories/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/24x24/status/ --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/24x24/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/24x24/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/ -drwxr-xr-x root/root usr/share/icons/Tango/32x32/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-mark-not-junk.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_not-spam.png -> mail-mark-not-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/animations/ -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/animations/gnome-spinner.png -> process-working.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/animations/process-working.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/categories/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/32x32/status/ --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/32x32/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/32x32/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/ -drwxr-xr-x root/root usr/share/icons/Tango/48x48/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/categories/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/48x48/status/ --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/48x48/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/48x48/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/ -drwxr-xr-x root/root usr/share/icons/Tango/64x64/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/categories/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/64x64/status/ --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/64x64/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/64x64/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/ -drwxr-xr-x root/root usr/share/icons/Tango/72x72/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/categories/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/72x72/status/ --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/72x72/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/72x72/status/xfce-trash_full.png -> user-trash-full.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/ -drwxr-xr-x root/root usr/share/icons/Tango/96x96/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/add.png -> list-add.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/address-book-new.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/back.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/bookmark_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/bookmarks_list_add.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/centrejust.png -> format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/contact-new.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-new.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-open.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-print-preview.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-print.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-properties.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-save-as.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/down.png -> go-down.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-clear.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-copy.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-cut.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-delete.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-find-replace.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-find.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-paste.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-redo.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-select-all.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/editclear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/editcopy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/editcut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/editdelete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/editpaste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/exit.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/filefind.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/filenew.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/fileopen.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/fileprint.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/filequickprint.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/filesave.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/filesaveas.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/finish.png -> go-last.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/folder_new.png -> folder-new.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-indent-more.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-justify-center.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-justify-fill.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-justify-right.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-text-bold.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-text-italic.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-text-strikethrough.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/forward.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-lockscreen.png -> system-lock-screen.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-logout.png -> system-log-out.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-searchtool.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-shutdown.png -> system-shutdown.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-stock-mail-fwd.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-stock-mail-new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-stock-mail-rpl.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-stock-text-indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gnome-stock-text-unindent.png -> format-indent-less.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-bottom.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-down.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-first.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-home.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-jump.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-last.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-next.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-top.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gohome.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-add.png -> list-add.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-cancel.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-clear.png -> edit-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-find-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-find.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-back-ltr.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-back-rtl.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-forward-ltr.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-forward-rtl.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-go-up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-first-ltr.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-first-rtl.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-last-ltr.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-last-rtl.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-goto-top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-indent-ltr.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-indent-rtl.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-jump-to-ltr.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-jump-to-rtl.png -> go-jump.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-justify-center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-justify-fill.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-justify-left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-justify-right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-forward-ltr.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-forward-rtl.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-next-ltr.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-next-rtl.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-play-ltr.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-previous-ltr.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-previous-rtl.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-rewind-ltr.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-rewind-rtl.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-new.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-open.png -> document-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-redo-ltr.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-underline.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-undo-ltr.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-unindent-ltr.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/gtk-unindent-rtl.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/kfind.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/kfm_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/leftjust.png -> format-justify-left.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/list-add.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/lock.png -> system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-forward.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-message-new.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-reply-all.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-reply-sender.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/mail_forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/mail_new.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/mail_reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/mail_replyall.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/mail_spam.png -> mail-mark-junk.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-eject.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-playback-pause.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-playback-start.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-playback-stop.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-record.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-seek-backward.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-seek-forward.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-skip-backward.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/next.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_eject.png -> media-eject.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_end.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_record.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_start.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/player_stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/previous.png -> go-previous.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/redhat-home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/reload.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/reload3.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/reload_all_tabs.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/reload_page.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/remove.png -> list-remove.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/rightjust.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/search.png -> system-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/start.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_bottom.png -> go-bottom.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_copy.png -> edit-copy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_cut.png -> edit-cut.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_delete.png -> edit-delete.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_down.png -> go-down.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_file-properites.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_first.png -> go-first.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_help-add-bookmark.png -> bookmark-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_home.png -> go-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_last.png -> go-last.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_left.png -> go-previous.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_mail-compose.png -> mail-message-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_mail-forward.png -> mail-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_mail-reply-to-all.png -> mail-reply-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_mail-reply.png -> mail-reply-sender.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_mail-send-receive.png -> mail-send-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-fwd.png -> media-seek-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-next.png -> media-skip-forward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-pause.png -> media-playback-pause.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-play.png -> media-playback-start.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-prev.png -> media-skip-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-rec.png -> media-record.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-rew.png -> media-seek-backward.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_media-stop.png -> media-playback-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-address-book.png -> address-book-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-appointment.png -> appointment-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-bcard.png -> contact-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-dir.png -> folder-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-tab.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-text.png -> document-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_new-window.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_paste.png -> edit-paste.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_print-preview.png -> document-print-preview.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_print.png -> document-print.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_properties.png -> document-properties.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_redo.png -> edit-redo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_refresh.png -> view-refresh.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_right.png -> go-next.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_save-as.png -> document-save-as.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_save.png -> document-save.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_search-and-replace.png -> edit-find-replace.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_search.png -> edit-find.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_select-all.png -> edit-select-all.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_spam.png -> mail-mark-junk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_stop.png -> process-stop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text-strikethrough.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_center.png -> format-justify-center.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_indent.png -> format-indent-more.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_justify.png -> format-justify-fill.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_left.png -> format-justify-left.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_right.png -> format-justify-right.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_underlined.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_text_unindent.png -> format-indent-less.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stock_up.png -> go-up.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/stop.png -> process-stop.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/system-lock-screen.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/system-log-out.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/system-search.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/system-shutdown.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/tab_new.png -> tab-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/text_bold.png -> format-text-bold.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/text_italic.png -> format-text-italic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/text_strike.png -> format-text-strikethrough.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/text_under.png -> format-text-underline.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/top.png -> go-top.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/undo.png -> edit-undo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/up.png -> go-up.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/view-fullscreen.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/view-refresh.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/actions/window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/window_fullscreen.png -> view-fullscreen.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/window_new.png -> window-new.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/actions/xfce-system-lock.png -> system-lock-screen.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/access.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/accessibility-directory.png -> preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/accessories-calculator.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/calc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/config-language.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/config-users.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/date.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/file-manager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/fonts.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-calculator.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-character-map.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-help.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-monitor.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-remote-desktop.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-settings-accessibility-technologies.png -> preferences-desktop-accessibility.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-settings-background.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-settings-font.png -> preferences-desktop-font.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-settings-keybindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-settings-theme.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gnome-window-manager.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/gucharmap.png -> accessories-character-map.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/help-browser.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/internet-group-chat.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/internet-news-reader.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kcalc.png -> accessories-calculator.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kcharselect.png -> accessories-character-map.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kcmkwm.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kedit.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/key_bindings.png -> preferences-desktop-keyboard-shortcuts.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kfm.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/khelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/konsole.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/krfb.png -> preferences-desktop-remote-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/ksysguard.png -> utilities-system-monitor.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kuser.png -> system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/kwin.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/locale.png -> preferences-desktop-locale.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/mail_generic.png -> internet-mail.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/openterm.png -> utilities-terminal.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-accessibility.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-assistive-technology.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-font.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-keyboard-shortcuts.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-locale.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-remote-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-screensaver.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-theme.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-desktop-wallpaper.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-system-network-proxy.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-system-session.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/proxy-config.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/redhat-email.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/redhat-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/redhat-web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/screensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/stock_proxy.png -> preferences-system-network-proxy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/style.png -> preferences-desktop-theme.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/susehelpcenter.png -> help-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/system-config-users.png -> system-users.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/system-file-manager.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/system-installer.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/system-users.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/text-editor.png -> accessories-text-editor.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/update-manager.png -> system-software-update.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/utilities-system-monitor.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/apps/utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/wallpaper.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/web-browser.png -> internet-web-browser.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfcalendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfce-filemanager.png -> system-file-manager.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfce-mail.png -> internet-mail.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfce-terminal.png -> utilities-terminal.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfce4-backdrop.png -> preferences-desktop-wallpaper.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfce4-session.png -> preferences-system-session.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xfwm4.png -> preferences-system-windows.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/ximian-evolution-calendar.png -> office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/xscreensaver.png -> preferences-desktop-screensaver.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/apps/zen-icon.png -> system-software-update.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/categories/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-development.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-games.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-graphics.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-internet.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-multimedia.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-office.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-other.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-applications.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-control-center.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-devel.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-globe.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-joystick.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-other.png -> applications-other.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-settings.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gnome-util.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/gtk-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/input_devices_settings.png -> preferences-desktop-peripherals.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/kcontrol.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_development.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_network.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_system.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/package_utilities.png -> applications-accessories.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/preferences-desktop-peripherals.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/preferences-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/categories/preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-accessories.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-preferences.png -> preferences-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-programming.png -> applications-development.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-sound_video.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-system_settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/redhat-system_tools.png -> applications-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/stock_internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-games.png -> applications-games.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-graphics.png -> applications-graphics.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-internet.png -> applications-internet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-multimedia.png -> applications-multimedia.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-office.png -> applications-office.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-system-settings.png -> preferences-system.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce-utils.png -> applications-accessories.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/categories/xfce4-settings.png -> preferences-desktop.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/3floppy_unmount.png -> media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/audio-card.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/audio-input-microphone.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/battery.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/camera-photo.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/camera-video.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/camera.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/camera_unmount.png -> camera-photo.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/cdrom_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/cdwriter_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/chardevice.png -> video-display.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/drive-cdrom.png -> drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/drive-optical.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/dvd_unmount.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-battery.png -> battery.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-cdrom-audio.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-cdrom.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-computer.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-cdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-cdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-dvdr-plus.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-dvdr.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-dvdram.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-dvdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-disc-dvdrw.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-dvd.png -> drive-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-ethernet.png -> network-wired.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-harddisk-1394.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-harddisk-usb.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-ipod.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-media-cf.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-media-ms.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-media-sdmmc.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-media-sm.png -> media-flash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-mouse-ball.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-mouse-optical.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-removable-1394.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-removable-usb.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-removable.png -> drive-removable-media.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-dev-wavelan.png -> network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-fs-client.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gnome-stock-mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gtk-cdrom.png -> media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gtk-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/gtk-harddisk.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/harddrive.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/hdd_unmount.png -> drive-harddisk.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/input-gaming.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/input-keyboard.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/ipod_mount.png -> multimedia-player.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/kjobviewer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/kxkb.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/media-cdrom.png -> media-optical.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/media-flash.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/media-floppy.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/media-optical.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/mouse.png -> input-mouse.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/multimedia-player.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/network-wired.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/network-wireless.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/printer-remote.png -> printer.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/printer1.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/printmgr.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/stock_mic.png -> audio-input-microphone.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/stock_printers.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/system-floppy.png -> media-floppy.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/system.png -> computer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/usbpendrive_unmount.png -> drive-removable-media.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/devices/video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/xfce-printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/xfce4-display.png -> video-display.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/xfce4-keyboard.png -> input-keyboard.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/xfce4-mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_HD.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_idetude.png -> drive-harddisk.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_joystick.png -> input-gaming.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_mouse.png -> input-mouse.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_printer.png -> printer.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/devices/yast_soundcard.png -> audio-card.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-favorite.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-important.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emblems/emblem-noread.png -> emblem-unreadable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emblems/emblem-nowrite.png -> emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-photos.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-readonly.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-symbolic-link.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-system.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emblems/emblem-unreadable.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-angel.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-crying.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-devilish.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-glasses.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-grin.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-kiss.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-monkey.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-plain.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-sad.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-smile-big.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-smile.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-surprise.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/emotes/face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-1.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-11.png -> face-crying.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-13.png -> face-kiss.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-18.png -> face-angel.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-2.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-22.png -> face-monkey.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-3.png -> face-wink.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-4.png -> face-sad.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-5.png -> face-surprise.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-6.png -> face-smile-big.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-7.png -> face-smile.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/emotes/stock_smiley-8.png -> face-plain.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png -> x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/ascii.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/binary.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/contents2.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/document.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/empty.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/exec.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/folder_tar.png -> package-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/font.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/font_bitmap.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/font_truetype.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/font_type1.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-fs-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-magicpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-msword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-ogg.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-pdf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-postscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-rtf.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.ms-excel.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.png -> x-office-spreadsheet-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -> x-office-drawing.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.png -> x-office-drawing-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.png -> x-office-presentation-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png -> x-office-document-template.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-wordperfect.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-7z-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-abiword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-applix-word.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-archive.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-arj.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-bzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-compress.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-cpio-compressed.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-cpio.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-deb.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-dvi.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-bdf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-linux-psf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-pcf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-sunos-news.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-font-ttf.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-gnumeric.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-gzip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-gzpostscript.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-jar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-killustrator.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-kpresenter.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-kspread.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-kword.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-lha.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-lhz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-lzma.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-ms-dos-executable.png -> application-x-executable.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-perl.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-php.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-python-bytecode.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-rar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-scribus.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-shockwave-flash.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-stuffit.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-tarz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-x-tex.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-xhtml+xml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-application-zip.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-audio.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-html.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-vnd.wap.wml.png -> text-html.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-csh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-python.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-sh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-vcard.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text-x-zsh.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-text.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-mime-x-font-afm.png -> font-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/gnome-package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/html.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/image.png -> image-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/kpresenter_kpr.png -> x-office-presentation.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/mime_ascii.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/misc.png -> text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/package.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/package_editors.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/package_wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/plan.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/rpm.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/shellscript.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/sound.png -> audio-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/spreadsheet.png -> x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/stock_addressbook.png -> x-office-address-book.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/stock_calendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/stock_certificate.png -> application-certificate.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/stock_script.png -> text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/tar.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/template_source.png -> text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/text-html.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/text-x-generic-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/text-x-generic.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/text-x-script.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/tgz.png -> package-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/txt.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/txt2.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/unknown.png -> text-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/vcalendar.png -> x-office-calendar.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/vcard.png -> x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/video.png -> video-x-generic.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/wordprocessing.png -> x-office-document.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/www.png -> text-html.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-address-book.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-calendar.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-document-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-document.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-drawing-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-drawing.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-presentation-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-presentation.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-spreadsheet-template.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/mimetypes/x-office-spreadsheet.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/mimetypes/zip.png -> package-x-generic.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/application-x-gnome-saved-search.png -> folder-saved-search.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/distributor-logo.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/emptytrash.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/folder-remote.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/folder-saved-search.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/folder_home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-desktop.png -> user-desktop.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-ftp.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-home.png -> user-home.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-nfs.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-smb.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-ssh.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-fs-trash-empty.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-main-menu.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-mime-x-directory-nfs-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-mime-x-directory-smb-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-mime-x-directory-smb-share.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-mime-x-directory-smb-workgroup.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gnome-stock-trash.png -> user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gtk-directory.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/gtk-network.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/inode-directory.png -> folder.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/network-server.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/network.png -> folder-remote.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/network_local.png -> network-workgroup.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/novell-button.png -> start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/redhat-network-server.png -> network-server.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/server.png -> network-server.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/start-here.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/stock_folder.png -> folder.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/trashcan_empty.png -> user-trash.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/user-desktop.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/user-home.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/places/user-trash.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/places/xfce-trash_empty.png -> user-trash.png -drwxr-xr-x root/root usr/share/icons/Tango/96x96/status/ --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/audio-volume-high.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/audio-volume-low.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/audio-volume-medium.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/audio-volume-muted.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/battery-caution.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/connect_creating.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/connect_established.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/connect_no.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/edittrash.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/error.png -> dialog-error.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/folder-drag-accept.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/folder-open.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/folder_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-dev-wavelan-encrypted.png -> network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-fs-directory-accept.png -> folder-drag-accept.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-fs-directory-visiting.png -> folder-visiting.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-fs-loading-icon.png -> image-loading.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-fs-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-disconn.png -> network-offline.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-error.png -> network-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-idle.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-rx.png -> network-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-tx.png -> network-transmit.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-netstatus-txrx.png -> network-transmit-receive.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gnome-stock-trash-full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gtk-dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gtk-dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gtk-dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/gtk-missing-image.png -> image-missing.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/image-loading.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/image-missing.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/important.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/info.png -> dialog-information.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/messagebox_critical.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/messagebox_info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/messagebox_warning.png -> dialog-warning.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-error.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-idle.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-receive.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-transmit-receive.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-transmit.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/network-wireless-encrypted.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/nm-adhoc.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/nm-device-wired.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/nm-device-wireless.png -> network-idle.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/nm-no-connection.png -> network-offline.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/printer-error.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/software-update-available.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/software-update-urgent.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_attach.png -> mail-attachment.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_dialog-error.png -> dialog-error.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_dialog-info.png -> dialog-information.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_dialog-warning.png -> dialog-warning.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_open.png -> folder-open.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_trash_full.png -> user-trash-full.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume-0.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume-max.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume-med.png -> audio-volume-medium.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume-min.png -> audio-volume-low.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume-mute.png -> audio-volume-muted.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_volume.png -> audio-volume-high.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-cloudy.png -> weather-overcast.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-few-clouds.png -> weather-few-clouds.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-night-clear.png -> weather-clear-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-night-few-clouds.png -> weather-few-clouds-night.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-showers.png -> weather-showers.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-snow.png -> weather-snow.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-storm.png -> weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/stock_weather-sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/sunny.png -> weather-clear.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/trashcan_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-clear-night.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-clear.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-few-clouds-night.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-few-clouds.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-overcast.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-severe-alert.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-showers-scattered.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-showers.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-snow.png --rw-r--r-- root/root usr/share/icons/Tango/96x96/status/weather-storm.png -lrwxrwxrwx root/root usr/share/icons/Tango/96x96/status/xfce-trash_full.png -> user-trash-full.png --rw-r--r-- root/root usr/share/icons/Tango/index.theme -drwxr-xr-x root/root usr/share/icons/Tango/scalable/ -drwxr-xr-x root/root usr/share/icons/Tango/scalable/actions/ -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/add.svg -> list-add.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/address-book-new.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/appointment-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/appointment.svg -> appointment-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/back.svg -> go-previous.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/bookmark-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/bookmark_add.svg -> bookmark-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/bookmarks_list_add.svg -> bookmark-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/bottom.svg -> go-bottom.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/centrejust.svg -> format-justify-center.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/contact-new.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-new.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-open.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-print-preview.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-print.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-properties.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-save-as.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/document-save.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/down.svg -> go-down.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-clear.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-copy.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-cut.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-delete.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-find-replace.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-find.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-paste.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-redo.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-select-all.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/edit-undo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/editclear.svg -> edit-clear.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/editcopy.svg -> edit-copy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/editcut.svg -> edit-cut.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/editdelete.svg -> edit-delete.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/editpaste.svg -> edit-paste.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/exit.svg -> system-log-out.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/filefind.svg -> edit-find.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/filenew.svg -> document-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/fileopen.svg -> document-open.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/fileprint.svg -> document-print.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/filequickprint.svg -> document-print-preview.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/filesave.svg -> document-save.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/filesaveas.svg -> document-save-as.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/find.svg -> edit-find.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/finish.svg -> go-last.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/folder-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/folder_new.svg -> folder-new.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-indent-less.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-indent-more.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-justify-center.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-justify-fill.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-justify-left.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-justify-right.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-text-bold.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-text-italic.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-text-strikethrough.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/format-text-underline.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/forward.svg -> go-next.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-lockscreen.svg -> system-lock-screen.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-logout.svg -> system-log-out.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-searchtool.svg -> system-search.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-shutdown.svg -> system-shutdown.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-stock-mail-fwd.svg -> mail-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-stock-mail-new.svg -> mail-message-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-stock-mail-rpl.svg -> mail-reply-sender.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-stock-text-indent.svg -> format-indent-more.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gnome-stock-text-unindent.svg -> format-indent-less.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-bottom.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-down.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-first.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-home.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-jump.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-last.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-next.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-previous.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-top.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/go-up.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gohome.svg -> go-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-add.svg -> list-add.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-bold.svg -> format-text-bold.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-cancel.svg -> process-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-clear.svg -> edit-clear.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-copy.svg -> edit-copy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-cut.svg -> edit-cut.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-delete.svg -> edit-delete.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-find-and-replace.svg -> edit-find-replace.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-find.svg -> edit-find.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-fullscreen.svg -> view-fullscreen.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-back-ltr.svg -> go-previous.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-back-rtl.svg -> go-next.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-down.svg -> go-down.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-forward-ltr.svg -> go-next.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-forward-rtl.svg -> go-previous.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-go-up.svg -> go-up.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-bottom.svg -> go-bottom.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-first-ltr.svg -> go-first.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-first-rtl.svg -> go-last.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-last-ltr.svg -> go-last.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-last-rtl.svg -> go-first.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-goto-top.svg -> go-top.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-home.svg -> go-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-indent-ltr.svg -> format-indent-more.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-indent-rtl.svg -> format-indent-less.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-italic.svg -> format-text-italic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-jump-to-ltr.svg -> go-jump.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-jump-to-rtl.svg -> go-jump.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-justify-center.svg -> format-justify-center.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-justify-fill.svg -> format-justify-fill.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-justify-left.svg -> format-justify-left.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-justify-right.svg -> format-justify-right.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-forward-ltr.svg -> media-seek-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-forward-rtl.svg -> media-seek-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-next-ltr.svg -> media-skip-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-next-rtl.svg -> media-skip-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-pause.svg -> media-playback-pause.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-play-ltr.svg -> media-playback-start.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-previous-ltr.svg -> media-skip-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-previous-rtl.svg -> media-skip-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-record.svg -> media-record.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-rewind-ltr.svg -> media-seek-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-rewind-rtl.svg -> media-seek-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-media-stop.svg -> media-playback-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-new.svg -> document-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-open.svg -> document-open.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-paste.svg -> edit-paste.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-print-preview.svg -> document-print-preview.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-print.svg -> document-print.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-properties.svg -> document-properties.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-redo-ltr.svg -> edit-redo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-refresh.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-remove.svg -> list-remove.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-save-as.svg -> document-save-as.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-save.svg -> document-save.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-select-all.svg -> edit-select-all.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-stop.svg -> process-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-strikethrough.svg -> format-text-strikethrough.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-underline.svg -> format-text-underline.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-undo-ltr.svg -> edit-undo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-unindent-ltr.svg -> format-indent-less.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/gtk-unindent-rtl.svg -> format-indent-more.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/kfind.svg -> system-search.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/kfm_home.svg -> go-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/leftjust.svg -> format-justify-left.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/list-add.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/list-remove.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/lock.svg -> system-lock-screen.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-forward.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-mark-junk.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-message-new.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-reply-all.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-reply-sender.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/mail-send-receive.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/mail_forward.svg -> mail-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/mail_new.svg -> mail-message-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/mail_reply.svg -> mail-reply-sender.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/mail_replyall.svg -> mail-reply-all.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/mail_spam.svg -> mail-mark-junk.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-eject.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-playback-pause.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-playback-start.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-playback-stop.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-record.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-seek-backward.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-seek-forward.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-skip-backward.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/media-skip-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/next.svg -> go-next.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_eject.svg -> media-eject.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_end.svg -> media-skip-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_fwd.svg -> media-seek-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_pause.svg -> media-playback-pause.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_play.svg -> media-playback-start.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_record.svg -> media-record.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_rew.svg -> media-seek-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_start.svg -> media-skip-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/player_stop.svg -> media-playback-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/previous.svg -> go-previous.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/process-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/redhat-home.svg -> go-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/redo.svg -> edit-redo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/reload.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/reload3.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/reload_all_tabs.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/reload_page.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/remove.svg -> list-remove.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/rightjust.svg -> format-justify-right.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/search.svg -> system-search.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/start.svg -> go-first.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_add-bookmark.svg -> bookmark-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_bottom.svg -> go-bottom.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_copy.svg -> edit-copy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_cut.svg -> edit-cut.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_delete.svg -> edit-delete.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_down.svg -> go-down.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_file-properites.svg -> document-properties.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_first.svg -> go-first.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_fullscreen.svg -> view-fullscreen.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_help-add-bookmark.svg -> bookmark-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_home.svg -> go-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_last.svg -> go-last.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_left.svg -> go-previous.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_mail-compose.svg -> mail-message-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_mail-forward.svg -> mail-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_mail-reply-to-all.svg -> mail-reply-all.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_mail-reply.svg -> mail-reply-sender.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_mail-send-receive.svg -> mail-send-receive.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-fwd.svg -> media-seek-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-next.svg -> media-skip-forward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-pause.svg -> media-playback-pause.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-play.svg -> media-playback-start.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-prev.svg -> media-skip-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-rec.svg -> media-record.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-rew.svg -> media-seek-backward.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_media-stop.svg -> media-playback-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-address-book.svg -> address-book-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-appointment.svg -> appointment-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-bcard.svg -> contact-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-dir.svg -> folder-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-tab.svg -> tab-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-text.svg -> document-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_new-window.svg -> window-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_paste.svg -> edit-paste.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_print-preview.svg -> document-print-preview.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_print.svg -> document-print.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_properties.svg -> document-properties.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_redo.svg -> edit-redo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_refresh.svg -> view-refresh.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_right.svg -> go-next.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_save-as.svg -> document-save-as.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_save.svg -> document-save.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_search-and-replace.svg -> edit-find-replace.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_search.svg -> edit-find.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_select-all.svg -> edit-select-all.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_spam.svg -> mail-mark-junk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_stop.svg -> process-stop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text-strikethrough.svg -> format-text-strikethrough.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_bold.svg -> format-text-bold.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_center.svg -> format-justify-center.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_indent.svg -> format-indent-more.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_italic.svg -> format-text-italic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_justify.svg -> format-justify-fill.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_left.svg -> format-justify-left.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_right.svg -> format-justify-right.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_underlined.svg -> format-text-underline.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_text_unindent.svg -> format-indent-less.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_top.svg -> go-top.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_undo.svg -> edit-undo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stock_up.svg -> go-up.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/stop.svg -> process-stop.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/system-lock-screen.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/system-log-out.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/system-search.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/system-shutdown.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/tab-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/tab_new.svg -> tab-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/text_bold.svg -> format-text-bold.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/text_italic.svg -> format-text-italic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/text_strike.svg -> format-text-strikethrough.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/text_under.svg -> format-text-underline.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/top.svg -> go-top.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/undo.svg -> edit-undo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/up.svg -> go-up.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/view-fullscreen.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/view-refresh.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/actions/window-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/window_fullscreen.svg -> view-fullscreen.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/window_new.svg -> window-new.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/actions/xfce-system-lock.svg -> system-lock-screen.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/apps/ -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/access.svg -> preferences-desktop-accessibility.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/accessibility-directory.svg -> preferences-desktop-accessibility.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/accessories-calculator.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/accessories-character-map.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/accessories-text-editor.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/background.svg -> preferences-desktop-wallpaper.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/browser.svg -> internet-web-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/calc.svg -> accessories-calculator.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/config-language.svg -> preferences-desktop-locale.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/config-users.svg -> system-users.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/date.svg -> office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/email.svg -> internet-mail.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/file-manager.svg -> system-file-manager.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/fonts.svg -> preferences-desktop-font.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-calculator.svg -> accessories-calculator.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-character-map.svg -> accessories-character-map.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-help.svg -> help-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-monitor.svg -> utilities-system-monitor.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-remote-desktop.svg -> preferences-desktop-remote-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-session.svg -> preferences-system-session.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-settings-accessibility-technologies.svg -> preferences-desktop-accessibility.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-settings-background.svg -> preferences-desktop-wallpaper.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-settings-font.svg -> preferences-desktop-font.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-settings-keybindings.svg -> preferences-desktop-keyboard-shortcuts.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-settings-theme.svg -> preferences-desktop-theme.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-terminal.svg -> utilities-terminal.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gnome-window-manager.svg -> preferences-system-windows.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/gucharmap.svg -> accessories-character-map.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/help-browser.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/internet-group-chat.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/internet-mail.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/internet-news-reader.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/internet-web-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kcalc.svg -> accessories-calculator.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kcharselect.svg -> accessories-character-map.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kcmkwm.svg -> preferences-system-windows.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kedit.svg -> accessories-text-editor.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/key_bindings.svg -> preferences-desktop-keyboard-shortcuts.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kfm.svg -> system-file-manager.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/khelpcenter.svg -> help-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/konsole.svg -> utilities-terminal.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/krfb.svg -> preferences-desktop-remote-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kscreensaver.svg -> preferences-desktop-screensaver.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/ksysguard.svg -> utilities-system-monitor.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kuser.svg -> system-users.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/kwin.svg -> preferences-system-windows.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/locale.svg -> preferences-desktop-locale.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/mail_generic.svg -> internet-mail.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/openterm.svg -> utilities-terminal.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-accessibility.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-assistive-technology.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-font.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-keyboard-shortcuts.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-locale.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-multimedia.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-remote-desktop.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-screensaver.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-theme.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-desktop-wallpaper.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-system-network-proxy.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-system-session.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/preferences-system-windows.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/proxy-config.svg -> preferences-system-network-proxy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/proxy.svg -> preferences-system-network-proxy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/redhat-email.svg -> internet-mail.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/redhat-filemanager.svg -> system-file-manager.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/redhat-web-browser.svg -> internet-web-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/screensaver.svg -> preferences-desktop-screensaver.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/stock_proxy.svg -> preferences-system-network-proxy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/style.svg -> preferences-desktop-theme.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/susehelpcenter.svg -> help-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/system-config-users.svg -> system-users.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/system-file-manager.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/system-installer.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/system-software-update.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/system-users.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/terminal.svg -> utilities-terminal.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/text-editor.svg -> accessories-text-editor.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/update-manager.svg -> system-software-update.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/utilities-system-monitor.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/apps/utilities-terminal.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/wallpaper.svg -> preferences-desktop-wallpaper.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/web-browser.svg -> internet-web-browser.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfcalendar.svg -> office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfce-filemanager.svg -> system-file-manager.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfce-mail.svg -> internet-mail.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfce-terminal.svg -> utilities-terminal.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfce4-backdrop.svg -> preferences-desktop-wallpaper.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfce4-session.svg -> preferences-system-session.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xfwm4.svg -> preferences-system-windows.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/ximian-evolution-calendar.svg -> office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/xscreensaver.svg -> preferences-desktop-screensaver.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/apps/zen-icon.svg -> system-software-update.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/categories/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-accessories.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-development.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-games.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-graphics.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-internet.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-multimedia.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-office.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-other.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/applications-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-applications.svg -> applications-office.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-control-center.svg -> preferences-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-devel.svg -> applications-development.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-globe.svg -> applications-internet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-graphics.svg -> applications-graphics.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-joystick.svg -> applications-games.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-multimedia.svg -> applications-multimedia.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-other.svg -> applications-other.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-settings.svg -> preferences-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-system.svg -> applications-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gnome-util.svg -> applications-accessories.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/gtk-preferences.svg -> preferences-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/input_devices_settings.svg -> preferences-desktop-peripherals.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/kcontrol.svg -> preferences-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_development.svg -> applications-development.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_games.svg -> applications-games.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_graphics.svg -> applications-graphics.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_multimedia.svg -> applications-multimedia.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_network.svg -> applications-internet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_office.svg -> applications-office.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_settings.svg -> preferences-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_system.svg -> applications-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/package_utilities.svg -> applications-accessories.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/preferences-desktop-peripherals.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/preferences-desktop.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/categories/preferences-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-accessories.svg -> applications-accessories.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-games.svg -> applications-games.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-graphics.svg -> applications-graphics.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-internet.svg -> applications-internet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-office.svg -> applications-office.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-preferences.svg -> preferences-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-programming.svg -> applications-development.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-sound_video.svg -> applications-multimedia.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-system_settings.svg -> preferences-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/redhat-system_tools.svg -> applications-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/stock_internet.svg -> applications-internet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-games.svg -> applications-games.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-graphics.svg -> applications-graphics.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-internet.svg -> applications-internet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-multimedia.svg -> applications-multimedia.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-office.svg -> applications-office.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-system-settings.svg -> preferences-system.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce-utils.svg -> applications-accessories.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/categories/xfce4-settings.svg -> preferences-desktop.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/devices/ -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/3floppy_unmount.svg -> media-floppy.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/audio-card.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/audio-input-microphone.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/battery.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/camera-photo.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/camera-video.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/camera.svg -> camera-photo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/camera_unmount.svg -> camera-photo.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/cdrom_unmount.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/cdwriter_unmount.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/chardevice.svg -> video-display.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/computer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/display.svg -> video-display.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/drive-cdrom.svg -> drive-optical.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/drive-harddisk.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/drive-optical.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/drive-removable-media.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/dvd_unmount.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-battery.svg -> battery.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-cdrom-audio.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-cdrom.svg -> drive-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-computer.svg -> computer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-cdr.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-cdrw.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-dvdr-plus.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-dvdr.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-dvdram.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-dvdrom.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-disc-dvdrw.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-dvd.svg -> drive-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-ethernet.svg -> network-wired.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-floppy.svg -> media-floppy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-harddisk-1394.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-harddisk-usb.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-harddisk.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-ipod.svg -> multimedia-player.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-keyboard.svg -> input-keyboard.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-media-cf.svg -> media-flash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-media-ms.svg -> media-flash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-media-sdmmc.svg -> media-flash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-media-sm.svg -> media-flash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-mouse-ball.svg -> input-mouse.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-mouse-optical.svg -> input-mouse.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-printer.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-removable-1394.svg -> drive-removable-media.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-removable-usb.svg -> drive-removable-media.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-removable.svg -> drive-removable-media.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-dev-wavelan.svg -> network-wireless.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-fs-client.svg -> computer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gnome-stock-mic.svg -> audio-input-microphone.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gtk-cdrom.svg -> media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gtk-floppy.svg -> media-floppy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/gtk-harddisk.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/harddrive.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/hdd_unmount.svg -> drive-harddisk.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/input-gaming.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/input-keyboard.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/input-mouse.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/ipod_mount.svg -> multimedia-player.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/joystick.svg -> input-gaming.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/keyboard.svg -> input-keyboard.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/kjobviewer.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/kxkb.svg -> input-keyboard.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/media-cdrom.svg -> media-optical.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/media-flash.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/media-floppy.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/media-optical.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/mouse.svg -> input-mouse.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/multimedia-player.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/network-wired.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/network-wireless.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/printer-remote.svg -> printer.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/printer1.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/printmgr.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/stock_mic.svg -> audio-input-microphone.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/stock_printers.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/system-floppy.svg -> media-floppy.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/system.svg -> computer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/usbpendrive_unmount.svg -> drive-removable-media.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/devices/video-display.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/xfce-printer.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/xfce4-display.svg -> video-display.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/xfce4-keyboard.svg -> input-keyboard.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/xfce4-mouse.svg -> input-mouse.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_HD.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_idetude.svg -> drive-harddisk.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_joystick.svg -> input-gaming.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_mouse.svg -> input-mouse.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_printer.svg -> printer.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/devices/yast_soundcard.svg -> audio-card.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/emblems/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-favorite.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-important.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emblems/emblem-noread.svg -> emblem-unreadable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emblems/emblem-nowrite.svg -> emblem-readonly.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-photos.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-readonly.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-symbolic-link.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-system.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emblems/emblem-unreadable.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/emotes/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-angel.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-crying.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-devilish.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-glasses.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-grin.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-kiss.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-monkey.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-plain.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-sad.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-smile-big.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-smile.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-surprise.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/emotes/face-wink.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-1.svg -> face-smile.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-11.svg -> face-crying.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-13.svg -> face-kiss.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-18.svg -> face-angel.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-2.svg -> face-smile.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-22.svg -> face-monkey.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-3.svg -> face-wink.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-4.svg -> face-sad.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-5.svg -> face-surprise.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-6.svg -> face-smile-big.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-7.svg -> face-smile.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/emotes/stock_smiley-8.svg -> face-plain.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/mimetypes/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/application-certificate.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.ms-word.document.macroEnabled.12.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.template.svg -> x-office-presentation-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg -> x-office-spreadsheet-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg -> x-office-document-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/ascii.svg -> text-x-generic.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/audio-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/binary.svg -> application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/contents2.svg -> x-office-address-book.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/deb.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/document.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/empty.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/exec.svg -> application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/folder_tar.svg -> package-x-generic.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/font.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/font_bitmap.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/font_truetype.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/font_type1.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-fs-executable.svg -> application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-magicpoint.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-msword.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-ogg.svg -> audio-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-pdf.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-postscript.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-rtf.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.ms-excel.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.ms-powerpoint.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.svg -> x-office-drawing-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.svg -> x-office-drawing.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.svg -> x-office-drawing.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg -> x-office-presentation-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg -> x-office-spreadsheet-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.svg -> x-office-document-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg -> text-html.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.stardivision.calc.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.stardivision.impress.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.stardivision.writer.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.calc.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.calc.template.svg -> x-office-spreadsheet-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.draw.svg -> x-office-drawing.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.draw.template.svg -> x-office-drawing-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.impress.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.impress.template.svg -> x-office-presentation-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.writer.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.svg -> x-office-document-template.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-wordperfect.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-7z-compressed.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-abiword.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-applix-spreadsheet.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-applix-word.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-archive.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-arj.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-bzip-compressed-tar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-bzip.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-compress.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-compressed-tar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-cpio-compressed.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-cpio.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-deb.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-dvi.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-executable.svg -> application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-afm.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-bdf.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-linux-psf.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-pcf.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-sunos-news.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-font-ttf.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-gnumeric.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-gzip.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-gzpostscript.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-jar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-killustrator.svg -> image-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-kpresenter.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-kspread.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-kword.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-lha.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-lhz.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-lzma-compressed-tar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-lzma.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-ms-dos-executable.svg -> application-x-executable.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-perl.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-php.svg -> text-html.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-python-bytecode.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-rar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-rpm.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-scribus.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-shellscript.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-shockwave-flash.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-stuffit.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-tar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-tarz.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-x-tex.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-xhtml+xml.svg -> text-html.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-application-zip.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-audio.svg -> audio-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-image.svg -> image-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-html.svg -> text-html.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-vnd.wap.wml.svg -> text-html.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-csh.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-python.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-sh.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-vcalendar.svg -> x-office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-vcard.svg -> x-office-address-book.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text-x-zsh.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-text.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-video.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-mime-x-font-afm.svg -> font-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/gnome-package.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/html.svg -> text-html.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/image-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/image.svg -> image-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/kpresenter_kpr.svg -> x-office-presentation.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/mime_ascii.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/misc.svg -> text-x-generic.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/package.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/package_editors.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/package_wordprocessing.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/plan.svg -> x-office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/rpm.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/shellscript.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/sound.svg -> audio-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/spreadsheet.svg -> x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/stock_addressbook.svg -> x-office-address-book.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/stock_calendar.svg -> x-office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/stock_certificate.svg -> application-certificate.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/stock_script.svg -> text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/tar.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/template_source.svg -> text-x-generic-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/text-html.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/text-x-generic-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/text-x-generic.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/text-x-script.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/tgz.svg -> package-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/txt.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/txt2.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/unknown.svg -> text-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/vcalendar.svg -> x-office-calendar.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/vcard.svg -> x-office-address-book.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/video.svg -> video-x-generic.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/wordprocessing.svg -> x-office-document.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/www.svg -> text-html.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-address-book.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-calendar.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-document-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-document.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-drawing-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-drawing.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-presentation-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-presentation.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-spreadsheet-template.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/mimetypes/x-office-spreadsheet.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/mimetypes/zip.svg -> package-x-generic.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/places/ -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/application-x-gnome-saved-search.svg -> folder-saved-search.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/desktop.svg -> user-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/distributor-logo.svg -> start-here.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/emptytrash.svg -> user-trash.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/folder-remote.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/folder-saved-search.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/folder.icon --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/folder.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/folder_home.svg -> user-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-desktop.svg -> user-desktop.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-directory.icon -> folder.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-directory.svg -> folder.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-ftp.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-home.svg -> user-home.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-network.svg -> network-workgroup.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-nfs.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-server.svg -> network-server.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-share.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-smb.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-ssh.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-fs-trash-empty.svg -> user-trash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-main-menu.svg -> start-here.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-mime-x-directory-nfs-server.svg -> network-server.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-mime-x-directory-smb-server.svg -> network-server.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-mime-x-directory-smb-share.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-mime-x-directory-smb-workgroup.svg -> network-workgroup.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gnome-stock-trash.svg -> user-trash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gtk-directory.icon -> folder.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gtk-directory.svg -> folder.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/gtk-network.svg -> network-workgroup.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/inode-directory.icon -> folder.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/inode-directory.svg -> folder.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/network-server.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/network-workgroup.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/network.svg -> folder-remote.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/network_local.svg -> network-workgroup.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/novell-button.svg -> start-here.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/redhat-network-server.svg -> network-server.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/server.svg -> network-server.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/start-here.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/stock_folder.icon -> folder.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/stock_folder.svg -> folder.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/trashcan_empty.svg -> user-trash.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/user-desktop.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/user-home.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/places/user-trash.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/places/xfce-trash_empty.svg -> user-trash.svg -drwxr-xr-x root/root usr/share/icons/Tango/scalable/status/ --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/audio-volume-high.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/audio-volume-low.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/audio-volume-medium.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/audio-volume-muted.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/battery-caution.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/connect_creating.svg -> network-transmit-receive.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/connect_established.svg -> network-idle.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/connect_no.svg -> network-offline.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/dialog-error.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/dialog-information.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/dialog-warning.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/edittrash.svg -> user-trash-full.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/error.svg -> dialog-error.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/folder-drag-accept.icon --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/folder-drag-accept.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/folder-open.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/folder-visiting.icon --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/folder-visiting.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/folder_open.svg -> folder-open.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-dev-wavelan-encrypted.svg -> network-wireless-encrypted.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-directory-accept.icon -> folder-drag-accept.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-directory-accept.svg -> folder-drag-accept.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-directory-visiting.icon -> folder-visiting.icon -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-directory-visiting.svg -> folder-visiting.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-loading-icon.svg -> image-loading.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-fs-trash-full.svg -> user-trash-full.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-disconn.svg -> network-offline.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-error.svg -> network-error.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-idle.svg -> network-idle.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-rx.svg -> network-receive.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-tx.svg -> network-transmit.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-netstatus-txrx.svg -> network-transmit-receive.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gnome-stock-trash-full.svg -> user-trash-full.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gtk-dialog-error.svg -> dialog-error.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gtk-dialog-info.svg -> dialog-information.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gtk-dialog-warning.svg -> dialog-warning.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/gtk-missing-image.svg -> image-missing.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/image-loading.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/image-missing.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/important.svg -> dialog-warning.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/info.svg -> dialog-information.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/mail-attachment.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/messagebox_critical.svg -> dialog-error.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/messagebox_info.svg -> dialog-information.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/messagebox_warning.svg -> dialog-warning.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-error.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-idle.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-offline.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-receive.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-transmit-receive.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-transmit.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/network-wireless-encrypted.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/nm-adhoc.svg -> network-idle.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/nm-device-wired.svg -> network-idle.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/nm-device-wireless.svg -> network-idle.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/nm-no-connection.svg -> network-offline.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/printer-error.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/software-update-available.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/software-update-urgent.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_attach.svg -> mail-attachment.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_dialog-error.svg -> dialog-error.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_dialog-info.svg -> dialog-information.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_dialog-warning.svg -> dialog-warning.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_open.svg -> folder-open.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_trash_full.svg -> user-trash-full.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume-0.svg -> audio-volume-low.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume-max.svg -> audio-volume-high.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume-med.svg -> audio-volume-medium.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume-min.svg -> audio-volume-low.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume-mute.svg -> audio-volume-muted.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_volume.svg -> audio-volume-high.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-cloudy.svg -> weather-overcast.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-few-clouds.svg -> weather-few-clouds.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-night-clear.svg -> weather-clear-night.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-night-few-clouds.svg -> weather-few-clouds-night.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-showers.svg -> weather-showers.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-snow.svg -> weather-snow.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-storm.svg -> weather-storm.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/stock_weather-sunny.svg -> weather-clear.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/sunny.svg -> weather-clear.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/trashcan_full.svg -> user-trash-full.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/user-trash-full.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-clear-night.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-clear.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-few-clouds-night.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-few-clouds.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-overcast.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-severe-alert.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-showers-scattered.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-showers.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-snow.svg --rw-r--r-- root/root usr/share/icons/Tango/scalable/status/weather-storm.svg -lrwxrwxrwx root/root usr/share/icons/Tango/scalable/status/xfce-trash_full.svg -> user-trash-full.svg diff --git a/repos/xorg/tango-icon-theme/abuild b/repos/xorg/tango-icon-theme/abuild deleted file mode 100644 index b4dc2f23..00000000 --- a/repos/xorg/tango-icon-theme/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=tango-icon-theme -version=0.8.90 -release=1 -source="http://tango.freedesktop.org/releases/$name-$version.tar.gz - rsvg.patch" -patch_opt="-Np0" -build_opt="--enable-png-creation" - -prebuild() { - autoreconf -fi -} diff --git a/repos/xorg/tango-icon-theme/depends b/repos/xorg/tango-icon-theme/depends deleted file mode 100644 index f14a4e17..00000000 --- a/repos/xorg/tango-icon-theme/depends +++ /dev/null @@ -1,4 +0,0 @@ -gettext-tiny -intltool -icon-naming-utils -imagemagick diff --git a/repos/xorg/tango-icon-theme/rsvg.patch b/repos/xorg/tango-icon-theme/rsvg.patch deleted file mode 100644 index 514f7379..00000000 --- a/repos/xorg/tango-icon-theme/rsvg.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- configure.ac 2009-02-26 04:06:20.000000000 +0100 -+++ configure.ac.patched 2016-01-30 11:24:14.906672000 +0100 -@@ -69,7 +69,7 @@ - fi - fi - --# Check for rsvg or ksvgtopng for creating large scale bitmaps from svg -+# Check for imagemagick for creating large scale bitmaps from svg - AC_ARG_ENABLE(png-creation, - AC_HELP_STRING([--enable-png-creation], - [enable creating png images from svg [default=disabled]]), -@@ -79,17 +79,13 @@ - SVGCONVERT="" - AC_MSG_CHECKING([SVG to PNG conversion method]) - if test "x$enable_large_bitmaps" = "xyes"; then -- PKG_CHECK_EXISTS([librsvg-2.0 >= 2.12.3], -+ PKG_CHECK_EXISTS([imagemagick], - [enable_large_bitmaps=yes], [enable_large_bitmaps=no]) -- if test "x$enable_large_bitmaps" = "xyes"; then -- svgconvert_prog="rsvg" -- else -- svgconvert_prog="ksvgtopng" -- fi -+ svgconvert_prog="convert" - AC_MSG_RESULT([$svgconvert_prog]) - AC_PATH_PROG(SVGCONVERT, $svgconvert_prog) - if test -z "$SVGCONVERT"; then -- AC_MSG_ERROR([You need librsvg >= 2.12.3 or ksvgtopng installed to create large scale bitmaps]) -+ AC_MSG_ERROR([You need imagemagick installed to create large scale bitmaps]) - else - enable_large_bitmaps=yes - fi ---- svg2png.sh.in 2007-02-16 21:04:29.000000000 +0100 -+++ svg2png.sh.in.patched 2016-01-30 11:30:53.446678000 +0100 -@@ -9,12 +9,9 @@ - - ICONFILE=`basename ${3}` - ICONNAME=`echo ${ICONFILE} | sed -e "s/.svg//"` --if test `basename $SVGCONVERT` = "rsvg"; then -- OPTIONS="-w ${1} -h ${1}" --else -- OPTIONS="${1} ${1}" --fi -+OPTIONS="-background none" -+OUTPUT="-resize ${1}x${1}" - --echo "${SVGCONVERT} ${OPTIONS} ${3} ${2}/${ICONNAME}.png" --${SVGCONVERT} ${OPTIONS} ${3} ${2}/${ICONNAME}.png -+echo "${SVGCONVERT} ${OPTIONS} ${3} ${OUTPUT} ${2}/${ICONNAME}.png" -+${SVGCONVERT} ${OPTIONS} ${3} ${OUTPUT} ${2}/${ICONNAME}.png - diff --git a/repos/xorg/tewi-font/.checksum b/repos/xorg/tewi-font/.checksum deleted file mode 100644 index 600e1e07..00000000 --- a/repos/xorg/tewi-font/.checksum +++ /dev/null @@ -1 +0,0 @@ -48ffe20018f69d92d9f53bc55efc65d394719e25fd4d4dd8e96a917f573a1072 tewi-font-2.0.2.tar.gz diff --git a/repos/xorg/tewi-font/.files b/repos/xorg/tewi-font/.files deleted file mode 100644 index 3237c19a..00000000 --- a/repos/xorg/tewi-font/.files +++ /dev/null @@ -1,14 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/fonts/ -drwxr-xr-x root/root usr/share/fonts/misc/ --rw-r--r-- root/root usr/share/fonts/misc/tewi-bold-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewi-medium-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewi2a-bold-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewi2a-medium-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewifw-bold-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewifw-medium-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewihm-bold-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewihm-medium-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewii-bold-11.pcf.gz --rw-r--r-- root/root usr/share/fonts/misc/tewii-medium-11.pcf.gz diff --git a/repos/xorg/tewi-font/abuild b/repos/xorg/tewi-font/abuild deleted file mode 100644 index 8b0ff5f4..00000000 --- a/repos/xorg/tewi-font/abuild +++ /dev/null @@ -1,11 +0,0 @@ -name=tewi-font -version=2.0.2 -release=1 -source="https://github.com/lucy/${name}/archive/${version}/${name}-${version}.tar.gz" - -build() { - make var - make all - install -d -m755 "$PKG/usr/share/fonts/misc/" - install -m644 -t "$PKG/usr/share/fonts/misc/" out/*.pcf.gz -} diff --git a/repos/xorg/tewi-font/depends b/repos/xorg/tewi-font/depends deleted file mode 100644 index b17c6ad5..00000000 --- a/repos/xorg/tewi-font/depends +++ /dev/null @@ -1 +0,0 @@ -bdftopcf diff --git a/repos/xorg/tint2/.checksum b/repos/xorg/tint2/.checksum deleted file mode 100644 index bba4077f..00000000 --- a/repos/xorg/tint2/.checksum +++ /dev/null @@ -1 +0,0 @@ -10a205e880bdc8a0a67c40b6a6b692847ca96c6f5f872303c2bc2db5caa2c13f tint2-17.1.3.tar.bz2 diff --git a/repos/xorg/tint2/.files b/repos/xorg/tint2/.files deleted file mode 100644 index 4846ee25..00000000 --- a/repos/xorg/tint2/.files +++ /dev/null @@ -1,38 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/xdg/ -drwxr-xr-x root/root etc/xdg/tint2/ --rw-r--r-- root/root etc/xdg/tint2/tint2rc.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/tint2 --rwxr-xr-x root/root usr/bin/tint2-send --rwxr-xr-x root/root usr/bin/tint2conf -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/tint2.desktop --rw-r--r-- root/root usr/share/applications/tint2conf.desktop -drwxr-xr-x root/root usr/share/icons/ -drwxr-xr-x root/root usr/share/icons/hicolor/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ -drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ --rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/tint2.svg --rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/tint2conf.svg -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/tint2.1.gz -drwxr-xr-x root/root usr/share/mime/ -drwxr-xr-x root/root usr/share/mime/packages/ --rw-r--r-- root/root usr/share/mime/packages/tint2conf.xml -drwxr-xr-x root/root usr/share/tint2/ --rw-r--r-- root/root usr/share/tint2/default_icon.png --rw-r--r-- root/root usr/share/tint2/horizontal-dark-opaque.tint2rc --rw-r--r-- root/root usr/share/tint2/horizontal-dark-transparent.tint2rc --rw-r--r-- root/root usr/share/tint2/horizontal-icon-only.tint2rc --rw-r--r-- root/root usr/share/tint2/horizontal-light-opaque.tint2rc --rw-r--r-- root/root usr/share/tint2/horizontal-light-transparent.tint2rc --rw-r--r-- root/root usr/share/tint2/horizontal-text-only.tint2rc --rw-r--r-- root/root usr/share/tint2/vertical-dark-opaque.tint2rc --rw-r--r-- root/root usr/share/tint2/vertical-dark-transparent.tint2rc --rw-r--r-- root/root usr/share/tint2/vertical-light-opaque.tint2rc --rw-r--r-- root/root usr/share/tint2/vertical-light-transparent.tint2rc --rw-r--r-- root/root usr/share/tint2/vertical-neutral-icons.tint2rc diff --git a/repos/xorg/tint2/abuild b/repos/xorg/tint2/abuild deleted file mode 100644 index 29c2606a..00000000 --- a/repos/xorg/tint2/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=tint2 -version=17.1.3 -release=1 -source="https://gitlab.com/nick87720z/$name/-/archive/$version/$name-$version.tar.bz2" diff --git a/repos/xorg/tint2/depends b/repos/xorg/tint2/depends deleted file mode 100644 index debd123f..00000000 --- a/repos/xorg/tint2/depends +++ /dev/null @@ -1,6 +0,0 @@ -imlib2 -startup-notification -libxcomposite -libxdamage -libxinerama -gtk3 diff --git a/repos/xorg/tinywm/.checksum b/repos/xorg/tinywm/.checksum deleted file mode 100644 index ef11fa5e..00000000 --- a/repos/xorg/tinywm/.checksum +++ /dev/null @@ -1 +0,0 @@ -a262f67b2f367bc7b1827f24503cc508f3f5d7312588c11be1eb3676407410e4 tinywm-1.3.tgz diff --git a/repos/xorg/tinywm/.files b/repos/xorg/tinywm/.files deleted file mode 100644 index 4a7a05d4..00000000 --- a/repos/xorg/tinywm/.files +++ /dev/null @@ -1,3 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/tinywm diff --git a/repos/xorg/tinywm/abuild b/repos/xorg/tinywm/abuild deleted file mode 100644 index 52de5e80..00000000 --- a/repos/xorg/tinywm/abuild +++ /dev/null @@ -1,10 +0,0 @@ -name=tinywm -version=1.3 -release=1 -source="http://incise.org/files/dev/${name}-${version}.tgz" - -build() { - make PREFIX=/usr - mkdir -p $PKG/usr/bin - install -m755 $name $PKG/usr/bin/$name -} diff --git a/repos/xorg/tinywm/depends b/repos/xorg/tinywm/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/tinywm/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/twm/.checksum b/repos/xorg/twm/.checksum deleted file mode 100644 index 0c8c6ea5..00000000 --- a/repos/xorg/twm/.checksum +++ /dev/null @@ -1 +0,0 @@ -ce911422f6288237fc6ab8fe8a2c1706751fd05495d0aaac1b1084a5d553de0d twm-1.0.12.tar.xz diff --git a/repos/xorg/twm/.files b/repos/xorg/twm/.files deleted file mode 100644 index 623b94fc..00000000 --- a/repos/xorg/twm/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/twm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/twm/ --rw-r--r-- root/root usr/share/X11/twm/system.twmrc -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/twm.1.gz diff --git a/repos/xorg/twm/abuild b/repos/xorg/twm/abuild deleted file mode 100644 index 8631c72d..00000000 --- a/repos/xorg/twm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=twm -version=1.0.12 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/twm/depends b/repos/xorg/twm/depends deleted file mode 100644 index 2a5330a8..00000000 --- a/repos/xorg/twm/depends +++ /dev/null @@ -1 +0,0 @@ -libxmu diff --git a/repos/xorg/uthash/.checksum b/repos/xorg/uthash/.checksum deleted file mode 100644 index e0b44a4d..00000000 --- a/repos/xorg/uthash/.checksum +++ /dev/null @@ -1 +0,0 @@ -2a88ecfb875fb7800e771169b364efbe6cfe3c216c499c08828c1c942dc4d94a uthash-2.3.0.tar.gz diff --git a/repos/xorg/uthash/.files b/repos/xorg/uthash/.files deleted file mode 100644 index 5c261537..00000000 --- a/repos/xorg/uthash/.files +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/utarray.h --rw-r--r-- root/root usr/include/uthash.h --rw-r--r-- root/root usr/include/utlist.h --rw-r--r-- root/root usr/include/utringbuffer.h --rw-r--r-- root/root usr/include/utstack.h --rw-r--r-- root/root usr/include/utstring.h diff --git a/repos/xorg/uthash/abuild b/repos/xorg/uthash/abuild deleted file mode 100644 index 43bab6ee..00000000 --- a/repos/xorg/uthash/abuild +++ /dev/null @@ -1,15 +0,0 @@ -name=uthash -version=2.3.0 -release=1 -source="https://github.com/troydhanson/$name/archive/v$version/$name-$version.tar.gz" - -build() { - cd src - # create directory for header files - install -dm755 $PKG/usr/include/ - - # install header files in /usr/include - for h in *.h; do - install -m 644 ${h} $PKG/usr/include/ - done -} diff --git a/repos/xorg/util-macros/.checksum b/repos/xorg/util-macros/.checksum deleted file mode 100644 index 5ef2c57b..00000000 --- a/repos/xorg/util-macros/.checksum +++ /dev/null @@ -1 +0,0 @@ -ad272a006b269e3925bc700dd1e51c1b8d8fa3a825dfc0aecfeeef3db38a94f0 util-macros-1.20.2.tar.xz diff --git a/repos/xorg/util-macros/.files b/repos/xorg/util-macros/.files deleted file mode 100644 index d900f5a3..00000000 --- a/repos/xorg/util-macros/.files +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/aclocal/ --rw-r--r-- root/root usr/share/aclocal/xorg-macros.m4 -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/xorg-macros.pc -drwxr-xr-x root/root usr/share/util-macros/ --rw-r--r-- root/root usr/share/util-macros/INSTALL diff --git a/repos/xorg/util-macros/abuild b/repos/xorg/util-macros/abuild deleted file mode 100644 index 03ee7124..00000000 --- a/repos/xorg/util-macros/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=util-macros -version=1.20.2 -release=1 -source="https://www.x.org/archive/individual/util/${name}-${version}.tar.xz" diff --git a/repos/xorg/vala/.checksum b/repos/xorg/vala/.checksum deleted file mode 100644 index d809cb4a..00000000 --- a/repos/xorg/vala/.checksum +++ /dev/null @@ -1 +0,0 @@ -efa3cfde755692c126d68605f07f126dd782bf8f7e88f078aedffa1fde63e51b vala-0.56.17.tar.xz diff --git a/repos/xorg/vala/.files b/repos/xorg/vala/.files deleted file mode 100644 index 025f52e8..00000000 --- a/repos/xorg/vala/.files +++ /dev/null @@ -1,364 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/vala -> vala-0.56 -lrwxrwxrwx root/root usr/bin/vala-0.56 -> valac-0.56 -lrwxrwxrwx root/root usr/bin/vala-gen-introspect -> vala-gen-introspect-0.56 --rwxr-xr-x root/root usr/bin/vala-gen-introspect-0.56 -lrwxrwxrwx root/root usr/bin/valac -> valac-0.56 --rwxr-xr-x root/root usr/bin/valac-0.56 -lrwxrwxrwx root/root usr/bin/vapigen -> vapigen-0.56 --rwxr-xr-x root/root usr/bin/vapigen-0.56 -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/vala-0.56/ --rw-r--r-- root/root usr/include/vala-0.56/vala.h --rw-r--r-- root/root usr/include/vala-0.56/valagee.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libvala-0.56.so -> libvala-0.56.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libvala-0.56.so.0 -> libvala-0.56.so.0.0.0 --rwxr-xr-x root/root usr/lib/libvala-0.56.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libvala-0.56.pc --rw-r--r-- root/root usr/lib/pkgconfig/vapigen-0.56.pc -lrwxrwxrwx root/root usr/lib/pkgconfig/vapigen.pc -> vapigen-0.56.pc -drwxr-xr-x root/root usr/lib/vala-0.56/ --rwxr-xr-x root/root usr/lib/vala-0.56/gen-introspect-0.56 --rwxr-xr-x root/root usr/lib/vala-0.56/libvalaccodegen.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/aclocal/ --rw-r--r-- root/root usr/share/aclocal/vala.m4 --rw-r--r-- root/root usr/share/aclocal/vapigen.m4 -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/vala-gen-introspect-0.56.1.gz -lrwxrwxrwx root/root usr/share/man/man1/vala-gen-introspect.1.gz -> vala-gen-introspect-0.56.1.gz --rw-r--r-- root/root usr/share/man/man1/valac-0.56.1.gz -lrwxrwxrwx root/root usr/share/man/man1/valac.1.gz -> valac-0.56.1.gz --rw-r--r-- root/root usr/share/man/man1/vapigen-0.56.1.gz -lrwxrwxrwx root/root usr/share/man/man1/vapigen.1.gz -> vapigen-0.56.1.gz -drwxr-xr-x root/root usr/share/vala-0.56/ -drwxr-xr-x root/root usr/share/vala-0.56/vapi/ --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_gfx.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_gfx.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_image.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_image.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_mixer.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_mixer.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_net.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_net.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_ttf.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/SDL2_ttf.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/alsa.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/alsa.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/atk.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/atk.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/atspi-2.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/atspi-2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/avahi-client.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/avahi-gobject.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/avahi-gobject.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/bzlib.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/cairo-gobject.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/cairo-gobject.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/cairo-xcb.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/cairo-xcb.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/cairo.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/ccss-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gdk-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gdk-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gst-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gst-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gst-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gst-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gtk-0.10.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gtk-0.10.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gtk-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-gtk-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-x11-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/clutter-x11-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/cogl-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/cogl-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/cogl-pango-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/cogl-pango-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/curses.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/dbus-glib-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/enchant-2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/enchant.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/fuse.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/fuse.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gconf-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdesktopenums-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-pixbuf-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-pixbuf-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-x11-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-x11-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-x11-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdk-x11-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdl-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdl-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdl-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gdl-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/geocode-glib-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/geocode-glib-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/geocode-glib-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/geocode-glib-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-unix-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-unix-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-windows-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gio-windows-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/glib-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gmodule-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gmodule-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnet-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnet-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-bg-4.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-bg-4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-4.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-desktop-4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-rr-4.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-rr-4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnome-vfs-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnu.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnu.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gnutls.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gobject-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gobject-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gobject-introspection-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gobject-introspection-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/goocanvas-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/goocanvas-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/goocanvas.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/goocanvas.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/graphene-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/graphene-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/graphene-gobject-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/graphene-gobject-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gsl.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gst-editing-services-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gst-editing-services-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-allocators-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-allocators-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-app-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-app-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-audio-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-audio-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-bad-allocators-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-bad-allocators-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-base-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-base-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-check-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-check-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-controller-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-controller-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-fft-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-fft-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-net-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-net-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-pbutils-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-pbutils-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-play-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-play-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-player-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-player-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-riff-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-riff-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtp-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtp-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtsp-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtsp-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtsp-server-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-rtsp-server-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-sdp-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-sdp-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-tag-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-tag-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-video-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-video-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-webrtc-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gstreamer-webrtc-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-unix-print-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-unix-print-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-unix-print-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk+-unix-print-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-unix-print.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-unix-print.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-wayland.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-wayland.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-x11.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4-x11.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtk4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtkmozembed.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtkmozembed.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtksourceview-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gtksourceview-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/gudev-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/gudev-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/hal.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/hal.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/harfbuzz-gobject.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/harfbuzz-gobject.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/hildon-1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/hildon-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/hildon-fm-2.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/hildon-fm-2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/javascriptcoregtk-4.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/javascriptcoregtk-4.1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/javascriptcoregtk-5.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/javascriptcoregtk-6.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/json-glib-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/json-glib-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libarchive.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libarchive.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libbonoboui-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libdaemon.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libepc-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libesmtp.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libftdi.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libftdi.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgeoclue-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgeoclue-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libglade-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libglade-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnome-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnome-menu-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnome-menu-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnome-menu.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnomeui-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgnomeui-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgrss.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgrss.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgsf-1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgsf-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libgvc.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libmagic.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnl-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnl-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnl-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnl-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnl-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnotify.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libnotify.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/liboobs-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libosso.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpanelapplet-2.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpanelapplet-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpeas-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpeas-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpeas-gtk-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpeas-gtk-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libpq.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsexy.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsexy.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsoup-2.4.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsoup-2.4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsoup-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libsoup-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libunwind-generic.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libusb-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libusb-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libusb.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libwnck-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libwnck-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libwnck-3.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/libwnck-3.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/libxml-2.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/linux.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/linux.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/loudmouth-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/lua.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/mysql.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/orc-0.4.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/packagekit-glib2.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/packagekit-glib2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/pango.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/pango.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/pangocairo.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/pangocairo.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/pixman-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/polkit-agent-1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/polkit-agent-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/polkit-gobject-1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/polkit-gobject-1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/poppler-glib.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/poppler-glib.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/posix.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/purple.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/purple.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/raptor.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/rasqal.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/rasqal.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/readline.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-0.7.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-0.7.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-extras-0.7.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-extras-0.7.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-extras-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/rest-extras-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-android.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-android.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-ios.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-ios.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-windows.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-windows.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-winrt.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2-winrt.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sdl2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/sqlite3.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/taglib_c.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/tiff.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/tokyocabinet.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/udisks2.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/udisks2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/unique-1.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/unique-1.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/v4l2.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/wayland-client.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-4.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-4.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-4.1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-4.1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-5.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-5.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-4.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-4.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-4.1.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-4.1.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-5.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkit2gtk-web-extension-5.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-6.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-6.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-web-extension-6.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-web-extension-6.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-web-process-extension-6.0.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/webkitgtk-web-process-extension-6.0.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/x11.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/xcb-icccm.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/xcb-icccm.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/xcb.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/xtst.deps --rw-r--r-- root/root usr/share/vala-0.56/vapi/xtst.vapi --rw-r--r-- root/root usr/share/vala-0.56/vapi/zlib.vapi -drwxr-xr-x root/root usr/share/vala/ --rw-r--r-- root/root usr/share/vala/Makefile.vapigen -drwxr-xr-x root/root usr/share/vala/vapi/ --rw-r--r-- root/root usr/share/vala/vapi/libvala-0.56.vapi diff --git a/repos/xorg/vala/abuild b/repos/xorg/vala/abuild deleted file mode 100644 index 04142ea0..00000000 --- a/repos/xorg/vala/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=vala -version=0.56.17 -release=1 -source="https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz" -build_opt='--disable-valadoc' diff --git a/repos/xorg/vala/depends b/repos/xorg/vala/depends deleted file mode 100644 index 6b609f79..00000000 --- a/repos/xorg/vala/depends +++ /dev/null @@ -1 +0,0 @@ -gobject-introspection diff --git a/repos/xorg/xauth/.checksum b/repos/xorg/xauth/.checksum deleted file mode 100644 index e5a83a56..00000000 --- a/repos/xorg/xauth/.checksum +++ /dev/null @@ -1 +0,0 @@ -75720176372deab54558a34995ed72b33d9599d84a63894e4b0d4ab2152c228f xauth-1.1.3.tar.xz diff --git a/repos/xorg/xauth/.files b/repos/xorg/xauth/.files deleted file mode 100644 index 39d1e176..00000000 --- a/repos/xorg/xauth/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xauth -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xauth.1.gz diff --git a/repos/xorg/xauth/abuild b/repos/xorg/xauth/abuild deleted file mode 100644 index 7d2ae97d..00000000 --- a/repos/xorg/xauth/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xauth -version=1.1.3 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xauth/depends b/repos/xorg/xauth/depends deleted file mode 100644 index 2a5330a8..00000000 --- a/repos/xorg/xauth/depends +++ /dev/null @@ -1 +0,0 @@ -libxmu diff --git a/repos/xorg/xbitmaps/.checksum b/repos/xorg/xbitmaps/.checksum deleted file mode 100644 index 7410c51f..00000000 --- a/repos/xorg/xbitmaps/.checksum +++ /dev/null @@ -1 +0,0 @@ -709594d1b9a9573ff882798dba672040348ff413f4bd0087d06bb6b7745ad9d5 xbitmaps-1.1.3.tar.xz diff --git a/repos/xorg/xbitmaps/.files b/repos/xorg/xbitmaps/.files deleted file mode 100644 index cf6410c5..00000000 --- a/repos/xorg/xbitmaps/.files +++ /dev/null @@ -1,78 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/bitmaps/ --rw-r--r-- root/root usr/include/X11/bitmaps/1x1 --rw-r--r-- root/root usr/include/X11/bitmaps/2x2 --rw-r--r-- root/root usr/include/X11/bitmaps/black --rw-r--r-- root/root usr/include/X11/bitmaps/black6 --rw-r--r-- root/root usr/include/X11/bitmaps/box6 --rw-r--r-- root/root usr/include/X11/bitmaps/boxes --rw-r--r-- root/root usr/include/X11/bitmaps/calculator --rw-r--r-- root/root usr/include/X11/bitmaps/cntr_ptr --rw-r--r-- root/root usr/include/X11/bitmaps/cntr_ptrmsk --rw-r--r-- root/root usr/include/X11/bitmaps/cross_weave --rw-r--r-- root/root usr/include/X11/bitmaps/dimple1 --rw-r--r-- root/root usr/include/X11/bitmaps/dimple3 --rw-r--r-- root/root usr/include/X11/bitmaps/dot --rw-r--r-- root/root usr/include/X11/bitmaps/dropbar7 --rw-r--r-- root/root usr/include/X11/bitmaps/dropbar8 --rw-r--r-- root/root usr/include/X11/bitmaps/escherknot --rw-r--r-- root/root usr/include/X11/bitmaps/flagdown --rw-r--r-- root/root usr/include/X11/bitmaps/flagup --rw-r--r-- root/root usr/include/X11/bitmaps/flipped_gray --rw-r--r-- root/root usr/include/X11/bitmaps/gray --rw-r--r-- root/root usr/include/X11/bitmaps/gray1 --rw-r--r-- root/root usr/include/X11/bitmaps/gray3 --rw-r--r-- root/root usr/include/X11/bitmaps/grid16 --rw-r--r-- root/root usr/include/X11/bitmaps/grid2 --rw-r--r-- root/root usr/include/X11/bitmaps/grid4 --rw-r--r-- root/root usr/include/X11/bitmaps/grid8 --rw-r--r-- root/root usr/include/X11/bitmaps/hlines2 --rw-r--r-- root/root usr/include/X11/bitmaps/hlines3 --rw-r--r-- root/root usr/include/X11/bitmaps/icon --rw-r--r-- root/root usr/include/X11/bitmaps/keyboard16 --rw-r--r-- root/root usr/include/X11/bitmaps/left_ptr --rw-r--r-- root/root usr/include/X11/bitmaps/left_ptrmsk --rw-r--r-- root/root usr/include/X11/bitmaps/letters --rw-r--r-- root/root usr/include/X11/bitmaps/light_gray --rw-r--r-- root/root usr/include/X11/bitmaps/mailempty --rw-r--r-- root/root usr/include/X11/bitmaps/mailemptymsk --rw-r--r-- root/root usr/include/X11/bitmaps/mailfull --rw-r--r-- root/root usr/include/X11/bitmaps/mailfullmsk --rw-r--r-- root/root usr/include/X11/bitmaps/mensetmanus --rw-r--r-- root/root usr/include/X11/bitmaps/menu10 --rw-r--r-- root/root usr/include/X11/bitmaps/menu12 --rw-r--r-- root/root usr/include/X11/bitmaps/menu16 --rw-r--r-- root/root usr/include/X11/bitmaps/menu6 --rw-r--r-- root/root usr/include/X11/bitmaps/menu8 --rw-r--r-- root/root usr/include/X11/bitmaps/noletters --rw-r--r-- root/root usr/include/X11/bitmaps/opendot --rw-r--r-- root/root usr/include/X11/bitmaps/opendotMask --rw-r--r-- root/root usr/include/X11/bitmaps/plaid --rw-r--r-- root/root usr/include/X11/bitmaps/right_ptr --rw-r--r-- root/root usr/include/X11/bitmaps/right_ptrmsk --rw-r--r-- root/root usr/include/X11/bitmaps/root_weave --rw-r--r-- root/root usr/include/X11/bitmaps/scales --rw-r--r-- root/root usr/include/X11/bitmaps/sipb --rw-r--r-- root/root usr/include/X11/bitmaps/star --rw-r--r-- root/root usr/include/X11/bitmaps/starMask --rw-r--r-- root/root usr/include/X11/bitmaps/stipple --rw-r--r-- root/root usr/include/X11/bitmaps/target --rw-r--r-- root/root usr/include/X11/bitmaps/terminal --rw-r--r-- root/root usr/include/X11/bitmaps/tie_fighter --rw-r--r-- root/root usr/include/X11/bitmaps/vlines2 --rw-r--r-- root/root usr/include/X11/bitmaps/vlines3 --rw-r--r-- root/root usr/include/X11/bitmaps/weird_size --rw-r--r-- root/root usr/include/X11/bitmaps/wide_weave --rw-r--r-- root/root usr/include/X11/bitmaps/wingdogs --rw-r--r-- root/root usr/include/X11/bitmaps/woman --rw-r--r-- root/root usr/include/X11/bitmaps/xfd_icon --rw-r--r-- root/root usr/include/X11/bitmaps/xlogo11 --rw-r--r-- root/root usr/include/X11/bitmaps/xlogo16 --rw-r--r-- root/root usr/include/X11/bitmaps/xlogo32 --rw-r--r-- root/root usr/include/X11/bitmaps/xlogo64 --rw-r--r-- root/root usr/include/X11/bitmaps/xsnow -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/xbitmaps.pc diff --git a/repos/xorg/xbitmaps/abuild b/repos/xorg/xbitmaps/abuild deleted file mode 100644 index bcc85114..00000000 --- a/repos/xorg/xbitmaps/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xbitmaps -version=1.1.3 -release=1 -source="https://www.x.org/pub/individual/data/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-proto/.checksum b/repos/xorg/xcb-proto/.checksum deleted file mode 100644 index ad58a844..00000000 --- a/repos/xorg/xcb-proto/.checksum +++ /dev/null @@ -1 +0,0 @@ -68187400fded667f60b4b020d0fc37fa489ae0de33169fe7b07fcbaf88e7a3f9 xcb-proto-1.17.0.tar.xz diff --git a/repos/xorg/xcb-proto/.files b/repos/xorg/xcb-proto/.files deleted file mode 100644 index ccac532e..00000000 --- a/repos/xorg/xcb-proto/.files +++ /dev/null @@ -1,71 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/python3.12/ -drwxr-xr-x root/root usr/lib/python3.12/site-packages/ -drwxr-xr-x root/root usr/lib/python3.12/site-packages/xcbgen/ --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__init__.py -drwxr-xr-x root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/ --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/__init__.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/__init__.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/__init__.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/align.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/align.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/align.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/error.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/error.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/error.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/expr.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/expr.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/expr.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/matcher.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/matcher.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/matcher.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/state.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/state.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/state.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/xtypes.cpython-312.opt-1.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/xtypes.cpython-312.opt-2.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/__pycache__/xtypes.cpython-312.pyc --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/align.py --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/error.py --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/expr.py --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/matcher.py --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/state.py --rw-r--r-- root/root usr/lib/python3.12/site-packages/xcbgen/xtypes.py -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/xcb-proto.pc -drwxr-xr-x root/root usr/share/xcb/ --rw-r--r-- root/root usr/share/xcb/bigreq.xml --rw-r--r-- root/root usr/share/xcb/composite.xml --rw-r--r-- root/root usr/share/xcb/damage.xml --rw-r--r-- root/root usr/share/xcb/dbe.xml --rw-r--r-- root/root usr/share/xcb/dpms.xml --rw-r--r-- root/root usr/share/xcb/dri2.xml --rw-r--r-- root/root usr/share/xcb/dri3.xml --rw-r--r-- root/root usr/share/xcb/ge.xml --rw-r--r-- root/root usr/share/xcb/glx.xml --rw-r--r-- root/root usr/share/xcb/present.xml --rw-r--r-- root/root usr/share/xcb/randr.xml --rw-r--r-- root/root usr/share/xcb/record.xml --rw-r--r-- root/root usr/share/xcb/render.xml --rw-r--r-- root/root usr/share/xcb/res.xml --rw-r--r-- root/root usr/share/xcb/screensaver.xml --rw-r--r-- root/root usr/share/xcb/shape.xml --rw-r--r-- root/root usr/share/xcb/shm.xml --rw-r--r-- root/root usr/share/xcb/sync.xml --rw-r--r-- root/root usr/share/xcb/xc_misc.xml --rw-r--r-- root/root usr/share/xcb/xcb.xsd --rw-r--r-- root/root usr/share/xcb/xevie.xml --rw-r--r-- root/root usr/share/xcb/xf86dri.xml --rw-r--r-- root/root usr/share/xcb/xf86vidmode.xml --rw-r--r-- root/root usr/share/xcb/xfixes.xml --rw-r--r-- root/root usr/share/xcb/xinerama.xml --rw-r--r-- root/root usr/share/xcb/xinput.xml --rw-r--r-- root/root usr/share/xcb/xkb.xml --rw-r--r-- root/root usr/share/xcb/xprint.xml --rw-r--r-- root/root usr/share/xcb/xproto.xml --rw-r--r-- root/root usr/share/xcb/xselinux.xml --rw-r--r-- root/root usr/share/xcb/xtest.xml --rw-r--r-- root/root usr/share/xcb/xv.xml --rw-r--r-- root/root usr/share/xcb/xvmc.xml diff --git a/repos/xorg/xcb-proto/abuild b/repos/xorg/xcb-proto/abuild deleted file mode 100644 index 0398fb79..00000000 --- a/repos/xorg/xcb-proto/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-proto -version=1.17.0 -release=1 -source="https://xorg.freedesktop.org/archive/individual/proto/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util-cursor/.checksum b/repos/xorg/xcb-util-cursor/.checksum deleted file mode 100644 index 374d2399..00000000 --- a/repos/xorg/xcb-util-cursor/.checksum +++ /dev/null @@ -1 +0,0 @@ -f46b389539d43658fcf10511fae4ef9a4d40856058681e257bdb3b275a127e35 xcb-util-cursor-0.1.5.tar.xz diff --git a/repos/xorg/xcb-util-cursor/.files b/repos/xorg/xcb-util-cursor/.files deleted file mode 100644 index 9aab82a2..00000000 --- a/repos/xorg/xcb-util-cursor/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_cursor.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-cursor.so -> libxcb-cursor.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-cursor.so.0 -> libxcb-cursor.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-cursor.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-cursor.pc diff --git a/repos/xorg/xcb-util-cursor/abuild b/repos/xorg/xcb-util-cursor/abuild deleted file mode 100644 index 575c93cd..00000000 --- a/repos/xorg/xcb-util-cursor/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-cursor -version=0.1.5 -release=1 -source="https://xorg.freedesktop.org/archive/individual/lib/xcb-util-cursor-$version.tar.xz" diff --git a/repos/xorg/xcb-util-cursor/depends b/repos/xorg/xcb-util-cursor/depends deleted file mode 100644 index 2aac50ca..00000000 --- a/repos/xorg/xcb-util-cursor/depends +++ /dev/null @@ -1,2 +0,0 @@ -xcb-util-image -xcb-util-renderutil diff --git a/repos/xorg/xcb-util-image/.checksum b/repos/xorg/xcb-util-image/.checksum deleted file mode 100644 index 741ce29b..00000000 --- a/repos/xorg/xcb-util-image/.checksum +++ /dev/null @@ -1 +0,0 @@ -c8a0652f7c215bd312d9f238aed2ba6a122f087b623dafbbac4456f5351df603 xcb-util-image-0.4.1.tar.xz diff --git a/repos/xorg/xcb-util-image/.files b/repos/xorg/xcb-util-image/.files deleted file mode 100644 index 9ca5ec70..00000000 --- a/repos/xorg/xcb-util-image/.files +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_bitops.h --rw-r--r-- root/root usr/include/xcb/xcb_image.h --rw-r--r-- root/root usr/include/xcb/xcb_pixel.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-image.so -> libxcb-image.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-image.so.0 -> libxcb-image.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-image.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-image.pc diff --git a/repos/xorg/xcb-util-image/abuild b/repos/xorg/xcb-util-image/abuild deleted file mode 100644 index de5c68f8..00000000 --- a/repos/xorg/xcb-util-image/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-image -version=0.4.1 -release=1 -source="https://xcb.freedesktop.org/dist/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util-image/depends b/repos/xorg/xcb-util-image/depends deleted file mode 100644 index 659491bd..00000000 --- a/repos/xorg/xcb-util-image/depends +++ /dev/null @@ -1 +0,0 @@ -xcb-util diff --git a/repos/xorg/xcb-util-keysyms/.checksum b/repos/xorg/xcb-util-keysyms/.checksum deleted file mode 100644 index a4ddda3a..00000000 --- a/repos/xorg/xcb-util-keysyms/.checksum +++ /dev/null @@ -1 +0,0 @@ -c599df56c79a9f9dcf12b083e343f321cad6af654b83e2976b5a26bc890b5774 xcb-util-keysyms-0.4.1.tar.xz diff --git a/repos/xorg/xcb-util-keysyms/.files b/repos/xorg/xcb-util-keysyms/.files deleted file mode 100644 index 2f89c036..00000000 --- a/repos/xorg/xcb-util-keysyms/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_keysyms.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-keysyms.so -> libxcb-keysyms.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-keysyms.so.1 -> libxcb-keysyms.so.1.0.0 --rwxr-xr-x root/root usr/lib/libxcb-keysyms.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-keysyms.pc diff --git a/repos/xorg/xcb-util-keysyms/abuild b/repos/xorg/xcb-util-keysyms/abuild deleted file mode 100644 index 82d41644..00000000 --- a/repos/xorg/xcb-util-keysyms/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-keysyms -version=0.4.1 -release=1 -source="https://xcb.freedesktop.org/dist/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util-keysyms/depends b/repos/xorg/xcb-util-keysyms/depends deleted file mode 100644 index 9694e3b3..00000000 --- a/repos/xorg/xcb-util-keysyms/depends +++ /dev/null @@ -1 +0,0 @@ -libxcb diff --git a/repos/xorg/xcb-util-renderutil/.checksum b/repos/xorg/xcb-util-renderutil/.checksum deleted file mode 100644 index 206fd79c..00000000 --- a/repos/xorg/xcb-util-renderutil/.checksum +++ /dev/null @@ -1 +0,0 @@ -085c94d08bd8181512d4ce93cf0e5bcd48cd8ed983bbb7a7bcb3a3c2312a08ea xcb-util-renderutil-0.3.10.tar.xz diff --git a/repos/xorg/xcb-util-renderutil/.files b/repos/xorg/xcb-util-renderutil/.files deleted file mode 100644 index 8f670f11..00000000 --- a/repos/xorg/xcb-util-renderutil/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_renderutil.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-render-util.so -> libxcb-render-util.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-render-util.so.0 -> libxcb-render-util.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-render-util.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-renderutil.pc diff --git a/repos/xorg/xcb-util-renderutil/abuild b/repos/xorg/xcb-util-renderutil/abuild deleted file mode 100644 index c2d22e09..00000000 --- a/repos/xorg/xcb-util-renderutil/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-renderutil -version=0.3.10 -release=1 -source="https://xcb.freedesktop.org/dist/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util-renderutil/depends b/repos/xorg/xcb-util-renderutil/depends deleted file mode 100644 index 9694e3b3..00000000 --- a/repos/xorg/xcb-util-renderutil/depends +++ /dev/null @@ -1 +0,0 @@ -libxcb diff --git a/repos/xorg/xcb-util-wm/.checksum b/repos/xorg/xcb-util-wm/.checksum deleted file mode 100644 index 081481f2..00000000 --- a/repos/xorg/xcb-util-wm/.checksum +++ /dev/null @@ -1 +0,0 @@ -4cf6b0e204e12eb6b824c939404fc5ad63d61cb94679e8adf5670207802bc738 xcb-util-wm-0.4.2.tar.xz diff --git a/repos/xorg/xcb-util-wm/.files b/repos/xorg/xcb-util-wm/.files deleted file mode 100644 index 55391b2e..00000000 --- a/repos/xorg/xcb-util-wm/.files +++ /dev/null @@ -1,15 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_ewmh.h --rw-r--r-- root/root usr/include/xcb/xcb_icccm.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-ewmh.so -> libxcb-ewmh.so.2.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-ewmh.so.2 -> libxcb-ewmh.so.2.0.0 --rwxr-xr-x root/root usr/lib/libxcb-ewmh.so.2.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-icccm.so -> libxcb-icccm.so.4.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-icccm.so.4 -> libxcb-icccm.so.4.0.0 --rwxr-xr-x root/root usr/lib/libxcb-icccm.so.4.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-ewmh.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-icccm.pc diff --git a/repos/xorg/xcb-util-wm/abuild b/repos/xorg/xcb-util-wm/abuild deleted file mode 100644 index 9364a346..00000000 --- a/repos/xorg/xcb-util-wm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-wm -version=0.4.2 -release=1 -source="https://xcb.freedesktop.org/dist/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util-wm/depends b/repos/xorg/xcb-util-wm/depends deleted file mode 100644 index 9694e3b3..00000000 --- a/repos/xorg/xcb-util-wm/depends +++ /dev/null @@ -1 +0,0 @@ -libxcb diff --git a/repos/xorg/xcb-util-xrm/.checksum b/repos/xorg/xcb-util-xrm/.checksum deleted file mode 100644 index 72c6095e..00000000 --- a/repos/xorg/xcb-util-xrm/.checksum +++ /dev/null @@ -1 +0,0 @@ -709efab573cd0ac0a942507e5678ad3a0b59d7d1f35bd1b16472450f81ce12bf xcb-util-xrm-1.3.tar.gz diff --git a/repos/xorg/xcb-util-xrm/.files b/repos/xorg/xcb-util-xrm/.files deleted file mode 100644 index a46d15c5..00000000 --- a/repos/xorg/xcb-util-xrm/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_xrm.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-xrm.so -> libxcb-xrm.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-xrm.so.0 -> libxcb-xrm.so.0.0.0 --rwxr-xr-x root/root usr/lib/libxcb-xrm.so.0.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-xrm.pc diff --git a/repos/xorg/xcb-util-xrm/abuild b/repos/xorg/xcb-util-xrm/abuild deleted file mode 100644 index 35681ac0..00000000 --- a/repos/xorg/xcb-util-xrm/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util-xrm -version=1.3 -release=1 -source="https://github.com/Airblader/${name}/releases/download/v${version}/${name}-${version}.tar.gz" diff --git a/repos/xorg/xcb-util-xrm/depends b/repos/xorg/xcb-util-xrm/depends deleted file mode 100644 index dac9d3c2..00000000 --- a/repos/xorg/xcb-util-xrm/depends +++ /dev/null @@ -1,2 +0,0 @@ -xcb-util -libx11 diff --git a/repos/xorg/xcb-util/.checksum b/repos/xorg/xcb-util/.checksum deleted file mode 100644 index e641529f..00000000 --- a/repos/xorg/xcb-util/.checksum +++ /dev/null @@ -1 +0,0 @@ -ebc940220db0ca39a690a47b565ce73ab536c1fbfdebf008fa0edf0ced862aca xcb-util-0.4.1.tar.xz diff --git a/repos/xorg/xcb-util/.files b/repos/xorg/xcb-util/.files deleted file mode 100644 index 1b1509ed..00000000 --- a/repos/xorg/xcb-util/.files +++ /dev/null @@ -1,16 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xcb/ --rw-r--r-- root/root usr/include/xcb/xcb_atom.h --rw-r--r-- root/root usr/include/xcb/xcb_aux.h --rw-r--r-- root/root usr/include/xcb/xcb_event.h --rw-r--r-- root/root usr/include/xcb/xcb_util.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libxcb-util.so -> libxcb-util.so.1.0.0 -lrwxrwxrwx root/root usr/lib/libxcb-util.so.1 -> libxcb-util.so.1.0.0 --rwxr-xr-x root/root usr/lib/libxcb-util.so.1.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xcb-atom.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-aux.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-event.pc --rw-r--r-- root/root usr/lib/pkgconfig/xcb-util.pc diff --git a/repos/xorg/xcb-util/abuild b/repos/xorg/xcb-util/abuild deleted file mode 100644 index 503ae292..00000000 --- a/repos/xorg/xcb-util/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xcb-util -version=0.4.1 -release=1 -source="https://xcb.freedesktop.org/dist/$name-$version.tar.xz" diff --git a/repos/xorg/xcb-util/depends b/repos/xorg/xcb-util/depends deleted file mode 100644 index 9694e3b3..00000000 --- a/repos/xorg/xcb-util/depends +++ /dev/null @@ -1 +0,0 @@ -libxcb diff --git a/repos/xorg/xclock/.checksum b/repos/xorg/xclock/.checksum deleted file mode 100644 index 8b8b8ae3..00000000 --- a/repos/xorg/xclock/.checksum +++ /dev/null @@ -1 +0,0 @@ -7c578cfe482a92bfe168da6a1d6c4b5612c2b2864730a42ecea2b843645f380d xclock-1.1.1.tar.xz diff --git a/repos/xorg/xclock/.files b/repos/xorg/xclock/.files deleted file mode 100644 index e06c8227..00000000 --- a/repos/xorg/xclock/.files +++ /dev/null @@ -1,11 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xclock -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/app-defaults/ --rw-r--r-- root/root usr/share/X11/app-defaults/XClock --rw-r--r-- root/root usr/share/X11/app-defaults/XClock-color -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xclock.1.gz diff --git a/repos/xorg/xclock/abuild b/repos/xorg/xclock/abuild deleted file mode 100644 index 39766280..00000000 --- a/repos/xorg/xclock/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xclock -version=1.1.1 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xclock/depends b/repos/xorg/xclock/depends deleted file mode 100644 index 4ed5168d..00000000 --- a/repos/xorg/xclock/depends +++ /dev/null @@ -1,3 +0,0 @@ -libxaw -libxft -libxkbfile diff --git a/repos/xorg/xf86-input-evdev/.checksum b/repos/xorg/xf86-input-evdev/.checksum deleted file mode 100644 index 043d6482..00000000 --- a/repos/xorg/xf86-input-evdev/.checksum +++ /dev/null @@ -1 +0,0 @@ -23d10aa0171ad83d95a45ddb1f6591679152b4ef579baef52aea90a4ee949ff5 xf86-input-evdev-2.10.6.tar.bz2 diff --git a/repos/xorg/xf86-input-evdev/.files b/repos/xorg/xf86-input-evdev/.files deleted file mode 100644 index f1264bf0..00000000 --- a/repos/xorg/xf86-input-evdev/.files +++ /dev/null @@ -1,18 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xorg/ --rw-r--r-- root/root usr/include/xorg/evdev-properties.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xorg-evdev.pc -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/input/ --rwxr-xr-x root/root usr/lib/xorg/modules/input/evdev_drv.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/xorg.conf.d/ --rw-r--r-- root/root usr/share/X11/xorg.conf.d/10-evdev.conf -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/evdev.4.gz diff --git a/repos/xorg/xf86-input-evdev/abuild b/repos/xorg/xf86-input-evdev/abuild deleted file mode 100644 index f36d0d9a..00000000 --- a/repos/xorg/xf86-input-evdev/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xf86-input-evdev -version=2.10.6 -release=1 -source="http://xorg.freedesktop.org/archive/individual/driver/$name-$version.tar.bz2" diff --git a/repos/xorg/xf86-input-evdev/depends b/repos/xorg/xf86-input-evdev/depends deleted file mode 100644 index 4fdaf5f7..00000000 --- a/repos/xorg/xf86-input-evdev/depends +++ /dev/null @@ -1,3 +0,0 @@ -libevdev -mtdev -xorg-server diff --git a/repos/xorg/xf86-input-libinput/.checksum b/repos/xorg/xf86-input-libinput/.checksum deleted file mode 100644 index 142475ef..00000000 --- a/repos/xorg/xf86-input-libinput/.checksum +++ /dev/null @@ -1 +0,0 @@ -797cbe5668dd8bf704d2271e77d8c0866e79106c37ba49f4ee62d0bea96f017e xf86-input-libinput-1.4.0.tar.xz diff --git a/repos/xorg/xf86-input-libinput/.files b/repos/xorg/xf86-input-libinput/.files deleted file mode 100644 index ec0c5cf9..00000000 --- a/repos/xorg/xf86-input-libinput/.files +++ /dev/null @@ -1,18 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xorg/ --rw-r--r-- root/root usr/include/xorg/libinput-properties.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xorg-libinput.pc -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/input/ --rwxr-xr-x root/root usr/lib/xorg/modules/input/libinput_drv.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/xorg.conf.d/ --rw-r--r-- root/root usr/share/X11/xorg.conf.d/40-libinput.conf -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/libinput.4.gz diff --git a/repos/xorg/xf86-input-libinput/abuild b/repos/xorg/xf86-input-libinput/abuild deleted file mode 100644 index 23f5e72b..00000000 --- a/repos/xorg/xf86-input-libinput/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xf86-input-libinput -version=1.4.0 -release=1 -source="https://www.x.org/pub/individual/driver/$name-$version.tar.xz" diff --git a/repos/xorg/xf86-input-libinput/depends b/repos/xorg/xf86-input-libinput/depends deleted file mode 100644 index f89a2267..00000000 --- a/repos/xorg/xf86-input-libinput/depends +++ /dev/null @@ -1,2 +0,0 @@ -libinput -xorg-server diff --git a/repos/xorg/xf86-input-synaptics/.checksum b/repos/xorg/xf86-input-synaptics/.checksum deleted file mode 100644 index 78009c06..00000000 --- a/repos/xorg/xf86-input-synaptics/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -c43604b0e546824c577294011b74f53b2c20dfa98a29680a7eef8a139b8bcdd5 50-synaptics.conf -519d5288b1b85386a7b28695c5afdff0e39ebe0499a8dded97b133756ce184aa xf86-input-synaptics-1.9.2.tar.xz diff --git a/repos/xorg/xf86-input-synaptics/.files b/repos/xorg/xf86-input-synaptics/.files deleted file mode 100644 index 11caf7fb..00000000 --- a/repos/xorg/xf86-input-synaptics/.files +++ /dev/null @@ -1,25 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/synclient --rwxr-xr-x root/root usr/bin/syndaemon -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xorg/ --rw-r--r-- root/root usr/include/xorg/synaptics-properties.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xorg-synaptics.pc -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/input/ --rwxr-xr-x root/root usr/lib/xorg/modules/input/synaptics_drv.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/xorg.conf.d/ --rw-r--r-- root/root usr/share/X11/xorg.conf.d/50-synaptics.conf --rw-r--r-- root/root usr/share/X11/xorg.conf.d/70-synaptics.conf -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/synclient.1.gz --rw-r--r-- root/root usr/share/man/man1/syndaemon.1.gz -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/synaptics.4.gz diff --git a/repos/xorg/xf86-input-synaptics/50-synaptics.conf b/repos/xorg/xf86-input-synaptics/50-synaptics.conf deleted file mode 100644 index 09c37642..00000000 --- a/repos/xorg/xf86-input-synaptics/50-synaptics.conf +++ /dev/null @@ -1,15 +0,0 @@ -# DO NOT EDIT THIS FILE - IT WILL BE OVERWRITTEN ON UPGRADES -# Copy this file to /etc/X11/xorg.conf.d/ and edit the copy -# -# Use "synclient -l" to see all available options -# Use "man synaptics" for details about what the options do -# -Section "InputClass" - Identifier "touchpad" - Driver "synaptics" - MatchDevicePath "/dev/input/event*" - MatchIsTouchpad "on" - Option "TapButton1" "1" - Option "TapButton2" "2" - Option "TapButton3" "3" -EndSection diff --git a/repos/xorg/xf86-input-synaptics/abuild b/repos/xorg/xf86-input-synaptics/abuild deleted file mode 100644 index 1791964f..00000000 --- a/repos/xorg/xf86-input-synaptics/abuild +++ /dev/null @@ -1,9 +0,0 @@ -name=xf86-input-synaptics -version=1.9.2 -release=1 -source="https://www.x.org/pub/individual/driver/$name-$version.tar.xz - 50-synaptics.conf" - -postbuild() { - install -m644 $SRC/50-synaptics.conf $PKG/usr/share/X11/xorg.conf.d/ -} diff --git a/repos/xorg/xf86-input-synaptics/depends b/repos/xorg/xf86-input-synaptics/depends deleted file mode 100644 index 2ad0503d..00000000 --- a/repos/xorg/xf86-input-synaptics/depends +++ /dev/null @@ -1,3 +0,0 @@ -xorg-server -libevdev -libxi diff --git a/repos/xorg/xf86-video-intel/.checksum b/repos/xorg/xf86-video-intel/.checksum deleted file mode 100644 index 11027970..00000000 --- a/repos/xorg/xf86-video-intel/.checksum +++ /dev/null @@ -1 +0,0 @@ -fc8fd9a6c5512981767cf654308e4fe45218db1f75013bb6b25d239d78a8ff59 xf86-video-intel-2.99.917-923.tar.xz diff --git a/repos/xorg/xf86-video-intel/.files b/repos/xorg/xf86-video-intel/.files deleted file mode 100644 index 666658b5..00000000 --- a/repos/xorg/xf86-video-intel/.files +++ /dev/null @@ -1,15 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/drivers/ --rwxr-xr-x root/root usr/lib/xorg/modules/drivers/intel_drv.so -drwxr-xr-x root/root usr/libexec/ --rwsr-xr-x root/root usr/libexec/xf86-video-intel-backlight-helper -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/intel.4.gz -drwxr-xr-x root/root usr/share/polkit-1/ -drwxr-xr-x root/root usr/share/polkit-1/actions/ --rw-r--r-- root/root usr/share/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy diff --git a/repos/xorg/xf86-video-intel/abuild b/repos/xorg/xf86-video-intel/abuild deleted file mode 100644 index 200fb645..00000000 --- a/repos/xorg/xf86-video-intel/abuild +++ /dev/null @@ -1,7 +0,0 @@ -name=xf86-video-intel -version=2.99.917_923 -v=$(echo $version | sed 's/_/-/') -release=1 -source="https://crux.nu/files/distfiles/xf86-video-intel-$v.tar.xz" -#source="http://xorg.freedesktop.org/archive/individual/driver/$name-$version.tar.bz2" -build_opt="--enable-kms-only --with-default-accel=sna --with-default-dri=3" diff --git a/repos/xorg/xf86-video-intel/depends b/repos/xorg/xf86-video-intel/depends deleted file mode 100644 index 1d3215c0..00000000 --- a/repos/xorg/xf86-video-intel/depends +++ /dev/null @@ -1,2 +0,0 @@ -xcb-util -xorg-server diff --git a/repos/xorg/xf86-video-vesa/.checksum b/repos/xorg/xf86-video-vesa/.checksum deleted file mode 100644 index a20d89a9..00000000 --- a/repos/xorg/xf86-video-vesa/.checksum +++ /dev/null @@ -1 +0,0 @@ -2c21e5c1fc4af36edab70f7406d705adddf7ff090960deb8b6e31e588ee7011c xf86-video-vesa-2.6.0.tar.xz diff --git a/repos/xorg/xf86-video-vesa/.files b/repos/xorg/xf86-video-vesa/.files deleted file mode 100644 index e1319436..00000000 --- a/repos/xorg/xf86-video-vesa/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/drivers/ --rwxr-xr-x root/root usr/lib/xorg/modules/drivers/vesa_drv.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/vesa.4.gz diff --git a/repos/xorg/xf86-video-vesa/abuild b/repos/xorg/xf86-video-vesa/abuild deleted file mode 100644 index 2bf19e7e..00000000 --- a/repos/xorg/xf86-video-vesa/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xf86-video-vesa -version=2.6.0 -release=1 -source="http://xorg.freedesktop.org/archive/individual/driver/$name-$version.tar.xz" diff --git a/repos/xorg/xf86-video-vesa/depends b/repos/xorg/xf86-video-vesa/depends deleted file mode 100644 index d6c13435..00000000 --- a/repos/xorg/xf86-video-vesa/depends +++ /dev/null @@ -1 +0,0 @@ -xorg-server diff --git a/repos/xorg/xinit/.checksum b/repos/xorg/xinit/.checksum deleted file mode 100644 index 9487e3c3..00000000 --- a/repos/xorg/xinit/.checksum +++ /dev/null @@ -1 +0,0 @@ -b0812aefd6ea23067d8284163aa650e4324d52782c2b2de75d2de3153913fe1b xinit-1.4.2.tar.xz diff --git a/repos/xorg/xinit/.files b/repos/xorg/xinit/.files deleted file mode 100644 index 9f78173b..00000000 --- a/repos/xorg/xinit/.files +++ /dev/null @@ -1,13 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/X11/ -drwxr-xr-x root/root etc/X11/xinit/ --rw-r--r-- root/root etc/X11/xinit/xinitrc.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/startx --rwxr-xr-x root/root usr/bin/xinit -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/startx.1.gz --rw-r--r-- root/root usr/share/man/man1/xinit.1.gz diff --git a/repos/xorg/xinit/abuild b/repos/xorg/xinit/abuild deleted file mode 100644 index 0acc4737..00000000 --- a/repos/xorg/xinit/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=xinit -version=1.4.2 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" -#build_opt=--with-xinitdir=/etc/X11/app-defaults diff --git a/repos/xorg/xinit/depends b/repos/xorg/xinit/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/xinit/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/xkbcomp/.checksum b/repos/xorg/xkbcomp/.checksum deleted file mode 100644 index f1312fa1..00000000 --- a/repos/xorg/xkbcomp/.checksum +++ /dev/null @@ -1 +0,0 @@ -e6420ef168976726f8aa8cb362bc70dfe2bd810f2b33e5f71547ec182ed301ea xkbcomp-1.4.7.tar.xz diff --git a/repos/xorg/xkbcomp/.files b/repos/xorg/xkbcomp/.files deleted file mode 100644 index 6cc99640..00000000 --- a/repos/xorg/xkbcomp/.files +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xkbcomp -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xkbcomp.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xkbcomp.1.gz diff --git a/repos/xorg/xkbcomp/abuild b/repos/xorg/xkbcomp/abuild deleted file mode 100644 index 1a23edc8..00000000 --- a/repos/xorg/xkbcomp/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xkbcomp -version=1.4.7 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xkbcomp/depends b/repos/xorg/xkbcomp/depends deleted file mode 100644 index a1167a95..00000000 --- a/repos/xorg/xkbcomp/depends +++ /dev/null @@ -1 +0,0 @@ -libxkbfile diff --git a/repos/xorg/xlsfonts/.checksum b/repos/xorg/xlsfonts/.checksum deleted file mode 100644 index ee68eff9..00000000 --- a/repos/xorg/xlsfonts/.checksum +++ /dev/null @@ -1 +0,0 @@ -e4f332fd9ffd8c39c6a87d90796f3f66d1fb5c840c541f66a120adaca2083571 xlsfonts-1.0.8.tar.xz diff --git a/repos/xorg/xlsfonts/.files b/repos/xorg/xlsfonts/.files deleted file mode 100644 index bfda1437..00000000 --- a/repos/xorg/xlsfonts/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xlsfonts -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xlsfonts.1.gz diff --git a/repos/xorg/xlsfonts/abuild b/repos/xorg/xlsfonts/abuild deleted file mode 100644 index eda109f6..00000000 --- a/repos/xorg/xlsfonts/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xlsfonts -version=1.0.8 -release=1 -source="https://xorg.freedesktop.org/archive/individual/app/${name}-${version}.tar.xz" diff --git a/repos/xorg/xlsfonts/depends b/repos/xorg/xlsfonts/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/xlsfonts/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/xorg-server/.checksum b/repos/xorg/xorg-server/.checksum deleted file mode 100644 index 08de5314..00000000 --- a/repos/xorg/xorg-server/.checksum +++ /dev/null @@ -1 +0,0 @@ -c434df09d071cc76bab517d1f9bf1cf8a51f3ca4ccfe403e59ec7e26f5ec5ca5 xorg-server-21.1.15.tar.xz diff --git a/repos/xorg/xorg-server/.files b/repos/xorg/xorg-server/.files deleted file mode 100644 index 844ecd8a..00000000 --- a/repos/xorg/xorg-server/.files +++ /dev/null @@ -1,216 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/X11/ --rw-r--r-- root/root etc/X11/Xwrapper.config.new -drwxr-xr-x root/root etc/X11/xorg.conf.d/ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/X -> Xorg --rwxr-xr-x root/root usr/bin/Xnest --rwxr-xr-x root/root usr/bin/Xorg --rwxr-xr-x root/root usr/bin/Xvfb --rwxr-xr-x root/root usr/bin/gtf -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/xorg/ --rw-r--r-- root/root usr/include/xorg/XIstubs.h --rw-r--r-- root/root usr/include/xorg/Xprintf.h --rw-r--r-- root/root usr/include/xorg/callback.h --rw-r--r-- root/root usr/include/xorg/client.h --rw-r--r-- root/root usr/include/xorg/closestr.h --rw-r--r-- root/root usr/include/xorg/closure.h --rw-r--r-- root/root usr/include/xorg/colormap.h --rw-r--r-- root/root usr/include/xorg/colormapst.h --rw-r--r-- root/root usr/include/xorg/compiler.h --rw-r--r-- root/root usr/include/xorg/compositeext.h --rw-r--r-- root/root usr/include/xorg/cursor.h --rw-r--r-- root/root usr/include/xorg/cursorstr.h --rw-r--r-- root/root usr/include/xorg/damage.h --rw-r--r-- root/root usr/include/xorg/damagestr.h --rw-r--r-- root/root usr/include/xorg/dbestruct.h --rw-r--r-- root/root usr/include/xorg/dgaproc.h --rw-r--r-- root/root usr/include/xorg/displaymode.h --rw-r--r-- root/root usr/include/xorg/dix.h --rw-r--r-- root/root usr/include/xorg/dixaccess.h --rw-r--r-- root/root usr/include/xorg/dixevents.h --rw-r--r-- root/root usr/include/xorg/dixfont.h --rw-r--r-- root/root usr/include/xorg/dixfontstr.h --rw-r--r-- root/root usr/include/xorg/dixgrabs.h --rw-r--r-- root/root usr/include/xorg/dixstruct.h --rw-r--r-- root/root usr/include/xorg/dri.h --rw-r--r-- root/root usr/include/xorg/dri2.h --rw-r--r-- root/root usr/include/xorg/dri3.h --rw-r--r-- root/root usr/include/xorg/dristruct.h --rw-r--r-- root/root usr/include/xorg/edid.h --rw-r--r-- root/root usr/include/xorg/events.h --rw-r--r-- root/root usr/include/xorg/exa.h --rw-r--r-- root/root usr/include/xorg/exevents.h --rw-r--r-- root/root usr/include/xorg/extension.h --rw-r--r-- root/root usr/include/xorg/extinit.h --rw-r--r-- root/root usr/include/xorg/extnsionst.h --rw-r--r-- root/root usr/include/xorg/fb.h --rw-r--r-- root/root usr/include/xorg/fbdevhw.h --rw-r--r-- root/root usr/include/xorg/fboverlay.h --rw-r--r-- root/root usr/include/xorg/fbpict.h --rw-r--r-- root/root usr/include/xorg/fbrop.h --rw-r--r-- root/root usr/include/xorg/fourcc.h --rw-r--r-- root/root usr/include/xorg/gc.h --rw-r--r-- root/root usr/include/xorg/gcstruct.h --rw-r--r-- root/root usr/include/xorg/geext.h --rw-r--r-- root/root usr/include/xorg/geint.h --rw-r--r-- root/root usr/include/xorg/glamor.h --rw-r--r-- root/root usr/include/xorg/globals.h --rw-r--r-- root/root usr/include/xorg/glx_extinit.h --rw-r--r-- root/root usr/include/xorg/glxvndabi.h --rw-r--r-- root/root usr/include/xorg/glyphstr.h --rw-r--r-- root/root usr/include/xorg/hotplug.h --rw-r--r-- root/root usr/include/xorg/i2c_def.h --rw-r--r-- root/root usr/include/xorg/input.h --rw-r--r-- root/root usr/include/xorg/inputstr.h --rw-r--r-- root/root usr/include/xorg/list.h --rw-r--r-- root/root usr/include/xorg/mi.h --rw-r--r-- root/root usr/include/xorg/micmap.h --rw-r--r-- root/root usr/include/xorg/micoord.h --rw-r--r-- root/root usr/include/xorg/migc.h --rw-r--r-- root/root usr/include/xorg/miline.h --rw-r--r-- root/root usr/include/xorg/mioverlay.h --rw-r--r-- root/root usr/include/xorg/mipict.h --rw-r--r-- root/root usr/include/xorg/mipointer.h --rw-r--r-- root/root usr/include/xorg/mipointrst.h --rw-r--r-- root/root usr/include/xorg/misc.h --rw-r--r-- root/root usr/include/xorg/miscstruct.h --rw-r--r-- root/root usr/include/xorg/mistruct.h --rw-r--r-- root/root usr/include/xorg/misync.h --rw-r--r-- root/root usr/include/xorg/misyncfd.h --rw-r--r-- root/root usr/include/xorg/misyncshm.h --rw-r--r-- root/root usr/include/xorg/misyncstr.h --rw-r--r-- root/root usr/include/xorg/mizerarc.h --rw-r--r-- root/root usr/include/xorg/nonsdk_extinit.h --rw-r--r-- root/root usr/include/xorg/opaque.h --rw-r--r-- root/root usr/include/xorg/optionstr.h --rw-r--r-- root/root usr/include/xorg/os.h --rw-r--r-- root/root usr/include/xorg/panoramiX.h --rw-r--r-- root/root usr/include/xorg/panoramiXsrv.h --rw-r--r-- root/root usr/include/xorg/picture.h --rw-r--r-- root/root usr/include/xorg/picturestr.h --rw-r--r-- root/root usr/include/xorg/pixmap.h --rw-r--r-- root/root usr/include/xorg/pixmapstr.h --rw-r--r-- root/root usr/include/xorg/present.h --rw-r--r-- root/root usr/include/xorg/presentext.h --rw-r--r-- root/root usr/include/xorg/privates.h --rw-r--r-- root/root usr/include/xorg/property.h --rw-r--r-- root/root usr/include/xorg/propertyst.h --rw-r--r-- root/root usr/include/xorg/ptrveloc.h --rw-r--r-- root/root usr/include/xorg/randrstr.h --rw-r--r-- root/root usr/include/xorg/region.h --rw-r--r-- root/root usr/include/xorg/regionstr.h --rw-r--r-- root/root usr/include/xorg/registry.h --rw-r--r-- root/root usr/include/xorg/resource.h --rw-r--r-- root/root usr/include/xorg/rgb.h --rw-r--r-- root/root usr/include/xorg/rrtransform.h --rw-r--r-- root/root usr/include/xorg/sarea.h --rw-r--r-- root/root usr/include/xorg/screenint.h --rw-r--r-- root/root usr/include/xorg/scrnintstr.h --rw-r--r-- root/root usr/include/xorg/selection.h --rw-r--r-- root/root usr/include/xorg/servermd.h --rw-r--r-- root/root usr/include/xorg/shadow.h --rw-r--r-- root/root usr/include/xorg/shadowfb.h --rw-r--r-- root/root usr/include/xorg/shmint.h --rw-r--r-- root/root usr/include/xorg/syncsdk.h --rw-r--r-- root/root usr/include/xorg/validate.h --rw-r--r-- root/root usr/include/xorg/vbe.h --rw-r--r-- root/root usr/include/xorg/vbeModes.h --rw-r--r-- root/root usr/include/xorg/vgaHW.h --rw-r--r-- root/root usr/include/xorg/vndserver.h --rw-r--r-- root/root usr/include/xorg/wfbrename.h --rw-r--r-- root/root usr/include/xorg/window.h --rw-r--r-- root/root usr/include/xorg/windowstr.h --rw-r--r-- root/root usr/include/xorg/xaarop.h --rw-r--r-- root/root usr/include/xorg/xace.h --rw-r--r-- root/root usr/include/xorg/xacestr.h --rw-r--r-- root/root usr/include/xorg/xf86-input-inputtest-protocol.h --rw-r--r-- root/root usr/include/xorg/xf86.h --rw-r--r-- root/root usr/include/xorg/xf86Crtc.h --rw-r--r-- root/root usr/include/xorg/xf86Cursor.h --rw-r--r-- root/root usr/include/xorg/xf86DDC.h --rw-r--r-- root/root usr/include/xorg/xf86MatchDrivers.h --rw-r--r-- root/root usr/include/xorg/xf86Modes.h --rw-r--r-- root/root usr/include/xorg/xf86Module.h --rw-r--r-- root/root usr/include/xorg/xf86Opt.h --rw-r--r-- root/root usr/include/xorg/xf86Optionstr.h --rw-r--r-- root/root usr/include/xorg/xf86Optrec.h --rw-r--r-- root/root usr/include/xorg/xf86Parser.h --rw-r--r-- root/root usr/include/xorg/xf86Pci.h --rw-r--r-- root/root usr/include/xorg/xf86PciInfo.h --rw-r--r-- root/root usr/include/xorg/xf86Priv.h --rw-r--r-- root/root usr/include/xorg/xf86Privstr.h --rw-r--r-- root/root usr/include/xorg/xf86RandR12.h --rw-r--r-- root/root usr/include/xorg/xf86VGAarbiter.h --rw-r--r-- root/root usr/include/xorg/xf86Xinput.h --rw-r--r-- root/root usr/include/xorg/xf86_OSlib.h --rw-r--r-- root/root usr/include/xorg/xf86_OSproc.h --rw-r--r-- root/root usr/include/xorg/xf86cmap.h --rw-r--r-- root/root usr/include/xorg/xf86fbman.h --rw-r--r-- root/root usr/include/xorg/xf86i2c.h --rw-r--r-- root/root usr/include/xorg/xf86int10.h --rw-r--r-- root/root usr/include/xorg/xf86platformBus.h --rw-r--r-- root/root usr/include/xorg/xf86sbusBus.h --rw-r--r-- root/root usr/include/xorg/xf86str.h --rw-r--r-- root/root usr/include/xorg/xf86xv.h --rw-r--r-- root/root usr/include/xorg/xf86xvmc.h --rw-r--r-- root/root usr/include/xorg/xf86xvpriv.h --rw-r--r-- root/root usr/include/xorg/xisb.h --rw-r--r-- root/root usr/include/xorg/xkbfile.h --rw-r--r-- root/root usr/include/xorg/xkbrules.h --rw-r--r-- root/root usr/include/xorg/xkbsrv.h --rw-r--r-- root/root usr/include/xorg/xkbstr.h --rw-r--r-- root/root usr/include/xorg/xorg-server.h --rw-r--r-- root/root usr/include/xorg/xorgVersion.h --rw-r--r-- root/root usr/include/xorg/xserver-properties.h --rw-r--r-- root/root usr/include/xorg/xserver_poll.h --rw-r--r-- root/root usr/include/xorg/xvdix.h --rw-r--r-- root/root usr/include/xorg/xvmcext.h -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/xorg-server.pc -drwxr-xr-x root/root usr/lib/xorg/ -drwxr-xr-x root/root usr/lib/xorg/modules/ -drwxr-xr-x root/root usr/lib/xorg/modules/drivers/ --rwxr-xr-x root/root usr/lib/xorg/modules/drivers/modesetting_drv.so -drwxr-xr-x root/root usr/lib/xorg/modules/extensions/ --rwxr-xr-x root/root usr/lib/xorg/modules/extensions/libglx.so -drwxr-xr-x root/root usr/lib/xorg/modules/input/ --rwxr-xr-x root/root usr/lib/xorg/modules/input/inputtest_drv.so --rwxr-xr-x root/root usr/lib/xorg/modules/libexa.so --rwxr-xr-x root/root usr/lib/xorg/modules/libfbdevhw.so --rwxr-xr-x root/root usr/lib/xorg/modules/libglamoregl.so --rwxr-xr-x root/root usr/lib/xorg/modules/libint10.so --rwxr-xr-x root/root usr/lib/xorg/modules/libshadow.so --rwxr-xr-x root/root usr/lib/xorg/modules/libshadowfb.so --rwxr-xr-x root/root usr/lib/xorg/modules/libvgahw.so --rwxr-xr-x root/root usr/lib/xorg/modules/libwfb.so --rw-r--r-- root/root usr/lib/xorg/protocol.txt -drwxr-xr-x root/root usr/libexec/ --rwxr-xr-x root/root usr/libexec/Xorg --r-sr-xr-x root/root usr/libexec/Xorg.wrap -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/xorg.conf.d/ --rw-r--r-- root/root usr/share/X11/xorg.conf.d/10-quirks.conf -drwxr-xr-x root/root usr/share/aclocal/ --rw-r--r-- root/root usr/share/aclocal/xorg-server.m4 -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/Xnest.1.gz --rw-r--r-- root/root usr/share/man/man1/Xorg.1.gz --rw-r--r-- root/root usr/share/man/man1/Xorg.wrap.1.gz --rw-r--r-- root/root usr/share/man/man1/Xserver.1.gz --rw-r--r-- root/root usr/share/man/man1/Xvfb.1.gz --rw-r--r-- root/root usr/share/man/man1/gtf.1.gz -drwxr-xr-x root/root usr/share/man/man4/ --rw-r--r-- root/root usr/share/man/man4/exa.4.gz --rw-r--r-- root/root usr/share/man/man4/fbdevhw.4.gz --rw-r--r-- root/root usr/share/man/man4/inputtestdrv.4.gz --rw-r--r-- root/root usr/share/man/man4/modesetting.4.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/Xwrapper.config.5.gz --rw-r--r-- root/root usr/share/man/man5/xorg.conf.5.gz --rw-r--r-- root/root usr/share/man/man5/xorg.conf.d.5.gz diff --git a/repos/xorg/xorg-server/abuild b/repos/xorg/xorg-server/abuild deleted file mode 100644 index 1cf13b5c..00000000 --- a/repos/xorg/xorg-server/abuild +++ /dev/null @@ -1,16 +0,0 @@ -name=xorg-server -version=21.1.15 -release=1 -source="https://www.x.org/pub/individual/xserver/$name-$version.tar.xz" -build_opt=" - -Dsuid_wrapper=true \ - -Dxkb_output_dir=/var/lib/xkb \ - -Dxkb_dir=/usr/share/X11/xkb \ - -Dxorg=true - -Dglamor=true -" - -postbuild() { - install -m 755 -d $PKG/etc/X11/xorg.conf.d - echo "needs_root_rights = yes" >> $PKG/etc/X11/Xwrapper.config -} diff --git a/repos/xorg/xorg-server/depends b/repos/xorg/xorg-server/depends deleted file mode 100644 index 8fce20e1..00000000 --- a/repos/xorg/xorg-server/depends +++ /dev/null @@ -1,10 +0,0 @@ -libxcvt -libtirpc -pixman -font-util -xkeyboard-config -libepoxy -libxkbfile -libxfont2 -libxdmcp -libudev-zero diff --git a/repos/xorg/xorg/.checksum b/repos/xorg/xorg/.checksum deleted file mode 100644 index e69de29b..00000000 --- a/repos/xorg/xorg/.checksum +++ /dev/null diff --git a/repos/xorg/xorg/.files b/repos/xorg/xorg/.files deleted file mode 100644 index 9c11ccc8..00000000 --- a/repos/xorg/xorg/.files +++ /dev/null @@ -1 +0,0 @@ -drwxr-xr-x root/root usr/ diff --git a/repos/xorg/xorg/abuild b/repos/xorg/xorg/abuild deleted file mode 100644 index 5b6df2ef..00000000 --- a/repos/xorg/xorg/abuild +++ /dev/null @@ -1,3 +0,0 @@ -name=xorg -version=7.7 -release=1 diff --git a/repos/xorg/xorg/depends b/repos/xorg/xorg/depends deleted file mode 100644 index 553b3572..00000000 --- a/repos/xorg/xorg/depends +++ /dev/null @@ -1,15 +0,0 @@ -xf86-input-libinput -xf86-video-vesa -xinit -xauth -xkbcomp -xterm -twm -xclock -font-adobe-utopia-type1 -font-alias -font-bh-ttf -font-bh-type1 -font-ibm-type1 -font-misc-ethiopic -font-xfree86-type1 diff --git a/repos/xorg/xorgproto/.checksum b/repos/xorg/xorgproto/.checksum deleted file mode 100644 index b46b31d5..00000000 --- a/repos/xorg/xorgproto/.checksum +++ /dev/null @@ -1 +0,0 @@ -fad667bb04e16dca5e816969f2641bb075929cd73564114cc1aabd87d1975dd3 xorgproto-2024.1.tar.xz diff --git a/repos/xorg/xorgproto/.files b/repos/xorg/xorgproto/.files deleted file mode 100644 index 5eba5c76..00000000 --- a/repos/xorg/xorgproto/.files +++ /dev/null @@ -1,168 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/GL/ --rw-r--r-- root/root usr/include/GL/glxint.h --rw-r--r-- root/root usr/include/GL/glxmd.h --rw-r--r-- root/root usr/include/GL/glxproto.h --rw-r--r-- root/root usr/include/GL/glxtokens.h -drwxr-xr-x root/root usr/include/GL/internal/ --rw-r--r-- root/root usr/include/GL/internal/glcore.h -drwxr-xr-x root/root usr/include/X11/ --rw-r--r-- root/root usr/include/X11/DECkeysym.h --rw-r--r-- root/root usr/include/X11/HPkeysym.h --rw-r--r-- root/root usr/include/X11/Sunkeysym.h --rw-r--r-- root/root usr/include/X11/X.h --rw-r--r-- root/root usr/include/X11/XF86keysym.h --rw-r--r-- root/root usr/include/X11/XWDFile.h --rw-r--r-- root/root usr/include/X11/Xalloca.h --rw-r--r-- root/root usr/include/X11/Xarch.h --rw-r--r-- root/root usr/include/X11/Xatom.h --rw-r--r-- root/root usr/include/X11/Xdefs.h --rw-r--r-- root/root usr/include/X11/Xfuncproto.h --rw-r--r-- root/root usr/include/X11/Xfuncs.h --rw-r--r-- root/root usr/include/X11/Xmd.h --rw-r--r-- root/root usr/include/X11/Xos.h --rw-r--r-- root/root usr/include/X11/Xos_r.h --rw-r--r-- root/root usr/include/X11/Xosdefs.h --rw-r--r-- root/root usr/include/X11/Xpoll.h --rw-r--r-- root/root usr/include/X11/Xproto.h --rw-r--r-- root/root usr/include/X11/Xprotostr.h --rw-r--r-- root/root usr/include/X11/Xthreads.h --rw-r--r-- root/root usr/include/X11/Xw32defs.h --rw-r--r-- root/root usr/include/X11/Xwindows.h --rw-r--r-- root/root usr/include/X11/Xwinsock.h --rw-r--r-- root/root usr/include/X11/ap_keysym.h -drwxr-xr-x root/root usr/include/X11/dri/ --rw-r--r-- root/root usr/include/X11/dri/xf86dri.h --rw-r--r-- root/root usr/include/X11/dri/xf86driproto.h --rw-r--r-- root/root usr/include/X11/dri/xf86dristr.h -drwxr-xr-x root/root usr/include/X11/extensions/ --rw-r--r-- root/root usr/include/X11/extensions/EVI.h --rw-r--r-- root/root usr/include/X11/extensions/EVIproto.h --rw-r--r-- root/root usr/include/X11/extensions/XI.h --rw-r--r-- root/root usr/include/X11/extensions/XI2.h --rw-r--r-- root/root usr/include/X11/extensions/XI2proto.h --rw-r--r-- root/root usr/include/X11/extensions/XIproto.h --rw-r--r-- root/root usr/include/X11/extensions/XKB.h --rw-r--r-- root/root usr/include/X11/extensions/XKBproto.h --rw-r--r-- root/root usr/include/X11/extensions/XKBsrv.h --rw-r--r-- root/root usr/include/X11/extensions/XKBstr.h --rw-r--r-- root/root usr/include/X11/extensions/XResproto.h --rw-r--r-- root/root usr/include/X11/extensions/Xv.h --rw-r--r-- root/root usr/include/X11/extensions/XvMC.h --rw-r--r-- root/root usr/include/X11/extensions/XvMCproto.h --rw-r--r-- root/root usr/include/X11/extensions/Xvproto.h --rw-r--r-- root/root usr/include/X11/extensions/ag.h --rw-r--r-- root/root usr/include/X11/extensions/agproto.h --rw-r--r-- root/root usr/include/X11/extensions/applewmconst.h --rw-r--r-- root/root usr/include/X11/extensions/applewmproto.h --rw-r--r-- root/root usr/include/X11/extensions/bigreqsproto.h --rw-r--r-- root/root usr/include/X11/extensions/bigreqstr.h --rw-r--r-- root/root usr/include/X11/extensions/composite.h --rw-r--r-- root/root usr/include/X11/extensions/compositeproto.h --rw-r--r-- root/root usr/include/X11/extensions/cup.h --rw-r--r-- root/root usr/include/X11/extensions/cupproto.h --rw-r--r-- root/root usr/include/X11/extensions/damageproto.h --rw-r--r-- root/root usr/include/X11/extensions/damagewire.h --rw-r--r-- root/root usr/include/X11/extensions/dbe.h --rw-r--r-- root/root usr/include/X11/extensions/dbeproto.h --rw-r--r-- root/root usr/include/X11/extensions/dmx.h --rw-r--r-- root/root usr/include/X11/extensions/dmxproto.h --rw-r--r-- root/root usr/include/X11/extensions/dpmsconst.h --rw-r--r-- root/root usr/include/X11/extensions/dpmsproto.h --rw-r--r-- root/root usr/include/X11/extensions/dri2proto.h --rw-r--r-- root/root usr/include/X11/extensions/dri2tokens.h --rw-r--r-- root/root usr/include/X11/extensions/dri3proto.h --rw-r--r-- root/root usr/include/X11/extensions/ge.h --rw-r--r-- root/root usr/include/X11/extensions/geproto.h --rw-r--r-- root/root usr/include/X11/extensions/lbx.h --rw-r--r-- root/root usr/include/X11/extensions/lbxproto.h --rw-r--r-- root/root usr/include/X11/extensions/mitmiscconst.h --rw-r--r-- root/root usr/include/X11/extensions/mitmiscproto.h --rw-r--r-- root/root usr/include/X11/extensions/multibufconst.h --rw-r--r-- root/root usr/include/X11/extensions/multibufproto.h --rw-r--r-- root/root usr/include/X11/extensions/panoramiXproto.h --rw-r--r-- root/root usr/include/X11/extensions/presentproto.h --rw-r--r-- root/root usr/include/X11/extensions/presenttokens.h --rw-r--r-- root/root usr/include/X11/extensions/randr.h --rw-r--r-- root/root usr/include/X11/extensions/randrproto.h --rw-r--r-- root/root usr/include/X11/extensions/recordconst.h --rw-r--r-- root/root usr/include/X11/extensions/recordproto.h --rw-r--r-- root/root usr/include/X11/extensions/recordstr.h --rw-r--r-- root/root usr/include/X11/extensions/render.h --rw-r--r-- root/root usr/include/X11/extensions/renderproto.h --rw-r--r-- root/root usr/include/X11/extensions/saver.h --rw-r--r-- root/root usr/include/X11/extensions/saverproto.h --rw-r--r-- root/root usr/include/X11/extensions/secur.h --rw-r--r-- root/root usr/include/X11/extensions/securproto.h --rw-r--r-- root/root usr/include/X11/extensions/shapeconst.h --rw-r--r-- root/root usr/include/X11/extensions/shapeproto.h --rw-r--r-- root/root usr/include/X11/extensions/shapestr.h --rw-r--r-- root/root usr/include/X11/extensions/shm.h --rw-r--r-- root/root usr/include/X11/extensions/shmproto.h --rw-r--r-- root/root usr/include/X11/extensions/shmstr.h --rw-r--r-- root/root usr/include/X11/extensions/syncconst.h --rw-r--r-- root/root usr/include/X11/extensions/syncproto.h --rw-r--r-- root/root usr/include/X11/extensions/syncstr.h --rw-r--r-- root/root usr/include/X11/extensions/xcmiscproto.h --rw-r--r-- root/root usr/include/X11/extensions/xcmiscstr.h --rw-r--r-- root/root usr/include/X11/extensions/xf86bigfont.h --rw-r--r-- root/root usr/include/X11/extensions/xf86bigfproto.h --rw-r--r-- root/root usr/include/X11/extensions/xf86bigfstr.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dga.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dga1const.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dga1proto.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dga1str.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dgaconst.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dgaproto.h --rw-r--r-- root/root usr/include/X11/extensions/xf86dgastr.h --rw-r--r-- root/root usr/include/X11/extensions/xf86vm.h --rw-r--r-- root/root usr/include/X11/extensions/xf86vmproto.h --rw-r--r-- root/root usr/include/X11/extensions/xf86vmstr.h --rw-r--r-- root/root usr/include/X11/extensions/xfixesproto.h --rw-r--r-- root/root usr/include/X11/extensions/xfixeswire.h --rw-r--r-- root/root usr/include/X11/extensions/xtestconst.h --rw-r--r-- root/root usr/include/X11/extensions/xtestext1const.h --rw-r--r-- root/root usr/include/X11/extensions/xtestext1proto.h --rw-r--r-- root/root usr/include/X11/extensions/xtestproto.h --rw-r--r-- root/root usr/include/X11/extensions/xwaylandproto.h -drwxr-xr-x root/root usr/include/X11/fonts/ --rw-r--r-- root/root usr/include/X11/fonts/FS.h --rw-r--r-- root/root usr/include/X11/fonts/FSproto.h --rw-r--r-- root/root usr/include/X11/fonts/font.h --rw-r--r-- root/root usr/include/X11/fonts/fontproto.h --rw-r--r-- root/root usr/include/X11/fonts/fontstruct.h --rw-r--r-- root/root usr/include/X11/fonts/fsmasks.h --rw-r--r-- root/root usr/include/X11/keysym.h --rw-r--r-- root/root usr/include/X11/keysymdef.h -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/applewmproto.pc --rw-r--r-- root/root usr/share/pkgconfig/bigreqsproto.pc --rw-r--r-- root/root usr/share/pkgconfig/compositeproto.pc --rw-r--r-- root/root usr/share/pkgconfig/damageproto.pc --rw-r--r-- root/root usr/share/pkgconfig/dmxproto.pc --rw-r--r-- root/root usr/share/pkgconfig/dpmsproto.pc --rw-r--r-- root/root usr/share/pkgconfig/dri2proto.pc --rw-r--r-- root/root usr/share/pkgconfig/dri3proto.pc --rw-r--r-- root/root usr/share/pkgconfig/fixesproto.pc --rw-r--r-- root/root usr/share/pkgconfig/fontsproto.pc --rw-r--r-- root/root usr/share/pkgconfig/glproto.pc --rw-r--r-- root/root usr/share/pkgconfig/inputproto.pc --rw-r--r-- root/root usr/share/pkgconfig/kbproto.pc --rw-r--r-- root/root usr/share/pkgconfig/presentproto.pc --rw-r--r-- root/root usr/share/pkgconfig/randrproto.pc --rw-r--r-- root/root usr/share/pkgconfig/recordproto.pc --rw-r--r-- root/root usr/share/pkgconfig/renderproto.pc --rw-r--r-- root/root usr/share/pkgconfig/resourceproto.pc --rw-r--r-- root/root usr/share/pkgconfig/scrnsaverproto.pc --rw-r--r-- root/root usr/share/pkgconfig/videoproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xcmiscproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xextproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xf86bigfontproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xf86dgaproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xf86driproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xf86vidmodeproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xineramaproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xproto.pc --rw-r--r-- root/root usr/share/pkgconfig/xwaylandproto.pc diff --git a/repos/xorg/xorgproto/abuild b/repos/xorg/xorgproto/abuild deleted file mode 100644 index 5401f50a..00000000 --- a/repos/xorg/xorgproto/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xorgproto -version=2024.1 -release=1 -source="https://xorg.freedesktop.org/archive/individual/proto/$name-$version.tar.xz" diff --git a/repos/xorg/xprop/.checksum b/repos/xorg/xprop/.checksum deleted file mode 100644 index 5c998639..00000000 --- a/repos/xorg/xprop/.checksum +++ /dev/null @@ -1 +0,0 @@ -2fdeec862616d7bcd00f3ab3db40244e2a58d5816a78211f0cc467b174a77191 xprop-1.2.8.tar.xz diff --git a/repos/xorg/xprop/.files b/repos/xorg/xprop/.files deleted file mode 100644 index d5b4a312..00000000 --- a/repos/xorg/xprop/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xprop -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xprop.1.gz diff --git a/repos/xorg/xprop/abuild b/repos/xorg/xprop/abuild deleted file mode 100644 index 85a3d9d0..00000000 --- a/repos/xorg/xprop/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xprop -version=1.2.8 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xprop/depends b/repos/xorg/xprop/depends deleted file mode 100644 index ffb6e81d..00000000 --- a/repos/xorg/xprop/depends +++ /dev/null @@ -1 +0,0 @@ -libx11 diff --git a/repos/xorg/xrandr/.checksum b/repos/xorg/xrandr/.checksum deleted file mode 100644 index 6e844330..00000000 --- a/repos/xorg/xrandr/.checksum +++ /dev/null @@ -1 +0,0 @@ -24652e4d0bac62fab83f7f5192cf9c1241e0bf224191f86ae04e3014803f610b xrandr-1.5.3.tar.xz diff --git a/repos/xorg/xrandr/.files b/repos/xorg/xrandr/.files deleted file mode 100644 index d3d3da1d..00000000 --- a/repos/xorg/xrandr/.files +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xkeystone --rwxr-xr-x root/root usr/bin/xrandr -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xrandr.1.gz diff --git a/repos/xorg/xrandr/abuild b/repos/xorg/xrandr/abuild deleted file mode 100644 index 43389cbb..00000000 --- a/repos/xorg/xrandr/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xrandr -version=1.5.3 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xrandr/depends b/repos/xorg/xrandr/depends deleted file mode 100644 index 0fd335d9..00000000 --- a/repos/xorg/xrandr/depends +++ /dev/null @@ -1 +0,0 @@ -libxrandr diff --git a/repos/xorg/xrdb/.checksum b/repos/xorg/xrdb/.checksum deleted file mode 100644 index dee41017..00000000 --- a/repos/xorg/xrdb/.checksum +++ /dev/null @@ -1 +0,0 @@ -b1be1bdd57d6323d69b129a8421cf92faac198446343a697ac8f1ba7d0f210ca xrdb-1.2.2.tar.xz diff --git a/repos/xorg/xrdb/.files b/repos/xorg/xrdb/.files deleted file mode 100644 index c31270da..00000000 --- a/repos/xorg/xrdb/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xrdb -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xrdb.1.gz diff --git a/repos/xorg/xrdb/abuild b/repos/xorg/xrdb/abuild deleted file mode 100644 index 3b15905c..00000000 --- a/repos/xorg/xrdb/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xrdb -version=1.2.2 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xrdb/depends b/repos/xorg/xrdb/depends deleted file mode 100644 index 2a5330a8..00000000 --- a/repos/xorg/xrdb/depends +++ /dev/null @@ -1 +0,0 @@ -libxmu diff --git a/repos/xorg/xsetroot/.checksum b/repos/xorg/xsetroot/.checksum deleted file mode 100644 index c1a6f745..00000000 --- a/repos/xorg/xsetroot/.checksum +++ /dev/null @@ -1 +0,0 @@ -55e29295c265ad3eaca803e805c8366b1b25b176a832177ed0f94f1a73c2bfd4 xsetroot-1.1.3.tar.xz diff --git a/repos/xorg/xsetroot/.files b/repos/xorg/xsetroot/.files deleted file mode 100644 index ea948602..00000000 --- a/repos/xorg/xsetroot/.files +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xsetroot -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xsetroot.1.gz diff --git a/repos/xorg/xsetroot/abuild b/repos/xorg/xsetroot/abuild deleted file mode 100644 index b966dea1..00000000 --- a/repos/xorg/xsetroot/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xsetroot -version=1.1.3 -release=1 -source="https://www.x.org/pub/individual/app/$name-$version.tar.xz" diff --git a/repos/xorg/xsetroot/depends b/repos/xorg/xsetroot/depends deleted file mode 100644 index 13fac266..00000000 --- a/repos/xorg/xsetroot/depends +++ /dev/null @@ -1,4 +0,0 @@ -libxcursor -libxmu -xbitmaps -xbitmaps diff --git a/repos/xorg/xterm/.checksum b/repos/xorg/xterm/.checksum deleted file mode 100644 index 50cab3fc..00000000 --- a/repos/xorg/xterm/.checksum +++ /dev/null @@ -1 +0,0 @@ -b86f3e1c1a1b2e7a5e057fff193f4dace66382e4b8a1d0c81736b1d2253f3c54 xterm-396.tgz diff --git a/repos/xorg/xterm/.files b/repos/xorg/xterm/.files deleted file mode 100644 index 041b8b60..00000000 --- a/repos/xorg/xterm/.files +++ /dev/null @@ -1,33 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/koi8rxterm --rwxr-xr-x root/root usr/bin/uxterm --rwxr-xr-x root/root usr/bin/xterm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/app-defaults/ --rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm --rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm-color --rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm --rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm-color --rw-r--r-- root/root usr/share/X11/app-defaults/XTerm --rw-r--r-- root/root usr/share/X11/app-defaults/XTerm-color -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/koi8rxterm.1.gz --rw-r--r-- root/root usr/share/man/man1/resize.1.gz --rw-r--r-- root/root usr/share/man/man1/uxterm.1.gz --rw-r--r-- root/root usr/share/man/man1/xterm.1.gz -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/filled-xterm_16x16.xpm --rw-r--r-- root/root usr/share/pixmaps/filled-xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/filled-xterm_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/mini.xterm_16x16.xpm --rw-r--r-- root/root usr/share/pixmaps/mini.xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/mini.xterm_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm-color_16x16.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm-color_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm-color_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm_16x16.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm_48x48.xpm diff --git a/repos/xorg/xterm/abuild b/repos/xorg/xterm/abuild deleted file mode 100644 index a9f9b03d..00000000 --- a/repos/xorg/xterm/abuild +++ /dev/null @@ -1,16 +0,0 @@ -name=xterm -version=396 -release=1 -source="https://invisible-mirror.net/archives/$name/$name-$version.tgz" -export TERMINFO=/usr/share/terminfo -build_opt="--with-app-defaults=/usr/share/X11/app-defaults --enable-freetype --enable-wide-chars --with-x --with-tty-group=tty" - -prebuild() { - sed -i '/v0/{n;s/new:/new:kb=^?:/}' termcap - printf '\tkbs=\\177,\n' >> terminfo -} - -postbuild() { - # exist in busybox - rm $PKG/usr/bin/resize -} diff --git a/repos/xorg/xterm/depends b/repos/xorg/xterm/depends deleted file mode 100644 index b35b22a6..00000000 --- a/repos/xorg/xterm/depends +++ /dev/null @@ -1,3 +0,0 @@ -libxaw -fontconfig -libxft diff --git a/repos/xorg/xtrans/.checksum b/repos/xorg/xtrans/.checksum deleted file mode 100644 index 08b9fd46..00000000 --- a/repos/xorg/xtrans/.checksum +++ /dev/null @@ -1 +0,0 @@ -b4d7757f275f7387b26da63c8d5ac2a0f68ae0b9eaaeef7a56e9e3941b7f4fbe xtrans-1.5.2.tar.xz diff --git a/repos/xorg/xtrans/.files b/repos/xorg/xtrans/.files deleted file mode 100644 index 9239a503..00000000 --- a/repos/xorg/xtrans/.files +++ /dev/null @@ -1,16 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/X11/ -drwxr-xr-x root/root usr/include/X11/Xtrans/ --rw-r--r-- root/root usr/include/X11/Xtrans/Xtrans.c --rw-r--r-- root/root usr/include/X11/Xtrans/Xtrans.h --rw-r--r-- root/root usr/include/X11/Xtrans/Xtransint.h --rw-r--r-- root/root usr/include/X11/Xtrans/Xtranslcl.c --rw-r--r-- root/root usr/include/X11/Xtrans/Xtranssock.c --rw-r--r-- root/root usr/include/X11/Xtrans/Xtransutil.c --rw-r--r-- root/root usr/include/X11/Xtrans/transport.c -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/aclocal/ --rw-r--r-- root/root usr/share/aclocal/xtrans.m4 -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/xtrans.pc diff --git a/repos/xorg/xtrans/abuild b/repos/xorg/xtrans/abuild deleted file mode 100644 index e9700fc7..00000000 --- a/repos/xorg/xtrans/abuild +++ /dev/null @@ -1,4 +0,0 @@ -name=xtrans -version=1.5.2 -release=1 -source="https://www.x.org/pub/individual/lib/$name-$version.tar.xz" diff --git a/repos/xorg/xtrans/depends b/repos/xorg/xtrans/depends deleted file mode 100644 index 0df431e5..00000000 --- a/repos/xorg/xtrans/depends +++ /dev/null @@ -1 +0,0 @@ -util-macros diff --git a/repos/xorg/yajl/.checksum b/repos/xorg/yajl/.checksum deleted file mode 100644 index 13a4ba57..00000000 --- a/repos/xorg/yajl/.checksum +++ /dev/null @@ -1 +0,0 @@ -25cbfe28df82d5699b8fa5db8b32797b34aff995c7ce35a5fb622cc68f90f0cb yajl-2.1.0.tar.gz diff --git a/repos/xorg/yajl/.files b/repos/xorg/yajl/.files deleted file mode 100644 index 37b33a76..00000000 --- a/repos/xorg/yajl/.files +++ /dev/null @@ -1,18 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/json_reformat --rwxr-xr-x root/root usr/bin/json_verify -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/yajl/ --rw-r--r-- root/root usr/include/yajl/yajl_common.h --rw-r--r-- root/root usr/include/yajl/yajl_gen.h --rw-r--r-- root/root usr/include/yajl/yajl_parse.h --rw-r--r-- root/root usr/include/yajl/yajl_tree.h --rw-r--r-- root/root usr/include/yajl/yajl_version.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libyajl.so -> libyajl.so.2 -lrwxrwxrwx root/root usr/lib/libyajl.so.2 -> libyajl.so.2.1.0 --rwxr-xr-x root/root usr/lib/libyajl.so.2.1.0 -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/pkgconfig/ --rw-r--r-- root/root usr/share/pkgconfig/yajl.pc diff --git a/repos/xorg/yajl/abuild b/repos/xorg/yajl/abuild deleted file mode 100644 index 1c02ceac..00000000 --- a/repos/xorg/yajl/abuild +++ /dev/null @@ -1,5 +0,0 @@ -name=yajl -version=2.1.0 -release=1 -source="https://github.com/lloyd/$name/archive/refs/tags/$version/$name-$version.tar.gz" -build_type=cmake_build diff --git a/repos/xorg/zzzfm/.checksum b/repos/xorg/zzzfm/.checksum deleted file mode 100644 index 41b90894..00000000 --- a/repos/xorg/zzzfm/.checksum +++ /dev/null @@ -1 +0,0 @@ -35e395a99964c584481cdc3f397f30f28c3eb7677aa335d3ba1c4fb111257eb8 zzzfm-1.0.7-5.tar.gz diff --git a/repos/xorg/zzzfm/.files b/repos/xorg/zzzfm/.files deleted file mode 100644 index b4da1a97..00000000 --- a/repos/xorg/zzzfm/.files +++ /dev/null @@ -1,36 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/zzzfm/ --rw-r--r-- root/root etc/zzzfm/zzzfm.conf.new -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/zzzfm --rwxr-xr-x root/root usr/bin/zzzfm-auth -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/zzzfm-find.desktop --rw-r--r-- root/root usr/share/applications/zzzfm-folder-handler.desktop --rw-r--r-- root/root usr/share/applications/zzzfm.desktop -drwxr-xr-x root/root usr/share/mime/ -drwxr-xr-x root/root usr/share/mime/packages/ --rw-r--r-- root/root usr/share/mime/packages/zzzfm-mime.xml -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/zzzfm-128-cube-blue.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-128-cube-red.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-48-cube-blue.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-48-cube-red.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-48-folder-blue.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-48-folder-red.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-find.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-root.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm-root24.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm.png --rw-r--r-- root/root usr/share/pixmaps/zzzfm24.png -drwxr-xr-x root/root usr/share/zzzfm/ -drwxr-xr-x root/root usr/share/zzzfm/ui/ --rw-r--r-- root/root usr/share/zzzfm/ui/appchooserdlg.ui --rw-r--r-- root/root usr/share/zzzfm/ui/file_properties.ui --rw-r--r-- root/root usr/share/zzzfm/ui/find-files.ui --rw-r--r-- root/root usr/share/zzzfm/ui/find-files2.ui --rw-r--r-- root/root usr/share/zzzfm/ui/godlg.ui --rw-r--r-- root/root usr/share/zzzfm/ui/prefdlg.ui --rw-r--r-- root/root usr/share/zzzfm/ui/prefdlg2.ui diff --git a/repos/xorg/zzzfm/abuild b/repos/xorg/zzzfm/abuild deleted file mode 100644 index 895b544a..00000000 --- a/repos/xorg/zzzfm/abuild +++ /dev/null @@ -1,12 +0,0 @@ -name=zzzfm -version=1.0.7.5 -_ver=${version%.*} -_sion=${version##*.} -release=1 -source="https://gitlab.com/antix-contribs/${name}/-/archive/${_ver}-${_sion}/${name}-${_ver}-${_sion}.tar.gz" -build_opt="--disable-video-thumbnails" -export CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types" - -prebuild() { - autoreconf -fiv -} diff --git a/repos/xorg/zzzfm/depends b/repos/xorg/zzzfm/depends deleted file mode 100644 index d8cb9d15..00000000 --- a/repos/xorg/zzzfm/depends +++ /dev/null @@ -1,3 +0,0 @@ -intltool -gtk3 -libudev-zero |