Renaming package to ShadowArch to follow /wiki/Design_Principles; improved packing; development sync to current state -- massive overhaul
This commit is contained in:
46
EtcFiles/Makefile
Normal file
46
EtcFiles/Makefile
Normal file
@@ -0,0 +1,46 @@
|
||||
httpRoot = ${pkgdir}/srv/http/aninix.net
|
||||
httpUser = http
|
||||
syncList = vimrc bashrc tmux.conf profile pacman.conf
|
||||
serviceList = 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
|
||||
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
|
||||
cp -pr ./skel ${pkgdir}/opt/aninix/ShadowArch/etc
|
||||
|
||||
repository: shadowarch ${httpRoot}
|
||||
cp ./shadowarch ${httpRoot}
|
||||
|
||||
checkperm: ${syncList}
|
||||
printf "What is your deprivileged user? "; read user; chown -R ${user}:${user} .
|
||||
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.
|
||||
|
||||
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
|
||||
rsync --delete-before -avz ${pkgdir}/opt/aninix/ShadowArch/etc/skel ./skel
|
||||
|
||||
clean:
|
||||
@echo Nothing to do.
|
||||
|
||||
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 ""
|
||||
|
||||
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
|
85
EtcFiles/bashrc
Normal file
85
EtcFiles/bashrc
Normal file
@@ -0,0 +1,85 @@
|
||||
#
|
||||
# /etc/bashrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
organization="$(hostname | rev | cut -f 2 -d '.' | rev)"
|
||||
PS1='\[\033[00;31m\][ '"${org^^}"'::\h/\[\033[01;32m\]\u \[\033[00;31m\]\\\\\\\\ ${SHELL} {\[\033[m\]$? \[\033[00;36m\]\D{%F-%R} \[\033[00;35m\]\w\[\033[00;31m\]\[\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
|
||||
|
||||
# Considered untrusted.
|
||||
# https://bugs.archlinux.org/task/55841
|
||||
#[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
|
||||
|
||||
### MOTD ###
|
||||
[ -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"
|
||||
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="
|
||||
"
|
||||
|
||||
### SSH ###
|
||||
# Aliases for hosts
|
||||
if [ -f ~/.ssh/config ]; then
|
||||
for i in `egrep '^Host' ~/.ssh/config | grep -v \* | cut -f 2 -d ' '`; do
|
||||
alias "$i"="ssh $i";
|
||||
done
|
||||
fi
|
||||
# Tell shell about ssh-agent -- enable with 'systemctl enable ssh-agent@$USER.service'
|
||||
SSH_AGENT_PID="$(ps -feu "$USER" | grep -v grep | grep -m 1 ssh-agent | awk '{ print $2; }')"
|
||||
if [ -n "$SSH_AGENT_PID" ]; then
|
||||
SSH_AUTH_SOCK="$(ls -1 /tmp/ssh-*/agent.$(( $SSH_AGENT_PID - 1 )))"
|
||||
echo ssh-agent PID is $SSH_AGENT_PID
|
||||
fi
|
||||
# Set up screen/tmux safety nest by default for remote sessions
|
||||
if [ ! -z "$SSH_CLIENT" ]; then
|
||||
# Prefer tmux
|
||||
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 ':'`
|
||||
else
|
||||
tmux list-sessions
|
||||
fi
|
||||
alias tat="exec tmux a -d -t"
|
||||
# Fallback on Screen
|
||||
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
|
||||
else
|
||||
screen -list
|
||||
fi
|
||||
alias sdr="screen -d -r"
|
||||
fi;
|
||||
|
||||
### XFCE4 ###
|
||||
elif [ `who -m | egrep "^$(whoami)" | awk '{ print $2; }' | egrep -c "^tty"` -eq 1 ] && [ -x /usr/sbin/startxfce4 ] && [ `pgrep -ac xinit` -eq 0 ] && [ `whoami` != 'root' ]; then
|
||||
exec startxfce4
|
||||
fi
|
||||
|
111
EtcFiles/pacman.conf
Normal file
111
EtcFiles/pacman.conf
Normal file
@@ -0,0 +1,111 @@
|
||||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
#HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
CleanMethod = KeepCurrent
|
||||
#UseDelta = 0.7
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
IgnorePkg = mediawiki postgresql postgresql-libs
|
||||
# IgnorePkg = postgresql postgresql-libs
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
Color
|
||||
ILoveCandy
|
||||
#TotalDownload
|
||||
CheckSpace
|
||||
#VerbosePkgLists
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
#[community-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[community]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
||||
|
||||
[aninix]
|
||||
SigLevel = Optional TrustAll
|
||||
Server = https://aninix.net/maat/
|
||||
|
||||
[aur]
|
||||
SigLevel = Optional TrustAll
|
||||
Server = https://aninix.net/maat/aur/
|
||||
|
32
EtcFiles/profile
Normal file
32
EtcFiles/profile
Normal file
@@ -0,0 +1,32 @@
|
||||
# /etc/profile
|
||||
|
||||
#Set our umask
|
||||
umask 022
|
||||
|
||||
# Set our default path
|
||||
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:~/bin"
|
||||
export PATH
|
||||
IFS="
|
||||
"
|
||||
export IFS
|
||||
|
||||
# Load profiles from /etc/profile.d
|
||||
if test -d /etc/profile.d/; then
|
||||
for profile in /etc/profile.d/*.sh; do
|
||||
test -r "$profile" && . "$profile"
|
||||
done
|
||||
unset profile
|
||||
fi
|
||||
|
||||
# Source global bash config
|
||||
if test "$PS1" && test "$BASH" && test -r /etc/bashrc; then
|
||||
. /etc/bashrc
|
||||
fi
|
||||
|
||||
# Termcap is outdated, old, and crusty, kill it.
|
||||
unset TERMCAP
|
||||
|
||||
# Man is much better than us at figuring this out
|
||||
unset MANPATH
|
||||
|
||||
|
328
EtcFiles/shadowarch
Normal file
328
EtcFiles/shadowarch
Normal file
@@ -0,0 +1,328 @@
|
||||
#!/bin/bash
|
||||
|
||||
function header () {
|
||||
tput setaf 1
|
||||
tput bold
|
||||
echo $@
|
||||
tput sgr0
|
||||
return
|
||||
}
|
||||
function help() {
|
||||
echo Usage: ${0} '[OPTIONS]'
|
||||
echo '\-A -- Audio optimizations from the Arch Wiki'
|
||||
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 '\-l FILE -- Log to a file'
|
||||
echo '\-p -- Productivity package additions'
|
||||
echo '\-P -- Power saving for laptops'
|
||||
echo '\-s -- Create a layout for an AniNIX::Spartacus'
|
||||
echo '\-m -- Skip disk operations and assume storage is mounted on /mnt'
|
||||
echo '\-v -- Verbose output.'
|
||||
echo '\-z -- Try to add all the packages on AniNIX::Core'
|
||||
exit 1;
|
||||
}
|
||||
|
||||
# Partition controls
|
||||
efipart=2;
|
||||
bootpart=3;
|
||||
rootpart=4;
|
||||
partpoint=1;
|
||||
partedcmd='mklabel gpt\nmkpart primary ext2 0 1MiB\nset 1 bios_grub on\n';
|
||||
function addNextPartition() {
|
||||
partsize="$1"
|
||||
parttype="$2"
|
||||
partfs="$3"
|
||||
nextpartpoint=$(( $partpoint + $partsize ))
|
||||
partedcmd="${partedcmd}mkpart $parttype $partfs ${partpoint}MiB ${nextpartpoint}MiB"'\n'
|
||||
partpoint=$nextpartpoint
|
||||
}
|
||||
|
||||
disk="/dev/sda"
|
||||
bootsize=500; # Size in MB for /boot
|
||||
# TODO Add LVM as an argument
|
||||
while getopts "d:egkl:pmsvz" OPTION
|
||||
do
|
||||
case $OPTION in
|
||||
A) audio=1 ;;
|
||||
d) disk=${OPTARG} ;;
|
||||
e) encrypt=1 ;;
|
||||
g) gui=1 ;;
|
||||
k) kali=1 ;;
|
||||
l) exec script -e -f -c "/bin/bash $0 $(echo $@ | sed "s#-l ${OPTARG}##")" "${OPTARG}" ;;
|
||||
p) productivity=1; gui=1 ;;
|
||||
P) powersave=1 ;;
|
||||
m) nodiskbuild=1 ;;
|
||||
s) spartacus=1 ;;
|
||||
v) set -x ;;
|
||||
z) kitchensink=1 ;;
|
||||
*) help
|
||||
esac
|
||||
done
|
||||
|
||||
header Confirm options:
|
||||
echo Spartacus set to: $spartacus
|
||||
echo Encryption set to: $encrypt
|
||||
echo GUI: $gui
|
||||
echo Productivity: $productivity
|
||||
echo Kali tools: $kali
|
||||
echo All Core packages: $kitchensink
|
||||
echo Disk to use: $disk \(Skip disk building? $nodiskbuild \)
|
||||
printf "Is this OK? Type YES to continue: "
|
||||
read answer
|
||||
if [ "$answer" != "YES" ]; then
|
||||
echo User did not confirm.
|
||||
exit 1;
|
||||
fi
|
||||
pacman -Syy
|
||||
if [ -z "$nodiskbuild" ]; then
|
||||
header Allocating space
|
||||
dd if=/dev/zero of="$disk" bs=1M count=1000
|
||||
|
||||
if [ ! -z "$spartacus" ]; then
|
||||
# Insert an ExFAT data partition ahead of the rest.
|
||||
export datapart=$efipart;
|
||||
export efipart=$((efipart+1))
|
||||
export bootpart=$((bootpart+1))
|
||||
export rootpart=$(($rootpart+1))
|
||||
# Break the disk up into 4ths -- 2/4 go to data, 1/4 go to boot, and 1/4 to root
|
||||
export disksize=$(($(fdisk -l $disk | head -n 1 | cut -f 5 -d ' ') / 1048576)) # Return disk size in MB
|
||||
if [ "$disksize" == "" ]; then echo "Can't identify disk size"; exit 1; fi
|
||||
if [ "$disksize" -lt 7788 ]; then echo "This drive is too small to be a Spartacus."; exit 1; fi # Must be 8GB or more to have 2GB root.
|
||||
export bootsize=$(($disksize / 4))
|
||||
export datasize=$(($disksize / 2))
|
||||
addNextPartition $datasize primary ext4
|
||||
fi
|
||||
# 550MiB for EFI with boot toggle
|
||||
addNextPartition 550 primary fat32
|
||||
partedcmd="${partedcmd}toggle $efipart boot"'\n'
|
||||
|
||||
# /boot
|
||||
addNextPartition $bootsize primary fat32
|
||||
|
||||
# / (root)
|
||||
partedcmd="${partedcmd}mkpart primary ext4 ${partpoint}MiB 100%%FREE"'\nquit\n\n'
|
||||
printf "$partedcmd" | parted "$disk"
|
||||
if [ ! -z "$spartacus" ]; then
|
||||
#create data partition
|
||||
pacman -S exfat-utils --noconfirm
|
||||
mkfs.exfat "$disk""$datapart"
|
||||
exfatlabel "$disk""$datapart" "AS-XPLATFRM"
|
||||
fi
|
||||
|
||||
header Making fat esp partition on "$disk""$efipart"
|
||||
mkfs.fat -F32 "$disk""$efipart"
|
||||
|
||||
header Making boot partition on "$disk""$bootpart"
|
||||
mkfs.vfat "$disk""$bootpart"
|
||||
|
||||
header Making root and mountpoints
|
||||
if [ ! -z "$encrypt" ]; then
|
||||
header Making encrypted root on "$disk""$rootpart"
|
||||
modprobe dm-crypt
|
||||
modprobe serpent_generic
|
||||
header Formatting root -- make sure to enter YES followed by a strong passphrase.
|
||||
cryptsetup luksFormat -c serpent-xts-plain64 -h sha512 --key-size 512 "$disk""$rootpart"
|
||||
header Unlocking root
|
||||
cryptsetup luksOpen "$disk""$rootpart" cryptroot
|
||||
mkfs.xfs -f /dev/mapper/cryptroot
|
||||
xfs_admin -L ROOT /dev/mapper/cryptroot
|
||||
mount /dev/mapper/cryptroot /mnt
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
else
|
||||
header Making root on "$disk""$rootpart"
|
||||
mkfs.xfs -f "$disk""$rootpart"
|
||||
xfs_admin -L ROOT "$disk""$rootpart"
|
||||
mount "$disk""$rootpart" /mnt
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
fi
|
||||
|
||||
mkdir /mnt/boot
|
||||
mount "$disk""$bootpart" /mnt/boot
|
||||
if [ "$?" -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
mkdir /mnt/boot/efi
|
||||
mount "$disk""$efipart" /mnt/boot/efi
|
||||
if [ "$?" -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
fi
|
||||
|
||||
|
||||
# Install ArchLinux with basic clients for the AniNIX Services.
|
||||
# * git for Foundation
|
||||
# * elinks for WebServer and Wiki
|
||||
# * openssh for SSH/SFTP
|
||||
# * weechat for IRC
|
||||
# * make for source packages
|
||||
# * tor for anonymity
|
||||
header Installing ArchLinux to device\(s\) on /mnt
|
||||
export pkglist="base base-devel parted net-tools bind-tools git openssh make elinks weechat vim wget tor torsocks grub os-prober rsync openntpd tmux efibootmgr"
|
||||
if [ ! -z "$gui" ]; then
|
||||
export pkglist="$pkglist"" xorg-server xfce4 chromium conky tigervnc xscreensaver"
|
||||
fi
|
||||
if [ ! -z "$spartacus" ]; then
|
||||
export pkglist="$pkglist"" exfat-utils"
|
||||
fi
|
||||
if [ ! -z "$productivity" ]; then
|
||||
export pkglist="$pkglist"" libreoffice-still gimp feh vlc evince openshot"
|
||||
fi
|
||||
if [ ! -z "$kali" ]; then
|
||||
export pkglist="$pkglist"" extundelete testdisk nmap tcpdump hexedit dcfldd"
|
||||
if [ ! -z "$gui" ]; then
|
||||
export pkglist="$pkglist"" wireshark-gtk"
|
||||
else
|
||||
export pkglist="$pkglist"" wireshark-cli"
|
||||
fi
|
||||
fi
|
||||
if [ ! -z "$kitchensink" ]; then
|
||||
export pkglist="base base-devel $(wget -q -O - 'https://aninix.net/installed-packages.txt' | cut -f 1 -d ' ' | tr '\n' ' ')"
|
||||
fi
|
||||
|
||||
yes "" | pacstrap -i /mnt $pkglist
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue -- pacstrap failed; exit 1; fi
|
||||
|
||||
header Create FSTAB
|
||||
genfstab -U /mnt >> /mnt/etc/fstab
|
||||
|
||||
header Set time
|
||||
sed -i 's/#en_US.UTF-8/en_US.UTF-8/' /mnt/etc/locale.gen
|
||||
arch-chroot /mnt locale-gen
|
||||
ln -sf /usr/share/zoneinfo/America/Chicago /mnt/etc/localtime
|
||||
arch-chroot /mnt hwclock --systohc --utc
|
||||
|
||||
header Setup bootloader
|
||||
if [ -z "$nodiskbuild" ]; then
|
||||
export rootuuid="$(blkid "$disk""$rootpart" | cut -f 2 -d '"')"
|
||||
if [ ! -z "$encrypt" ]; then
|
||||
export hookstring="$(grep 'HOOKS=' /mnt/etc/mkinitcpio.conf | grep -v '#')"
|
||||
sed -i 's#'"$hookstring"'#HOOKS="base udev autodetect modconf block encrypt filesystems keyboard fsck"#' /mnt/etc/mkinitcpio.conf
|
||||
sed -i 's#GRUB_CMDLINE_LINUX=""#GRUB_CMDLINE_LINUX="cryptdevice=UUID='$rootuuid':cryptroot"#' /mnt/etc/default/grub
|
||||
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="/GRUB_CMDLINE_LINUX_DEFAULT="panic=5 /' /etc/default/grub # Fix for CVE-2016-4484
|
||||
fi
|
||||
fi
|
||||
|
||||
arch-chroot /mnt mkinitcpio -p linux
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
if [ -z "$nodiskbuild" ]; then
|
||||
arch-chroot /mnt grub-install --target=x86_64-efi --removable --bootloader-id=grub --efi-directory /boot "$disk"
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
arch-chroot /mnt grub-install --target=i386-pc "$disk"
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
fi
|
||||
arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg
|
||||
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
||||
|
||||
header Set networking
|
||||
arch-chroot /mnt systemctl enable openntpd
|
||||
arch-chroot /mnt systemctl enable netctl
|
||||
export interface=$(ip link list | grep "state" | cut -f 2 -d ":" | cut -f 2 -d " " | grep -v lo)
|
||||
cp /mnt/etc/netctl/examples/ethernet-dhcp /mnt/etc/netctl/$interface
|
||||
sed -i 's/eth0/'$interface'/' /mnt/etc/netctl/$interface
|
||||
echo 'DNSSearch="aninix.net"' >> /mnt/etc/netctl/$interface
|
||||
arch-chroot /mnt systemctl enable netctl
|
||||
arch-chroot /mnt netctl enable $interface
|
||||
|
||||
# Vim cleanup for SSH
|
||||
arch-chroot /mnt mkdir -p /usr/share/vim/vimfiles/plugin
|
||||
arch-chroot /mnt printf 'set mouse-=a\n' > /usr/share/vim/vimfiles/plugin/shadowarch.vim
|
||||
|
||||
ln -sf /etc/skel/.bashrc /mnt/root/.bashrc
|
||||
|
||||
# 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 groupadd tty-allow
|
||||
arch-chroot /mnt useradd -u 1001 -G tty-allow -m depriv
|
||||
arch-chroot /mnt usermod -G "$(getent group | grep root | cut -f 1 -d ':' | tr '\n' ',')""tty-allow" root
|
||||
arch-chroot /mnt /bin/bash -c 'line="$(grep -E root"[[:space:]]"ALL /etc/sudoers)"; sed -i "s/$line/$line\ndepriv ALL=(ALL) ALL/" /etc/sudoers'
|
||||
|
||||
# Handle AUR Packages
|
||||
|
||||
if [ ! -z "$kali" ]; then
|
||||
arch-chroot /mnt git -C /usr/local/src/ clone https://aur.archlinux.org/autopsy.git
|
||||
fi
|
||||
|
||||
# Optimizations from https://wiki.archlinux.org/index.php/Power_management
|
||||
if [ ! -z "$powersave" ]; then
|
||||
if [ `lspci | grep -i intel | grep -ic audio` -eq 1 ]; then
|
||||
echo 'options snd_hda_intel power_save=1' > /mnt/etc/modprobe.d/audio_powersave.conf
|
||||
else
|
||||
echo 'options snd_ac97_codec power_save=1' > /mnt/etc/modprobe.d/audio_powersave.conf
|
||||
fi
|
||||
arch-chroot /mnt pacman -S rfkill cpupower --noconfirm
|
||||
arch-chroot /mnt systemctl enable rfkill-block@.service
|
||||
echo 'kernel.nmi_watchdog = 0' > /mnt/etc/sysctl.d/disable_watchdog.conf
|
||||
echo 'vm.dirty_writeback_centisecs = 6000' > /mnt/etc/sysctl.d/dirty_writes.conf
|
||||
echo 'vm.laptop_mode = 5' > /mnt/etc/sysctl.d/laptop.conf
|
||||
echo 'ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*", RUN+="/usr/bin/iw dev %k set power_save on"' > /mnt/etc/udev/rules.d/70-wifi-powersave.rules
|
||||
echo 'blacklist uvcvideo' > /mnt/etc/modprobe.d/no-camera.conf
|
||||
fi
|
||||
|
||||
# Thanks to https://wiki.archlinux.org/index.php/Professional_audio
|
||||
if [ ! -z "$audio" ]; then
|
||||
sed -i 's#GRUB_CMDLINE_LINUX_DEFAULT="#GRUB_CMDLINE_LINUX_DEFAULT="threadirqs #' /mnt/etc/default/grub
|
||||
arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg
|
||||
printf 'vm.swappiness = 10\nfs.inotify.max_user_watches = 524288\n' > /mnt/etc/sysctl.d/99-audio-tuning.conf
|
||||
setpci -v -d *:* latency_timer=b0
|
||||
for SOUND_CARD_PCI_ID in `lspci | grep -i audio | cut -f 1 -d ' '`; do
|
||||
setpci -v -s $SOUND_CARD_PCI_ID latency_timer=ff;
|
||||
done
|
||||
printf 'echo 2048 > /sys/class/rtc/rtc0/max_user_freq\necho 2048 > /proc/sys/dev/hpet/max-user-freq\n' >> /mnt/etc/rc.local
|
||||
fi
|
||||
|
||||
# Emulate old rc.local behavior
|
||||
touch /mnt/etc/rc.local
|
||||
echo '[Unit]
|
||||
Description=Execute commands at boot
|
||||
|
||||
[Service]
|
||||
ExecStart=/etc/rc.local
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target' > /mnt/usr/lib/systemd/system/rclocal.service
|
||||
arch-chroot /mnt systemctl enable rclocal
|
||||
arch-chroot /mnt chmod 0700 /etc/rc.local
|
||||
arch-chroot /mnt chown root: /etc/rc.local
|
||||
|
||||
# Set password
|
||||
header Set new root passphrase and depriviledged user '(depriv)' password.
|
||||
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 [ ! -z "$gui" ]; then
|
||||
echo "Remember to install your graphics drivers!
|
||||
For NVidia, look at xf86-video-nouveau
|
||||
For AMD, look at xf86-video-amdgpu
|
||||
For Hyper-V, look at xf86-video-fbdev
|
||||
For Virtual Box, look at virtualbox-guest-utils
|
||||
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 [ ! -z "$nodiskbuild" ]; then
|
||||
header Remember to run grub-install and set up your bootloader.
|
||||
echo 'https://wiki.archlinux.org/index.php/Installation_guide#Boot_loader'
|
||||
else
|
||||
header Press enter to reboot.
|
||||
read
|
||||
|
||||
# Reboot
|
||||
shutdown -r now
|
||||
fi
|
3
EtcFiles/skel/.bash_logout
Normal file
3
EtcFiles/skel/.bash_logout
Normal file
@@ -0,0 +1,3 @@
|
||||
#
|
||||
# ~/.bash_logout
|
||||
#
|
5
EtcFiles/skel/.bash_profile
Normal file
5
EtcFiles/skel/.bash_profile
Normal file
@@ -0,0 +1,5 @@
|
||||
#
|
||||
# ~/.bash_profile
|
||||
#
|
||||
|
||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
12
EtcFiles/skel/.bashrc
Normal file
12
EtcFiles/skel/.bashrc
Normal file
@@ -0,0 +1,12 @@
|
||||
#
|
||||
# ~/.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
|
||||
|
10
EtcFiles/skel/.config/autostart/conky.desktop
Normal file
10
EtcFiles/skel/.config/autostart/conky.desktop
Normal 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
|
1
EtcFiles/skel/.config/autostart/xscreensaver.desktop
Normal file
1
EtcFiles/skel/.config/autostart/xscreensaver.desktop
Normal file
@@ -0,0 +1 @@
|
||||
xscreensaver
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-608x897.rc
Normal file
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-608x897.rc
Normal 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
|
||||
|
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x691.rc
Normal file
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x691.rc
Normal 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
|
||||
|
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x693.rc
Normal file
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x693.rc
Normal 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
|
||||
|
36
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-623x593.rc
Normal file
36
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-623x593.rc
Normal 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
|
||||
|
24
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x22.rc
Normal file
24
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x22.rc
Normal 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
|
||||
|
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x232.rc
Normal file
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x232.rc
Normal 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
|
||||
|
24
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x310.rc
Normal file
24
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x310.rc
Normal 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
|
||||
|
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x363.rc
Normal file
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x363.rc
Normal 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
|
||||
|
27
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x433.rc
Normal file
27
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x433.rc
Normal 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
|
||||
|
115
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-632x371.rc
Normal file
115
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-632x371.rc
Normal 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
|
||||
|
83
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-648x455.rc
Normal file
83
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-648x455.rc
Normal 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
|
||||
|
31
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-766x425.rc
Normal file
31
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-766x425.rc
Normal 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
|
||||
|
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x322.rc
Normal file
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x322.rc
Normal 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
|
||||
|
28
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x733.rc
Normal file
28
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x733.rc
Normal 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
|
||||
|
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x773.rc
Normal file
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x773.rc
Normal 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
|
||||
|
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x789.rc
Normal file
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x789.rc
Normal 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
|
||||
|
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x853.rc
Normal file
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x853.rc
Normal 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
|
||||
|
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x897.rc
Normal file
67
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x897.rc
Normal 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
|
||||
|
59
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-776x785.rc
Normal file
59
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-776x785.rc
Normal 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
|
||||
|
27
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x493.rc
Normal file
27
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x493.rc
Normal 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
|
||||
|
31
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x553.rc
Normal file
31
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x553.rc
Normal 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
|
||||
|
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-796x573.rc
Normal file
16
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-796x573.rc
Normal 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
|
||||
|
35
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-895x522.rc
Normal file
35
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-895x522.rc
Normal 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
|
||||
|
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x392.rc
Normal file
19
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x392.rc
Normal 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
|
||||
|
35
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x412.rc
Normal file
35
EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x412.rc
Normal 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
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user