Moving away from customization tarball to git -- files don't change enough.; Updates to ShadowArch install and script dependencies

This commit is contained in:
DarkFeather 2017-03-29 17:45:16 -05:00
parent b37eb3270e
commit 0cc559431a
142 changed files with 5513 additions and 62 deletions

View File

@ -5,6 +5,7 @@ compile:
@echo Nothing to compile.
install: compile
mkdir -p ${LOCATION};
for i in ${LIST}; do cp ./$$i ${LOCATION}; done
make checkperm

View File

@ -1,25 +1,33 @@
HTTPROOT = /srv/http/aninix.net
HTTPUSER = http
SYNCLIST = /etc/vimrc /etc/bash.bashrc /etc/skel /etc/tmux.conf
compile:
@echo Nothing to do.
install: script webpresent checkperm
cp ./shadowarch-tar-gen /root/bin
/root/bin/shadowarch-tar-gen
install:
cp ./vimrc /etc/vimrc
cp bash.bashrc /etc/bash.bashrc
cp -r skel /etc/skel
cp tmux.conf /etc/tmux.conf
repository: shadowarch
cp ./shadowarch ${HTTPROOT}
checkperm:
chmod 0700 /root/bin/shadowarch-tar-gen
chown root:root /root/bin/shadowarch-tar-gen
chmod 0755 ${HTTPROOT}/shadowarch
chown ${HTTPUSER} ${HTTPROOT}/shadowarch
checkperm: ${SYNCLIST}
if [ -f ${HTTPROOT}/shadowarch ]; then chmod 0755 ${HTTPROOT}/shadowarch; chown ${HTTPUSER} ${HTTPROOT}/shadowarch; fi
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:
bash -n shadowarch
bash ./shadowarch -h || echo Success.
bash ./shadowarch -h
echo Success.
reverse: ${HTTPROOT}/shadowarch /root/bin/shadowarch-tar-gen
cp ${HTTPROOT}/shadowarch .
cp /root/bin/shadowarch-tar-gen .
reverse: ${HTTPROOT}/shadowarch ${SYNCLIST}
cat ${HTTPROOT}/shadowarch > ./shadowarch
for i in ${SYNCLIST}; do rsync -avz ${SYNCLIST} .; done
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
@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 useradd $$file` -eq 0 ]; then echo DEPRIV MISSING IN: $$file; else echo DEPRIV FOUND IN: $$file; fi; done; done

65
ShadowArch/bash.bashrc Normal file
View File

@ -0,0 +1,65 @@
#
# /etc/bash.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
PS1='\[\033[00;31m\][ AniNIX::\h(\[\033[01;32m\]ShadowArch\[\033[00;31m\]) \[\033[00;36m\]\u \[\033[01;37m\]\d \t \[\033[00;35m\]\w\[\033[00;31m\] ] \n|\[\033[m\]> '
PS2='> '
PS3='> '
PS4='+ '
case ${TERM} in
xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"'
;;
screen)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"'
;;
esac
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
[ -f /etc/bash.motd ] && cat /etc/bash.motd
### 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'
alias startvnc="vncserver -xstartup startxfce4; echo Use \"ssh -L 5901:localhost:5901 $(whoami)@$(hostname)\" to tunnel connections."
alias vi=vim
alias view="vim -R"
alias top="top -o %CPU"
alias make-entrypoints="egrep '^[a-zA-Z0-9\-]*:' Makefile"
IFS="
"
# Irssi
for i in `ls -d ~/.irssi-*`; do
alias `echo $i | cut -f 2 -d '-' | tr '[:upper:]' '[:lower:]'`="irssi --home=$i";
done
# Set up screen/tmux safety nest by default.
if [ "$TERM" != "screen" ] && [ -z "$DESKTOP_SESSION" ]; 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
exec tmux a -d -t `tmux list-sessions | grep created | cut -f 1 -d ':'`
fi
alias tat="tmux a -d -t"
elif [ -x "$(which screen 2>/dev/null)" ] && [ "$TERM" != "screen" ]; then
if [ `screen -list | grep -c 'Detached'` -eq 1 ]; then
exec screen -r
elif [ `screen -list | grep -c 'No Sockets found in '` -eq 1 ] && [ "$TERM" != "screen" ]; then
exec /usr/bin/screen /bin/bash
fi
alias sdr="screen -d -r"
fi;
fi
# Autocompletions are having trouble lately and spawning irssi -- can't find where yet TODO
complete -r

View File

@ -9,15 +9,15 @@ function header () {
}
function help() {
echo Usage: ${0} '[OPTIONS]'
echo '-d DISK -- Use the disk.'
echo '-e -- Encrypt the root partition'
echo '-g -- GUI packages and setup'
echo '-h -- This helptext'
echo '-k -- Kali Linux-like package additions'
echo '-p -- Productivity package additions'
echo '-s -- Create a layout for an AniNIX::Spartacus'
echo '-m -- Skip disk operations and assume storage is mounted on /mnt'
echo '-z -- Try to add all the packages on AniNIX::Core'
echo '\-d DISK -- Use the disk.'
echo '\-e -- Encrypt the root partition'
echo '\-g -- GUI packages and setup'
echo '\-h -- This helptext'
echo '\-k -- Kali Linux-like package additions'
echo '\-p -- Productivity package additions'
echo '\-s -- Create a layout for an AniNIX::Spartacus'
echo '\-m -- Skip disk operations and assume storage is mounted on /mnt'
echo '\-z -- Try to add all the packages on AniNIX::Core'
exit 1;
}
@ -33,16 +33,15 @@ bootpart=1;
rootpart=2;
datapart=99;
# TODO Add LVM as an argument
while getopts "d:eghkmpsz" OPTION
while getopts "ed:gps" OPTION
do
case $OPTION in
d) disk=${OPTARG} ;;
e) encrypt=1 ;;
g) gui=1 ;;
h) help ;;
k) kali=1 ;;
m) nodiskbuild=1 ;;
p) productivity=1; gui=1 ;;
m) nodiskbuild=1 ;;
s) spartacus=1 ;;
z) kitchensink=1 ;;
*) help
@ -190,42 +189,25 @@ echo 'DNSSearch="aninix.net"' >> /mnt/etc/netctl/$interface
arch-chroot /mnt systemctl enable netctl
arch-chroot /mnt netctl enable $interface
# Set prompt and vimrc for ShadowArch
header Setting ShadowArch customizations.
echo 'PS1="\[\033[00;31m\][ AniNIX::\h(\[\033[01;32m\]ShadowArch\[\033[00;31m\]) \[\033[00;36m\]\u \[\033[01;37m\]\d \t \[\033[00;35m\]\w\[\033[00;31m\] ] \n|\[\033[m\]> "' >> /mnt/etc/bash.bashrc
# TODO Find a way to set the terminal header properly
#for i in $(grep PROMPT_COMMAND /mnt/etc/bash.bashrc); do
# sed -i 's/'"$i"'/PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'"'"'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"'"'"'/g' /etc/bash.bashrc
#done
sed -i '/PS1=/d' /mnt/etc/skel/.bashrc
cd /mnt/etc/
wget https://aninix.net/shadowarch.tar
rm -Rf ./skel ./vimrc ./bash.bashrc
tar xvf /mnt/etc/shadowarch.tar
for i in {a..z}; do
cp /mnt/etc/skel/'.'"$i"* /mnt/root
done
rm /mnt/etc/shadowarch.tar
rmdir /mnt/root/skel
# Vim cleanup for SSH
mkdir -p /usr/share/vim/vimfiles/plugin
printf 'set mouse-=a\n' > /usr/share/vim/vimfiles/plugin/shadowarch.vim
ln -sf /etc/skel/.bashrc /mnt/root/.bashrc
# Set hostname
header Set hostname
printf "What is your hostname? AniNIX::"
read hostname
echo "$hostname" > /mnt/etc/hostname
# Clone ConfigPackags from AniNIX::Foundation
arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/ConfigPackages
arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/MiscScripts
arch-chroot /mnt make -C /usr/local/src/MiscScripts/Shared install
arch-chroot /mnt make -C /usr/local/src/MiscScripts/Admin install
arch-chroot /mnt make -C /usr/local/src/MiscScripts/ShadowArch install
arch-chroot /mnt git -C /usr/local/src/ clone https://aur.archlinux.org/cower.git
arch-chroot /mnt useradd -m depriv
# Hook for Heartbeat
arch-chroot /mnt /bin/bash -c "mkdir /usr/local/etc/Heartbeat/; echo \"ShadowArch ; /bin/bash -c \\\"systemctl status | grep -c 'State: running'\\\" ; 3\" >> /usr/local/etc/Heartbeat/services.list"
# Handle AUR Packages
if [ "$kali" -eq 1 ]; then
@ -238,6 +220,9 @@ arch-chroot /mnt passwd
arch-chroot /mnt passwd depriv
arch-chroot /mnt chown -R depriv:depriv /usr/local/src/
# Set SSH host keys
arch-chroot /mnt ssh-keygen -A
cp /root/shadowarch /mnt/root/shadowarch.installer."$(date +%F-%R)"
if [ "$gui" -eq 1 ]; then
@ -249,6 +234,12 @@ if [ "$gui" -eq 1 ]; then
For VMware, look at open-vm-tools"
fi
# Set hostname
header Set hostname
printf "What is your hostname? AniNIX::"
read hostname
echo "$hostname" > /mnt/etc/hostname
header Installed ShadowArch\!
if [ "$nodiskbuild" -eq 1 ]; then
header Remember to run grub-install and set up your bootloader.

View File

@ -1,3 +0,0 @@
#!/bin/bash
cd /etc/
tar cvf /srv/http/aninix.net/shadowarch.tar vimrc skel bash.bashrc

View File

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

View File

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

17
ShadowArch/skel/.bashrc Normal file
View File

@ -0,0 +1,17 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# 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

@ -0,0 +1,10 @@
[Desktop Entry]
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=conky
Comment=
Exec=conky -d
StartupNotify=false
Terminal=false
Hidden=false

View File

@ -0,0 +1,24 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,23 @@
[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

@ -0,0 +1,63 @@
[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

@ -0,0 +1,52 @@
[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

@ -0,0 +1,20 @@
[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

@ -0,0 +1,19 @@
[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

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

View File

@ -0,0 +1,31 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,16 @@
[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

@ -0,0 +1,16 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,20 @@
[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

@ -0,0 +1,35 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,24 @@
[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

@ -0,0 +1,27 @@
[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

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

View File

@ -0,0 +1,24 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,67 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,32 @@
[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

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

View File

@ -0,0 +1,31 @@
[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

@ -0,0 +1,59 @@
[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

@ -0,0 +1,59 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,59 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,19 @@
[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

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

View File

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

View File

@ -0,0 +1,24 @@
[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

@ -0,0 +1,16 @@
[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

@ -0,0 +1,35 @@
[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

@ -0,0 +1,63 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,59 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,24 @@
[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

@ -0,0 +1,35 @@
[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

@ -0,0 +1,24 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,24 @@
[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

@ -0,0 +1,24 @@
[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

@ -0,0 +1,24 @@
[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

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

View File

@ -0,0 +1,19 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,36 @@
[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

@ -0,0 +1,24 @@
[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

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

View File

@ -0,0 +1,24 @@
[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

@ -0,0 +1,16 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,115 @@
[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

@ -0,0 +1,83 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,28 @@
[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

@ -0,0 +1,67 @@
[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

@ -0,0 +1,67 @@
[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

@ -0,0 +1,67 @@
[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

@ -0,0 +1,67 @@
[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

@ -0,0 +1,59 @@
[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

@ -0,0 +1,27 @@
[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

@ -0,0 +1,31 @@
[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

@ -0,0 +1,16 @@
[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

@ -0,0 +1,35 @@
[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

@ -0,0 +1,19 @@
[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

@ -0,0 +1,35 @@
[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

@ -0,0 +1,67 @@
[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

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