Installation updates and scripts

This commit is contained in:
2022-11-20 20:47:27 -06:00
parent e74a77387f
commit 0cee9eac39
118 changed files with 366 additions and 3975 deletions

View File

@@ -1,22 +1,20 @@
httpRoot = ${pkgdir}/srv/http/aninix.net
httpUser = http
syncList = vimrc bashrc tmux.conf profile pacman.conf
serviceList = tmux@.service ssh-agent@.service
pacmanHooks = mediawiki.hook tt-rss.hook shadowarch.hook
syncList = profile.d tmux.conf
userServiceList = tmux.service ssh-agent.service
compile: ./shadowarch
@echo Nothing to compile
install: compile
mkdir -p ${pkgdir}/opt/aninix/ShadowArch/etc/
mkdir -p ${pkgdir}/usr/lib/systemd/system
mkdir -p ${pkgdir}/etc/pacman.d/hooks
mkdir -p ${pkgdir}/etc/
mkdir -p ${pkgdir}/usr/lib/systemd/user
mkdir -p ${pkgdir}/usr/share/vim/vimfiles/plugin/
for i in ${syncList}; do cp "$$i" ${pkgdir}/opt/aninix/ShadowArch/etc/; done
for i in ${serviceList}; do cp "$$i" ${pkgdir}/usr/lib/systemd/system/"$$i"; done
for i in ${pacmanHooks}; do cp "$$i" ${pkgdir}/etc/pacman.d/hooks/"$$i"; done
for i in ${syncList}; do cp -r "$$i" ${pkgdir}/etc/; chmod -R a+r ${pkgdir}/etc/; done
for i in ${userServiceList}; do cp "$$i" ${pkgdir}/usr/lib/systemd/user/"$$i"; done
cp ./shadowarch.vim ${pkgdir}/usr/share/vim/vimfiles/plugin/shadowarch.vim
cp -pr ./skel ${pkgdir}/opt/aninix/ShadowArch/etc
cp -pr ./skel ${pkgdir}/etc
if [ `uname -r | grep -c arch` -eq 1 ]; then mkdir -p ${pkgdir}/usr/share/pacman/keyrings; cp aninix.gpg ${pkgdir}/usr/share/pacman/keyrings; fi
repository: shadowarch ${httpRoot}
cp ./shadowarch ${httpRoot}
@@ -27,17 +25,16 @@ checkperm: ${syncList}
chown -R root:root ${syncList}
for i in ${syncList}; do if [ -f "${i}" ]; then chmod 0644 "${i}"; elif [ -d "${i}" ]; then chmod 0755 "${i}"; fi; done
test:
test:
bash -n shadowarch
bash ./shadowarch -h
bash ./shadowarch -h
echo Success.
reverse: ${httpRoot}/shadowarch ${syncList}
cat ${httpRoot}/shadowarch > ./shadowarch
for i in ${syncList}; do rsync -avz ${syncList} .; done
for i in ${serviceList}; do rsync -avz ${serviceList} .; done
for i in ${pacmanHooks}; do rsync -avz ${pacmanHooks} .; done
rsync --delete-before -avz ${pkgdir}/opt/aninix/ShadowArch/etc/skel ./skel
for i in ${userServiceList}; do rsync -avz /usr/lib/systemd/user/${userServiceList} .; done
rsync --delete-before -avz ${pkgdir}/etc/skel ./skel
clean:
@echo Nothing to do.
@@ -45,7 +42,7 @@ clean:
diff: ${syncList}
if [ -f ${httpRoot}/shadowarch ]; then diff ./shadowarch ${httpRoot}/shadowarch; echo; fi
for i in ${syncList}; do diff -rc "$$i" ./`echo $$i | rev | cut -f 1 -d '/' | rev`; echo; done
diff -rc ${pkgdir}/opt/aninix/ShadowArch/etc/skel ./skel; printf ""
diff -rc ${pkgdir}/etc/skel ./skel; printf ""
find-missing-hooks-in-src:
@for i in `wget -q -O - https://aninix.net/foundation/ | grep toplevel-repo | cut -f 4 -d \'`; do if [ -z $$i ]; then continue; fi; for file in `find ../.. -type f -name Makefile | grep $$i`; do if [ -z "$$file" ]; then echo NO MAKEFILE FOR $$i; elif [ `grep -c -i 'hook for systemd' $$file` -eq 0 ]; then echo HOOK MISSING IN: $$file; else echo HOOK FOUND IN: $$file; fi; done; done

View File

@@ -1,10 +0,0 @@
[Trigger]
Operation = Install
Operation = Upgrade
Type = Package
Target = mediawiki
[Action]
Description = Updating MediaWiki Install
When = PostTransaction
Exec = /usr/bin/runuser -u http -- /usr/bin/php /usr/share/webapps/mediawiki/maintenance/update.php

View File

@@ -1,10 +1,3 @@
#
# /etc/bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
### Prompt ###
organization="$(echo $HOSTNAME | rev | cut -f 2 -d '.' | rev)"
PS1='\[\033[00;31m\][ \[\033[01;32m\]\u\[\033[00;31m\]@\H:${SHELL} {\[\033[m\]$? \[\033[00;36m\]\D{%F-%R} \[\033[00;35m\]\w\[\033[00;31m\]\[\033[00;31m\]\[\033[00;33m\]$(git_prompt_var)\[\033[00;31m\]} ]\n|\[\033[m\]> '
@@ -24,9 +17,60 @@ alias weechat="TERM=screen weechat"
# Disable bracketed paste mode
printf "\e[?2004l"
# systemctl --user
export XDG_RUNTIME_DIR=/run/user/$UID
### MOTD ###
[ -f /etc/bash.motd ] && cat /etc/bash.motd
### SSH ###
# Tell shell about ssh-agent -- enable with 'systemctl enable ssh-agent@$USER.service'
export SSH_AGENT_PID="$(pgrep -fu "$USER" ssh-agent)"
if [ -n "$SSH_AGENT_PID" ]; then
export SSH_AUTH_SOCK="$(ls -ld /tmp/ssh-*/agent.* | grep -m 1 "$USER" | awk '{ print $9; }')"
echo ssh-agent PID is $SSH_AGENT_PID
fi
if [ -n "$SSH_AUTH_SOCK" ] && [ `ssh-add -L | grep -c no\ identities` -eq 1 ]; then
ssh-add
ssh-add -L
fi
### GIT ###
source /usr/share/git/completion/git-prompt.sh
function git_prompt_var() {
### If $PWD is a Git repo, add URL and branch to PS1
url=`git config remote.origin.url 2>/dev/null`
if [ -n "$url" ]; then
branch=`__git_ps1 '%s'`
url=`basename "$url"`
echo " $url($branch)"
fi
}
### User-directory .gitbare Support (Git) ###
if [ -d ~/.git ]; then
cd
printf "~/.git: "
if [ $SHLVL -eq 1 ] && [ -z "$TMUX" ]; then
git pull
else
git rev-parse --short HEAD
fi
git status
fi
### GPG ###
export GPG_TTY=$(tty)
# GPG Key Agent
# Credit: https://wiki.archlinux.org/index.php/GnuPG
if [ `pgrep -afc -u $USER gpg-agent` -lt 1 ] && [ -x `which gpg-agent` ]; then
gpg-agent --daemon 2>&1 | grep -v another
fi
### Ansible ###
export ANSIBLE_VAULT_PASSWORD_FILE=$HOME/password-store/${organization}.vault.password
export ANSIBLE_VAULT_FILE=$HOME/password-store/${organization}.vault
### AniNIX Customizations ###
alias get-commands='for i in $( echo $PATH | sed "s/:/\n/g"); do ls $i; done | sort | less'
alias whoison='who | grep -v tmux'
@@ -47,60 +91,18 @@ alias vi=vim
alias view="vim -R"
alias top="top -o %CPU"
alias make-entrypoints="egrep '^[a-zA-Z0-9\-]*:' Makefile"
alias rdns="dig +short -x "
alias dns="dig +short "
export WEECHAT_HOME=$HOME/.weechat
if [ -x `which torsocks 2>/dev/null` ] && [ `systemctl status tor 2>/dev/null| grep -c running` -eq 1 ]; then
alias tor-lynx="torsocks lynx https://check.torproject.org/";
alias tor-lynx="torsocks lynx https://check.torproject.org/";
fi
IFS="
"
### GIT ###
source /usr/share/git/completion/git-prompt.sh
function git_prompt_var() {
### If $PWD is a Git repo, add URL and branch to PS1
url=`git config remote.origin.url 2>/dev/null`
if [ -n "$url" ]; then
branch=`__git_ps1 '%s'`
url=`basename "$url"`
echo " $url($branch)"
fi
}
### SSH ###
# Tell shell about ssh-agent -- enable with 'systemctl enable ssh-agent@$USER.service'
export SSH_AGENT_PID="$(pgrep -fu "$USER" ssh-agent)"
if [ -n "$SSH_AGENT_PID" ]; then
export SSH_AUTH_SOCK="$(ls -ld /tmp/ssh-*/agent.* | grep -m 1 "$USER" | awk '{ print $9; }')"
echo ssh-agent PID is $SSH_AGENT_PID
fi
if [ -n "$SSH_AUTH_SOCK" ] && [ `ssh-add -L | grep -c no\ identities` -eq 1 ]; then
ssh-add
ssh-add -L
fi
### GPG ###
export GPG_TTY=$(tty)
### Ansible ###
export ANSIBLE_VAULT_PASSWORD_FILE=$HOME/password-store/${organization}.vault.password
export ANSIBLE_VAULT_FILE=$HOME/password-store/${organization}.vault
# ### User-directory .gitbare Support (Git) ###
# if [ -d ~/.git ]; then
# cd
# printf "~/.git: "
# if [ $SHLVL -eq 1 ] && [ -z "$TMUX" ]; then
# git pull
# else
# git rev-parse --short HEAD
# fi
# git status
# fi
#
# Set up screen/tmux safety nest by default for remote sessions
if [ -n "$SSH_CLIENT" ]; then
if [ -n "$SSH_CLIENT" ]; then
# Prefer tmux
if [ -x "$(which tmux 2>/dev/null)" ] && [ -z "$TMUX" ]; then
if [ -x "$(which tmux 2>/dev/null)" ] && [ -z "$TMUX" ]; then
if [ `tmux list-sessions | grep created | wc -l` -eq 0 ]; then
exec tmux
elif [ `tmux list-sessions | grep created | wc -l` -eq 1 ] && [ `tmux list-sessions | grep attached | wc -l` -eq 0 ]; then

View File

@@ -1,10 +0,0 @@
[Trigger]
Operation = Install
Operation = Upgrade
Type = Package
Target = shadowarch
[Action]
Description = Updating ShadowArch Customizations
When = PostTransaction
Exec = /usr/local/sbin/shadowarch-sync

View File

@@ -1,3 +0,0 @@
#
# ~/.bash_logout
#

View File

@@ -1,5 +0,0 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc

View File

@@ -1,12 +0,0 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Allow separation so that /usr/local/bin/replicate-ssh-profiles doesn't carry local-only customizations downstream.
if [ -f ~/.bashrc-local ]; then
. ~/.bashrc-local
fi

View File

@@ -1,24 +0,0 @@
[recommended.sh]
row=5
col=0
[VBOXADDITIONS_4.2.8_83876]
row=4
col=0
[8.6 GB Encrypted]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[Floppy Disk]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=1
col=0
[/home/cxford]
row=3
col=0

View File

@@ -1,23 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,63 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/LOST-SINGLES]
row=0
col=1
[/home/cxford/Desktop/fb_albums]
row=1
col=0
[/home/cxford/Desktop/geth-sample-regex]
row=6
col=0
[/home/cxford/Desktop/PLdlSgredEHsK1JR0XKVJaf6JvTWGlcg0p]
row=6
col=1
[/home/cxford/Desktop/imperial-agent]
row=5
col=1
[/home/cxford/Desktop/toSort]
row=3
col=1
[/home/cxford/Desktop/PortTest.class]
row=7
col=0
[/home/cxford/Desktop/aninix-background.jpg]
row=2
col=1
[/home/cxford/Desktop/HomeSearch.xlsx]
row=4
col=1
[/home/cxford/Desktop/sayoc]
row=5
col=0
[/home/cxford/Desktop/LOST-MEDIA]
row=1
col=1
[Floppy Disk]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,52 +0,0 @@
[transfer]
row=0
col=2
[KunjaDraftKnifework.pdf]
row=0
col=1
[defense-3.20.13.txt]
row=1
col=0
[3]
row=1
col=2
[Relocation Estimate Template.xlsx]
row=2
col=1
[Scanned Document.pdf]
row=2
col=0
[blar]
row=0
col=0
[Relocation Estimate Template.ods]
row=1
col=1
[Deadliest Warrior]
row=2
col=2
[VBOXADDITIONS_4.2.16_86992]
row=0
col=3
[Trash]
row=1
col=3
[File System]
row=2
col=3
[Home]
row=0
col=4

View File

@@ -1,20 +0,0 @@
[recommended.sh]
row=4
col=0
[VBOXADDITIONS_4.2.18_88780]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=3
col=0
[Trash]
row=0
col=0
[File System]
row=1
col=0
[Home]
row=2
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/home/cxford]
row=3
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/Maroon 5]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=9
col=0
[/root/Desktop/twd13.mp4]
row=7
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=8
col=0
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=0
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=1
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=7
col=0
[/root/Desktop/The Walking Dead S05E15]
row=6
col=1
[/root/Desktop/twd12.mp4]
row=8
col=1
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=6
col=0
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=9
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=1
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=2
col=1
[2015-03-16-17-37-09-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,16 +0,0 @@
[VBOXADDITIONS_4.3.6_91406]
row=0
col=0
[Trash]
row=1
col=0
[File System]
row=2
col=0
[Home]
row=4
col=0

View File

@@ -1,16 +0,0 @@
[Furious 6 (2013)]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=1
[/root/Desktop/Maroon 5]
row=0
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=2
col=1
[/root/Desktop/twd13.mp4]
row=10
col=0
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=3
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=0
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=6
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=6
col=0
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=4
col=1
[/root/Desktop/The Walking Dead S05E15]
row=9
col=0
[/root/Desktop/twd12.mp4]
row=11
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=5
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=0
col=2
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=8
col=0
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=3
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=5
col=0
[2015-03-16-17-37-09-00]
row=7
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=4
col=0

View File

@@ -1,20 +0,0 @@
[recommended.sh]
row=4
col=0
[VBOXADDITIONS_4.2.18_88780]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,35 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/ChristmasCard.jpg]
row=6
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=7
col=0
[2015-10-01-17-08-02-00]
row=3
col=0
[Trash]
row=2
col=0
[/]
row=1
col=0
[/root]
row=0
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=3
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=1
col=2
[/root/Desktop/The Walking Dead S05E15]
row=6
col=1
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=7
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=0
col=2
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-16-17-37-09-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[Floppy Disk]
row=4
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=5
col=0
[Kenny Chesney]
row=4
col=0
[NVWONND1]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,16 +0,0 @@
[Maroon 5]
row=5
col=0
[Trash]
row=1
col=0
[File System]
row=2
col=0
[Home]
row=3
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=0
col=0
[Kenny Chesney]
row=1
col=0
[NVWONND1]
row=2
col=0
[Trash]
row=1
col=3
[File System]
row=2
col=3
[Home]
row=0
col=1

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=3
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=0
col=2
[/root/Desktop/The Walking Dead S05E15]
row=6
col=1
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=7
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=1
col=2
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-16-17-37-09-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=9
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=8
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=3
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=9
col=0
[/root/Desktop/The Walking Dead S05E15]
row=8
col=0
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=7
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-16-17-37-09-00]
row=6
col=1
[Trash]
row=2
col=0
[/]
row=0
col=0
[/root]
row=3
col=0

View File

@@ -1,32 +0,0 @@
[Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv.part]
row=6
col=0
[Maroon 5]
row=0
col=0
[A Walk to Remember (2002) DvDrip Xvid]
row=4
col=0
[Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=5
col=0
[VBOXADDITIONS_4.3.18_96516]
row=1
col=0
[Trash]
row=2
col=0
[File System]
row=3
col=0
[Home]
row=0
col=1

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=3
col=0
[Trash]
row=0
col=0
[File System]
row=1
col=0
[Home]
row=2
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/root]
row=1
col=0

View File

@@ -1,59 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/transfer]
row=8
col=0
[/home/cxford/Desktop/KunjaDraftKnifework.pdf]
row=0
col=1
[/home/cxford/Desktop/defense-3.20.13.txt]
row=1
col=1
[/home/cxford/Desktop/Relocation Estimate Template.xlsx]
row=2
col=1
[/home/cxford/Desktop/Scanned Document.pdf]
row=9
col=0
[/home/cxford/Desktop/Game Careers.ods]
row=7
col=0
[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]]
row=4
col=0
[/home/cxford/Desktop/BlackBook]
row=6
col=0
[/home/cxford/Desktop/Relocation Estimate Template.ods]
row=2
col=0
[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]]
row=3
col=1
[2015-05-13-16-15-47-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,59 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/transfer]
row=8
col=0
[/home/cxford/Desktop/KunjaDraftKnifework.pdf]
row=2
col=1
[/home/cxford/Desktop/defense-3.20.13.txt]
row=3
col=1
[/home/cxford/Desktop/Relocation Estimate Template.xlsx]
row=0
col=1
[/home/cxford/Desktop/Scanned Document.pdf]
row=9
col=0
[/home/cxford/Desktop/Game Careers.ods]
row=7
col=0
[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]]
row=3
col=0
[/home/cxford/Desktop/BlackBook]
row=5
col=0
[/home/cxford/Desktop/Relocation Estimate Template.ods]
row=1
col=1
[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]]
row=4
col=0
[2015-05-13-16-15-47-00]
row=6
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=0
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=1
col=1
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=3
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=9
col=0
[/root/Desktop/The Walking Dead S05E15]
row=10
col=0
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=7
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=8
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-16-17-37-09-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,59 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/transfer]
row=8
col=0
[/home/cxford/Desktop/KunjaDraftKnifework.pdf]
row=2
col=1
[/home/cxford/Desktop/defense-3.20.13.txt]
row=3
col=1
[/home/cxford/Desktop/Relocation Estimate Template.xlsx]
row=0
col=1
[/home/cxford/Desktop/Scanned Document.pdf]
row=9
col=0
[/home/cxford/Desktop/Game Careers.ods]
row=7
col=0
[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]]
row=6
col=0
[/home/cxford/Desktop/BlackBook]
row=5
col=0
[/home/cxford/Desktop/Relocation Estimate Template.ods]
row=1
col=1
[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]]
row=4
col=0
[2015-05-13-16-15-47-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=1
col=0
[/home/cxford]
row=2
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Floppy Disk]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=1
col=0
[2015-05-13-16-15-47-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[Floppy Disk]
row=4
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[Floppy Disk]
row=4
col=0
[Trash]
row=0
col=0
[/]
row=2
col=0
[/home/cxford]
row=3
col=0

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=1

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=0
col=3
[Trash]
row=0
col=2
[File System]
row=0
col=0
[Home]
row=0
col=1

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=3
col=0
[Kenny Chesney]
row=0
col=0
[FIREFLY_D1]
row=4
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=1

View File

@@ -1,16 +0,0 @@
[VBOXADDITIONS_4.3.6_91406]
row=4
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,35 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/ChristmasCard.jpg]
row=6
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=7
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,63 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/LOST-SINGLES]
row=8
col=0
[/home/cxford/Desktop/fb_albums]
row=3
col=0
[/home/cxford/Desktop/geth-sample-regex]
row=6
col=0
[/home/cxford/Desktop/PLdlSgredEHsK1JR0XKVJaf6JvTWGlcg0p]
row=1
col=1
[/home/cxford/Desktop/imperial-agent]
row=0
col=1
[/home/cxford/Desktop/toSort]
row=11
col=0
[/home/cxford/Desktop/PortTest.class]
row=7
col=0
[/home/cxford/Desktop/aninix-background.jpg]
row=10
col=0
[/home/cxford/Desktop/HomeSearch.xlsx]
row=12
col=0
[/home/cxford/Desktop/sayoc]
row=5
col=0
[/home/cxford/Desktop/LOST-MEDIA]
row=9
col=0
[Floppy Disk]
row=4
col=0
[Trash]
row=0
col=0
[/]
row=2
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[2015-10-01-17-08-02-00]
row=3
col=0
[Trash]
row=0
col=0
[/]
row=1
col=0
[/root]
row=2
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=6
col=1
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=5
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/root]
row=0
col=0

View File

@@ -1,59 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/transfer]
row=8
col=0
[/home/cxford/Desktop/KunjaDraftKnifework.pdf]
row=0
col=1
[/home/cxford/Desktop/defense-3.20.13.txt]
row=1
col=1
[/home/cxford/Desktop/Relocation Estimate Template.xlsx]
row=10
col=0
[/home/cxford/Desktop/Scanned Document.pdf]
row=9
col=0
[/home/cxford/Desktop/Game Careers.ods]
row=7
col=0
[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]]
row=3
col=0
[/home/cxford/Desktop/BlackBook]
row=5
col=0
[/home/cxford/Desktop/Relocation Estimate Template.ods]
row=11
col=0
[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]]
row=4
col=0
[2015-05-13-16-15-47-00]
row=6
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=0
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=1
col=1
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/root]
row=1
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=0
col=0
[Kenny Chesney]
row=3
col=0
[FIREFLY_D3]
row=0
col=2
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=1

View File

@@ -1,35 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/ChristmasCard.jpg]
row=6
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=7
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/root]
row=1
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=0
col=1
[Kenny Chesney]
row=0
col=0
[FIREFLY_D3]
row=0
col=2
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=3
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=5
col=0
[Trash]
row=0
col=0
[/]
row=1
col=0
[/root]
row=2
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=3
col=0
[Kenny Chesney]
row=5
col=0
[NVWONND1]
row=0
col=1
[Trash]
row=1
col=0
[File System]
row=2
col=0
[Home]
row=4
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=5
col=0
[Kenny Chesney]
row=4
col=0
[NVWONND1]
row=3
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=3
col=0
[Kenny Chesney]
row=5
col=0
[NVWONND1]
row=0
col=0
[Trash]
row=1
col=0
[File System]
row=2
col=0
[Home]
row=4
col=0

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=3
col=0
[Trash]
row=0
col=0
[File System]
row=1
col=0
[Home]
row=2
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/home/cxford]
row=3
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,36 +0,0 @@
[Scanned Document.pdf]
row=4
col=0
[Relocation Estimate Template.xlsx]
row=0
col=0
[Relocation Estimate Template.ods]
row=5
col=0
[transfer]
row=3
col=0
[KunjaDraftKnifework.pdf]
row=0
col=1
[defense-3.20.13.txt]
row=1
col=1
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=2
col=1

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=3
col=0
[Kenny Chesney]
row=1
col=0
[VBOXADDITIONS_4.3.16_95972]
row=0
col=0
[Trash]
row=1
col=3
[File System]
row=2
col=3
[Home]
row=3
col=3

View File

@@ -1,16 +0,0 @@
[Audio Disc]
row=0
col=0
[Trash]
row=1
col=0
[File System]
row=0
col=1
[Home]
row=1
col=1

View File

@@ -1,24 +0,0 @@
[Maroon 5]
row=0
col=1
[Kenny Chesney]
row=0
col=0
[FIREFLY_D3]
row=0
col=2
[Trash]
row=0
col=3
[File System]
row=0
col=4
[Home]
row=0
col=5

View File

@@ -1,16 +0,0 @@
[Furious 6 (2013)]
row=2
col=0
[Trash]
row=0
col=0
[File System]
row=1
col=0
[Home]
row=0
col=1

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=0
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=2
col=3
[/root]
row=3
col=0

View File

@@ -1,115 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Girl Meets World S02E01 Girl Meets Gravity 480p HDTV x264]
row=0
col=5
[/root/Desktop/Avatar - The Legend of Korra Season 4 Complete [720p][Vega004]]
row=3
col=2
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=2
col=3
[/root/Desktop/Girl Meets World S02E04 Girl Meets Pluto 480p HDTV x264]
row=3
col=4
[/root/Desktop/Game of Thrones - The Complete Season 4 [HDTV]]
row=0
col=2
[/root/Desktop/Maroon 5]
row=1
col=6
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=1
col=3
[/root/Desktop/twd13.mp4]
row=0
col=6
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=0
col=3
[/root/Desktop/Girl Meets World S02E02 Girl Meets the New World 480p HDTV x264]
row=1
col=5
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=3
col=3
[/root/Desktop/Vikings Season 3 - COMPLETE S03 720p HDTV x264 [MKV, AC3,5.1] Ehhhh]
row=1
col=2
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=5
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=0
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=2
col=1
[/root/Desktop/Girl Meets World S02E05 Meets Mr Squirrels 480p HDTV x264]
row=2
col=2
[/root/Desktop/The Walking Dead S05E15]
row=3
col=1
[/root/Desktop/twd12.mp4]
row=2
col=5
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=3
col=6
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=1
col=1
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=0
col=4
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=2
col=6
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=1
col=4
[/root/Desktop/Girl Meets World S02E03 Girl Meets the Secret of Life 480p HDTV x264]
row=2
col=4
[2015-03-16-17-37-09-00]
row=3
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/root]
row=1
col=0

View File

@@ -1,83 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=1
[/root/Desktop/Maroon 5]
row=2
col=2
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=1
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=5
col=0
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=2
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=0
col=3
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=4
col=0
[/root/Desktop/The Walking Dead S05E15]
row=5
col=1
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=1
col=3
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=2
[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4]
row=4
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=3
col=2
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=0
col=2
[2015-03-16-17-37-09-00]
row=3
col=0
[Trash]
row=0
col=0
[/]
row=1
col=0
[/root]
row=2
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=1
col=0
[2015-03-16-17-37-09-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=0
col=1
[/root]
row=2
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,28 +0,0 @@
[Maroon 5]
row=1
col=0
[Star Wars - The Clone Wars (complete)]
row=4
col=0
[PHANTOM_MENACE]
row=0
col=0
[VBOXADDITIONS_4.3.18_96516]
row=3
col=0
[Trash]
row=5
col=0
[File System]
row=2
col=0
[Home]
row=1
col=1

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=2
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=2
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=0
col=0
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=1
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-02-14-24-20-00]
row=8
col=0
[Trash]
row=5
col=0
[/]
row=3
col=0
[/root]
row=1
col=1

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/Maroon 5]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=9
col=0
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=8
col=0
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=0
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=1
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=7
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=6
col=0
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=4
col=0
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=1
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=2
col=1
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=10
col=0
[/root/Desktop/Maroon 5]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=9
col=0
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=8
col=0
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=0
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=1
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=7
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=6
col=0
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=4
col=0
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=1
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=2
col=1
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=9
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=8
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,59 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/transfer]
row=8
col=0
[/home/cxford/Desktop/KunjaDraftKnifework.pdf]
row=2
col=1
[/home/cxford/Desktop/defense-3.20.13.txt]
row=3
col=1
[/home/cxford/Desktop/Relocation Estimate Template.xlsx]
row=0
col=1
[/home/cxford/Desktop/Scanned Document.pdf]
row=9
col=0
[/home/cxford/Desktop/Game Careers.ods]
row=7
col=0
[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]]
row=3
col=0
[/home/cxford/Desktop/BlackBook]
row=5
col=0
[/home/cxford/Desktop/Relocation Estimate Template.ods]
row=1
col=1
[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]]
row=4
col=0
[2015-05-13-16-15-47-00]
row=6
col=0
[Trash]
row=2
col=0
[/]
row=0
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,27 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/home/cxford/Desktop/genie-clipart-lamp-hi.png]
row=5
col=0
[Floppy Disk]
row=0
col=0
[4a6c42d0-d631-4fe9-aebe-37e65ac53b27]
row=1
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=4
col=0

View File

@@ -1,31 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=6
col=0
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,16 +0,0 @@
[VBOXADDITIONS_4.3.6_91406]
row=4
col=0
[Trash]
row=2
col=0
[File System]
row=1
col=0
[Home]
row=0
col=0

View File

@@ -1,35 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=4
col=0
[/root/Desktop/Maroon 5]
row=5
col=0
[/root/Desktop/ChristmasCard.jpg]
row=1
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=0
col=1
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,19 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[2015-08-06-07-25-33-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/home/cxford]
row=1
col=0

View File

@@ -1,35 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=2
col=1
[/root/Desktop/Maroon 5]
row=1
col=1
[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC]
row=0
col=1
[1c0130aa-ee56-409b-917f-5f24e453848a]
row=3
col=1
[2015-10-01-17-08-02-00]
row=0
col=0
[Trash]
row=2
col=0
[/]
row=3
col=0
[/root]
row=1
col=0

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/Maroon 5]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=7
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=6
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=0
col=1
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=1
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=7
col=0
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=6
col=0
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=4
col=0
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=1
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=2
col=1
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=1
col=0
[/]
row=2
col=0
[/root]
row=3
col=0

View File

@@ -1,67 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=1
col=0
[/root/Desktop/Maroon 5]
row=4
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=1
col=1
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=3
col=1
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=4
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=6
col=1
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=8
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-02-14-24-20-00]
row=0
col=0
[Trash]
row=3
col=0
[/]
row=5
col=0
[/root]
row=2
col=0

View File

@@ -1,79 +0,0 @@
[xfdesktop-version-4.10.3+-rcfile_format]
4.10.3+=true
[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]]
row=8
col=0
[/root/Desktop/Maroon 5]
row=2
col=0
[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4]
row=0
col=1
[/root/Desktop/twd13.mp4]
row=3
col=2
[/root/Desktop/The Americans Season 1 Complete 480p RawKEy]
row=0
col=0
[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]]
row=6
col=0
[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)]
row=1
col=0
[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]]
row=6
col=1
[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]]
row=1
col=2
[/root/Desktop/twd12.mp4]
row=4
col=2
[/root/Desktop/The Americans - Season 2 Complete-ChameE]
row=2
col=1
[/root/Desktop/The Walking Dead S05E15]
row=5
col=0
[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]]
row=5
col=1
[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid]
row=4
col=0
[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv]
row=7
col=0
[2015-03-16-17-37-09-00]
row=3
col=0
[Trash]
row=1
col=3
[/]
row=2
col=3
[/root]
row=3
col=3

Some files were not shown because too many files have changed in this diff Show More