Installation updates and scripts
This commit is contained in:
parent
e74a77387f
commit
0cee9eac39
@ -1,4 +1,4 @@
|
||||
list=arch-update close-guest fix-sound log-guest netcli open-guest restart-service silent-guardian revproxy simple-web shadowarch-sync
|
||||
list=close-guest fix-sound log-guest open-guest restart-service silent-guardian revproxy simple-web
|
||||
location=${pkgdir}/usr/local/sbin
|
||||
perms=0700
|
||||
|
||||
|
@ -1,103 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
export logfile="/var/log/sysupdate.log"
|
||||
export tmpfile=/tmp/shadowarch-cowerfile
|
||||
unset apply
|
||||
|
||||
while getopts "al:h" OPTION
|
||||
do
|
||||
case $OPTION in
|
||||
a) export apply="true"; ;;
|
||||
c) export logfile=${OPTARG}; ;;
|
||||
*) printf "ShadowArch Update Checker\n-a Apply changes\n-l Logfile\n-h Show this helptext\n"; exit 1;;
|
||||
esac;
|
||||
done
|
||||
|
||||
date > $logfile
|
||||
|
||||
# Update
|
||||
echo == Updating Arch Packages == | tee -a $logfile
|
||||
if [ ! -z "$apply" ]; then
|
||||
pacman -Syu --force 2>&1 | tee -a $logfile # I've been having troubles with this causing crashes while online.
|
||||
# Hook for MediaWiki
|
||||
if [ `grep $(date +$F) /var/log/pacman.log | grep -c mediawiki` -eq 1 ] && [ -d /usr/share/webapps/mediawiki ]; then
|
||||
php /usr/share/webapps/mediawiki/maintenance/update.php | tee -a $logfile
|
||||
for i in `find /usr/share/webapps/ -maxdepth 1 -type d | grep mediawiki\-`; do
|
||||
rsync -avz --exclude images --exclude Images --exclude LocalSettings.php /usr/share/webapps/mediawiki/ "$i"
|
||||
php "$i"/maintenance/update.php
|
||||
done
|
||||
fi
|
||||
# Hook for TT-RSS
|
||||
if [ `grep $(date +$F) /var/log/pacman.log | grep -c tt-rss` -eq 1 ] && [ -d /usr/share/webapps/tt-rss ]; hten
|
||||
/usr/bin/runuser -u http -- /usr/bin/php /usr/share/webapps/tt-rss/update.php --update-schema
|
||||
fi
|
||||
# Hook for Grimoire
|
||||
if [ `grep $(date +$F) /var/log/pacman.log | grep -c 'upgraded postgresql '` -eq 1 ]; then
|
||||
echo "Updating PostGreSQL databases" | tee -a $logfile
|
||||
#Clear old backups.
|
||||
rm -Rf /var/lib/postgres/olddata
|
||||
#Stop the service and save old database version.
|
||||
if [ -f /usr/lib/systemd/system/grimoire.service ]; then systemctl stop grimoire; else systemctl stop postgresql.service; fi
|
||||
su -l postgres -c 'mv /var/lib/postgres/data /var/lib/postgres/olddata'
|
||||
# Init new database and upgrade.
|
||||
su -l postgres -c 'initdb --locale en_US.UTF-8 -E UTF8 -D /var/lib/postgres/data' | tee -a $logfile
|
||||
upstr=`grep "$(date +%F)" /var/log/pacman.log | grep 'upgraded postgresql '`
|
||||
oldver=`echo $upstr | rev | cut -f 2 -d '>' | cut -f 1 -d '(' | rev | sed s/\ -//`
|
||||
newver=`echo $upstr | rev | cut -f 1 -d '>' | cut -f 2 -d ')' | rev`
|
||||
# Upgrade the database.
|
||||
su -l postgres -c "pg_upgrade -d /var/lib/postgres/olddata/ -D /var/lib/postgres/data/ -b /opt/pgsql-$oldver/bin/ -B /usr/bin/" | tee -a $logfile
|
||||
# Create dump file for restores.
|
||||
/opt/pgsql-$oldver/bin/pg_ctl -D /var/lib/postgres/olddata/ start
|
||||
/opt/pgsql-$oldver/bin/pg_dumpall >> /var/lib/postgres/olddata/dump.psql
|
||||
/opt/pgsql-$oldver/bin/pg_ctl -D /var/lib/postgres/olddata/ stop
|
||||
# Restart the service.
|
||||
if [ -f /usr/lib/systemd/system/grimoire.service ]; then systemctl start grimoire; else systemctl start postgresql.service; fi
|
||||
echo "Updated PostGreSQL databases" | tee -a $logfile
|
||||
fi
|
||||
else
|
||||
checkupdates | tee -a $logfile
|
||||
fi
|
||||
echo | tee -a $logfile
|
||||
|
||||
# Get AUR list of update candidates
|
||||
echo == AUR Candidate List == | tee -a $logfile
|
||||
if [ ! -z "$apply" ]; then
|
||||
cower -u | cut -f 2 -d ' ' &> $tmpfile
|
||||
echo Edit the package list.
|
||||
read
|
||||
${EDITOR} ${tmpfile}
|
||||
chmod 0755 $tmpfile;
|
||||
printf "What deprivileged user do you want to use? "
|
||||
read deprivuser;
|
||||
sudo -u "$deprivuser" /bin/bash -c "for i in `cat $tmpfile`; do cd /usr/local/src/"$i"; git pull; makepkg -sri; done"
|
||||
(echo Updated the following AUR packages:; cat $tmpfile) | tee -a $logfile
|
||||
rm $tmpfile;
|
||||
else
|
||||
cower -u | tee -a $logfile
|
||||
fi
|
||||
echo | tee -a $logfile
|
||||
|
||||
# Update AniNIX packages
|
||||
echo == Updating AniNIX Packages == | tee -a $logfile
|
||||
if [ ! -z "$apply" ]; then
|
||||
for i in ; do #`find /usr/local/src/ -maxdepth 6 -type f -name config -exec egrep -l aninix\|foundation {} \; | sed 's#.git/config$##'`; do
|
||||
cd "$i"
|
||||
git pull
|
||||
make
|
||||
make install
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
|
||||
# Generate list of installed packages
|
||||
echo == Generated installed-packages list == | tee -a $logfile
|
||||
pacman -Qqe | egrep '^[a-z]' | sed 's#local/##' > /var/log/installed-packages.txt
|
||||
|
||||
# Generate list of orphaned packages
|
||||
echo == Generated orphaned-packages list == | tee -a $logfile
|
||||
pacman -Qdtq > /var/log/orphaned-packages.txt
|
||||
echo | tee -a $logfile
|
||||
date | tee -a $logfile
|
||||
printf '\n\n' | tee -a $logfile
|
@ -1,111 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Global variables
|
||||
unset conf
|
||||
unset network
|
||||
unset type
|
||||
interface="wlp4s0"
|
||||
|
||||
# Print helptext
|
||||
function usage() {
|
||||
echo Usage: $0 '[-i interface] -f conf_name'
|
||||
echo " $0 -a # Connect to any known secured network"
|
||||
echo " $0 -l # List networks and arp"
|
||||
echo " $0 -o SSID # Connect to open network "
|
||||
echo " $0 -u # Bring up interface"
|
||||
echo " $0 -d # Stop the interface"
|
||||
echo " $0 -I # Info "
|
||||
echo " $0 -h # Usage"
|
||||
echo
|
||||
echo Add -v to increase verbosity.
|
||||
echo "Add -t TYPE to override type guessing, where type is eth or wifi"
|
||||
echo Default interface is "${interface}"
|
||||
}
|
||||
|
||||
# Try to guess if we're ether or wifi
|
||||
function guessType() {
|
||||
if [ "$(echo "${interface}" | egrep -c '^enp|^eth|^eno')" -ne 1 ]; then
|
||||
echo "wifi"
|
||||
else
|
||||
echo "ether"
|
||||
fi
|
||||
}
|
||||
|
||||
# Clean up running processes
|
||||
function cleanUp() {
|
||||
killall wpa_supplicant dhcpcd 2>&1
|
||||
ip link set "$interface" down
|
||||
}
|
||||
|
||||
# Connect to a given open network
|
||||
# param network: an open ESSID
|
||||
function connectOpen() {
|
||||
network="$1"
|
||||
cleanUp
|
||||
ip link set "$interface" up
|
||||
if [ "$type" == "wifi" ]; then
|
||||
iw dev "$interface" connect "$network"
|
||||
fi
|
||||
}
|
||||
|
||||
# Connect to any known secured access point
|
||||
function connectAny() {
|
||||
cleanUp
|
||||
ip link set "$interface" up
|
||||
if [ "$type" == "wifi" ]; then
|
||||
for i in `iwlist "$interface" scanning | grep ESSID | cut -f 2 -d \" | tr '[:upper:]' '[:lower:]'`; do
|
||||
if [ -f /etc/wpa_supplicant/"$i".conf ]; then
|
||||
/root/bin/wifi "$i" "$interface"
|
||||
if [ $? -eq 0 ]; then
|
||||
exit 0;
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
# Connect using the WPA Conf file saved
|
||||
# param conf: the conf file
|
||||
function connect() {
|
||||
conf="$1"
|
||||
cleanUp
|
||||
ip link set "${interface}" up
|
||||
if [ "$type" == wifi ]; then
|
||||
wpa_supplicant -i "$interface" -c "$conf" -B
|
||||
fi
|
||||
}
|
||||
|
||||
# Get the information on current interfaces
|
||||
function netInfo() {
|
||||
ip addr list
|
||||
ip route list
|
||||
iwlist scanning
|
||||
}
|
||||
|
||||
|
||||
### MAIN FUNCTION ###
|
||||
if [ `echo "$0" | egrep -c '(^|/)netcli$'` -eq 1 ]; then
|
||||
type=`guessType`
|
||||
while getopts 'adf:hIi:lo:t:uv' OPTION 2>/dev/null; do
|
||||
case "${OPTION}" in
|
||||
a) connectAny ;;
|
||||
f) connect "/etc/wpa_supplicant/${OPTARG}.conf" ;;
|
||||
d) cleanUp; exit 0 ;;
|
||||
h) usage; exit 0 ;;
|
||||
i) interface="${OPTARG}"; type=`guessType` ;;
|
||||
I) netInfo; exit 0; ;;
|
||||
l) if [ "$type" == "wifi" ]; then echo SSID Broadcasts:; iwlist "${interface}" scanning | egrep Encryption\|ESSID | sed 's/ *//' | sed 's/ESSID://' ; fi; echo; echo ARP list:; arp -a; exit $? ;;
|
||||
o) connectOpen "${OPTARG}" ;;
|
||||
t) if [ "$OPTARG" != "wifi" ] && [ "$OPTARG" != "eth" ]; then usage; exit 1; fi; type="${OPTARG}" ;;
|
||||
u) if ! [ "$(ip link list "${interface}" | grep -m 1 -c \ UP\ )" -ne 1 ]; then ip link set "${interface}" up; fi ;;
|
||||
v) set -x ;;
|
||||
*) usage; exit 1 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Attempt DHCP Lease -- if this fails, static routing will need to be added TODO
|
||||
|
||||
sleep 3
|
||||
dhcpcd "$interface"
|
||||
exit $?
|
||||
fi
|
@ -1,25 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# File: shadowarch-sync
|
||||
#
|
||||
# Description: This file syncs the ShadowArch customization files over the ones created by other packages, like filesystem and pacman
|
||||
#
|
||||
# Package: AniNIX::Foundation/ShadowArch
|
||||
# Copyright: WTFPL
|
||||
#
|
||||
# Author: DarkFeather <darkfeather@aninix.net>
|
||||
|
||||
seconds=10
|
||||
echo "Syncing in $seconds seconds. Press Ctrl+C to cancel."
|
||||
sleep $seconds
|
||||
|
||||
# AniNIX GPG Package Signing
|
||||
keyid=1CC1E3F4ED06F296
|
||||
if ! gpg --homedir /etc/pacman.d/gnupg --list-key "${keyid}"; then
|
||||
pacman-key --recv-key "${keyid}"
|
||||
pacman-key --finger "${keyid}"
|
||||
pacman-key --lsign-key "${keyid}"
|
||||
fi
|
||||
|
||||
# Sync configuration
|
||||
rsync -avz /opt/aninix/ShadowArch/etc/ /etc/
|
@ -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}
|
||||
@ -35,9 +33,8 @@ test:
|
||||
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
|
||||
|
@ -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
|
@ -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,56 +91,14 @@ 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/";
|
||||
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
|
||||
# Prefer tmux
|
@ -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
|
@ -1,3 +0,0 @@
|
||||
#
|
||||
# ~/.bash_logout
|
||||
#
|
@ -1,5 +0,0 @@
|
||||
#
|
||||
# ~/.bash_profile
|
||||
#
|
||||
|
||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user