diff --git a/AdminScripts/Makefile b/AdminScripts/Makefile index b58e5fa..378f956 100644 --- a/AdminScripts/Makefile +++ b/AdminScripts/Makefile @@ -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 diff --git a/AdminScripts/arch-update b/AdminScripts/arch-update deleted file mode 100755 index 74d475f..0000000 --- a/AdminScripts/arch-update +++ /dev/null @@ -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 diff --git a/AdminScripts/netcli b/AdminScripts/netcli deleted file mode 100755 index d164ca3..0000000 --- a/AdminScripts/netcli +++ /dev/null @@ -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 diff --git a/AdminScripts/shadowarch-sync b/AdminScripts/shadowarch-sync deleted file mode 100644 index 1908bb3..0000000 --- a/AdminScripts/shadowarch-sync +++ /dev/null @@ -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 - -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/ diff --git a/EtcFiles/Makefile b/EtcFiles/Makefile index 97fd321..d999c03 100644 --- a/EtcFiles/Makefile +++ b/EtcFiles/Makefile @@ -1,22 +1,20 @@ httpRoot = ${pkgdir}/srv/http/aninix.net httpUser = http -syncList = vimrc bashrc tmux.conf profile pacman.conf -serviceList = tmux@.service ssh-agent@.service -pacmanHooks = mediawiki.hook tt-rss.hook shadowarch.hook +syncList = profile.d tmux.conf +userServiceList = tmux.service ssh-agent.service compile: ./shadowarch @echo Nothing to compile install: compile - mkdir -p ${pkgdir}/opt/aninix/ShadowArch/etc/ - mkdir -p ${pkgdir}/usr/lib/systemd/system - mkdir -p ${pkgdir}/etc/pacman.d/hooks + mkdir -p ${pkgdir}/etc/ + mkdir -p ${pkgdir}/usr/lib/systemd/user mkdir -p ${pkgdir}/usr/share/vim/vimfiles/plugin/ - for i in ${syncList}; do cp "$$i" ${pkgdir}/opt/aninix/ShadowArch/etc/; done - for i in ${serviceList}; do cp "$$i" ${pkgdir}/usr/lib/systemd/system/"$$i"; done - for i in ${pacmanHooks}; do cp "$$i" ${pkgdir}/etc/pacman.d/hooks/"$$i"; done + for i in ${syncList}; do cp -r "$$i" ${pkgdir}/etc/; chmod -R a+r ${pkgdir}/etc/; done + for i in ${userServiceList}; do cp "$$i" ${pkgdir}/usr/lib/systemd/user/"$$i"; done cp ./shadowarch.vim ${pkgdir}/usr/share/vim/vimfiles/plugin/shadowarch.vim - cp -pr ./skel ${pkgdir}/opt/aninix/ShadowArch/etc + cp -pr ./skel ${pkgdir}/etc + if [ `uname -r | grep -c arch` -eq 1 ]; then mkdir -p ${pkgdir}/usr/share/pacman/keyrings; cp aninix.gpg ${pkgdir}/usr/share/pacman/keyrings; fi repository: shadowarch ${httpRoot} cp ./shadowarch ${httpRoot} @@ -27,17 +25,16 @@ checkperm: ${syncList} chown -R root:root ${syncList} for i in ${syncList}; do if [ -f "${i}" ]; then chmod 0644 "${i}"; elif [ -d "${i}" ]; then chmod 0755 "${i}"; fi; done -test: +test: bash -n shadowarch - bash ./shadowarch -h + bash ./shadowarch -h echo Success. reverse: ${httpRoot}/shadowarch ${syncList} cat ${httpRoot}/shadowarch > ./shadowarch for i in ${syncList}; do rsync -avz ${syncList} .; done - for i in ${serviceList}; do rsync -avz ${serviceList} .; done - for i in ${pacmanHooks}; do rsync -avz ${pacmanHooks} .; done - rsync --delete-before -avz ${pkgdir}/opt/aninix/ShadowArch/etc/skel ./skel + for i in ${userServiceList}; do rsync -avz /usr/lib/systemd/user/${userServiceList} .; done + rsync --delete-before -avz ${pkgdir}/etc/skel ./skel clean: @echo Nothing to do. @@ -45,7 +42,7 @@ clean: diff: ${syncList} if [ -f ${httpRoot}/shadowarch ]; then diff ./shadowarch ${httpRoot}/shadowarch; echo; fi for i in ${syncList}; do diff -rc "$$i" ./`echo $$i | rev | cut -f 1 -d '/' | rev`; echo; done - diff -rc ${pkgdir}/opt/aninix/ShadowArch/etc/skel ./skel; printf "" + diff -rc ${pkgdir}/etc/skel ./skel; printf "" find-missing-hooks-in-src: @for i in `wget -q -O - https://aninix.net/foundation/ | grep toplevel-repo | cut -f 4 -d \'`; do if [ -z $$i ]; then continue; fi; for file in `find ../.. -type f -name Makefile | grep $$i`; do if [ -z "$$file" ]; then echo NO MAKEFILE FOR $$i; elif [ `grep -c -i 'hook for systemd' $$file` -eq 0 ]; then echo HOOK MISSING IN: $$file; else echo HOOK FOUND IN: $$file; fi; done; done diff --git a/EtcFiles/mediawiki.hook b/EtcFiles/mediawiki.hook deleted file mode 100644 index 5d1ac1e..0000000 --- a/EtcFiles/mediawiki.hook +++ /dev/null @@ -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 diff --git a/EtcFiles/bashrc b/EtcFiles/profile.d/shadowarch.sh similarity index 83% rename from EtcFiles/bashrc rename to EtcFiles/profile.d/shadowarch.sh index 6ed40be..d1b29b1 100644 --- a/EtcFiles/bashrc +++ b/EtcFiles/profile.d/shadowarch.sh @@ -1,10 +1,3 @@ -# -# /etc/bashrc -# - -# If not running interactively, don't do anything -[[ $- != *i* ]] && return - ### Prompt ### organization="$(echo $HOSTNAME | rev | cut -f 2 -d '.' | rev)" PS1='\[\033[00;31m\][ \[\033[01;32m\]\u\[\033[00;31m\]@\H:${SHELL} {\[\033[m\]$? \[\033[00;36m\]\D{%F-%R} \[\033[00;35m\]\w\[\033[00;31m\]\[\033[00;31m\]\[\033[00;33m\]$(git_prompt_var)\[\033[00;31m\]} ]\n|\[\033[m\]> ' @@ -24,9 +17,60 @@ alias weechat="TERM=screen weechat" # Disable bracketed paste mode printf "\e[?2004l" +# systemctl --user +export XDG_RUNTIME_DIR=/run/user/$UID + ### MOTD ### [ -f /etc/bash.motd ] && cat /etc/bash.motd +### SSH ### +# Tell shell about ssh-agent -- enable with 'systemctl enable ssh-agent@$USER.service' +export SSH_AGENT_PID="$(pgrep -fu "$USER" ssh-agent)" +if [ -n "$SSH_AGENT_PID" ]; then + export SSH_AUTH_SOCK="$(ls -ld /tmp/ssh-*/agent.* | grep -m 1 "$USER" | awk '{ print $9; }')" + echo ssh-agent PID is $SSH_AGENT_PID +fi +if [ -n "$SSH_AUTH_SOCK" ] && [ `ssh-add -L | grep -c no\ identities` -eq 1 ]; then + ssh-add + ssh-add -L +fi +### GIT ### +source /usr/share/git/completion/git-prompt.sh + +function git_prompt_var() { + ### If $PWD is a Git repo, add URL and branch to PS1 + url=`git config remote.origin.url 2>/dev/null` + if [ -n "$url" ]; then + branch=`__git_ps1 '%s'` + url=`basename "$url"` + echo " $url($branch)" + fi +} + +### User-directory .gitbare Support (Git) ### +if [ -d ~/.git ]; then + cd + printf "~/.git: " + if [ $SHLVL -eq 1 ] && [ -z "$TMUX" ]; then + git pull + else + git rev-parse --short HEAD + fi + git status +fi +### GPG ### +export GPG_TTY=$(tty) + +# GPG Key Agent +# Credit: https://wiki.archlinux.org/index.php/GnuPG +if [ `pgrep -afc -u $USER gpg-agent` -lt 1 ] && [ -x `which gpg-agent` ]; then + gpg-agent --daemon 2>&1 | grep -v another +fi + + +### Ansible ### +export ANSIBLE_VAULT_PASSWORD_FILE=$HOME/password-store/${organization}.vault.password +export ANSIBLE_VAULT_FILE=$HOME/password-store/${organization}.vault ### AniNIX Customizations ### alias get-commands='for i in $( echo $PATH | sed "s/:/\n/g"); do ls $i; done | sort | less' alias whoison='who | grep -v tmux' @@ -47,60 +91,18 @@ alias vi=vim alias view="vim -R" alias top="top -o %CPU" alias make-entrypoints="egrep '^[a-zA-Z0-9\-]*:' Makefile" +alias rdns="dig +short -x " +alias dns="dig +short " +export WEECHAT_HOME=$HOME/.weechat if [ -x `which torsocks 2>/dev/null` ] && [ `systemctl status tor 2>/dev/null| grep -c running` -eq 1 ]; then - alias tor-lynx="torsocks lynx https://check.torproject.org/"; + alias tor-lynx="torsocks lynx https://check.torproject.org/"; fi IFS=" " - -### GIT ### -source /usr/share/git/completion/git-prompt.sh - -function git_prompt_var() { - ### If $PWD is a Git repo, add URL and branch to PS1 - url=`git config remote.origin.url 2>/dev/null` - if [ -n "$url" ]; then - branch=`__git_ps1 '%s'` - url=`basename "$url"` - echo " $url($branch)" - fi -} - -### SSH ### -# Tell shell about ssh-agent -- enable with 'systemctl enable ssh-agent@$USER.service' -export SSH_AGENT_PID="$(pgrep -fu "$USER" ssh-agent)" -if [ -n "$SSH_AGENT_PID" ]; then - export SSH_AUTH_SOCK="$(ls -ld /tmp/ssh-*/agent.* | grep -m 1 "$USER" | awk '{ print $9; }')" - echo ssh-agent PID is $SSH_AGENT_PID -fi -if [ -n "$SSH_AUTH_SOCK" ] && [ `ssh-add -L | grep -c no\ identities` -eq 1 ]; then - ssh-add - ssh-add -L -fi - -### GPG ### -export GPG_TTY=$(tty) - -### Ansible ### -export ANSIBLE_VAULT_PASSWORD_FILE=$HOME/password-store/${organization}.vault.password -export ANSIBLE_VAULT_FILE=$HOME/password-store/${organization}.vault - -# ### User-directory .gitbare Support (Git) ### -# if [ -d ~/.git ]; then -# cd -# printf "~/.git: " -# if [ $SHLVL -eq 1 ] && [ -z "$TMUX" ]; then -# git pull -# else -# git rev-parse --short HEAD -# fi -# git status -# fi -# # Set up screen/tmux safety nest by default for remote sessions -if [ -n "$SSH_CLIENT" ]; then +if [ -n "$SSH_CLIENT" ]; then # Prefer tmux - if [ -x "$(which tmux 2>/dev/null)" ] && [ -z "$TMUX" ]; then + if [ -x "$(which tmux 2>/dev/null)" ] && [ -z "$TMUX" ]; then if [ `tmux list-sessions | grep created | wc -l` -eq 0 ]; then exec tmux elif [ `tmux list-sessions | grep created | wc -l` -eq 1 ] && [ `tmux list-sessions | grep attached | wc -l` -eq 0 ]; then diff --git a/EtcFiles/shadowarch.hook b/EtcFiles/shadowarch.hook deleted file mode 100644 index bf95a1a..0000000 --- a/EtcFiles/shadowarch.hook +++ /dev/null @@ -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 diff --git a/EtcFiles/skel/.bash_logout b/EtcFiles/skel/.bash_logout deleted file mode 100644 index 0e4e4f1..0000000 --- a/EtcFiles/skel/.bash_logout +++ /dev/null @@ -1,3 +0,0 @@ -# -# ~/.bash_logout -# diff --git a/EtcFiles/skel/.bash_profile b/EtcFiles/skel/.bash_profile deleted file mode 100644 index 5545f00..0000000 --- a/EtcFiles/skel/.bash_profile +++ /dev/null @@ -1,5 +0,0 @@ -# -# ~/.bash_profile -# - -[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/EtcFiles/skel/.bashrc b/EtcFiles/skel/.bashrc deleted file mode 100644 index 032b24b..0000000 --- a/EtcFiles/skel/.bashrc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc deleted file mode 100644 index e8e3d99..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc deleted file mode 100644 index 3d917fa..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc deleted file mode 100644 index 7cb117d..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc deleted file mode 100644 index 2e36814..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc deleted file mode 100644 index 220c4f6..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc deleted file mode 100644 index d4e80b4..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc deleted file mode 100644 index 5539e28..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc deleted file mode 100644 index 8b7a642..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc deleted file mode 100644 index 343e187..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc deleted file mode 100644 index 343e187..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc deleted file mode 100644 index 77a2e1f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc deleted file mode 100644 index f55208c..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc deleted file mode 100644 index f773318..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc deleted file mode 100644 index f1761fe..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc deleted file mode 100644 index 8fc7a01..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc deleted file mode 100644 index d4e80b4..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc deleted file mode 100644 index a3926df..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc deleted file mode 100644 index 2364b19..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc deleted file mode 100644 index ba12281..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc deleted file mode 100644 index 8f30c44..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc deleted file mode 100644 index 995e86f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc deleted file mode 100644 index 5e37476..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc deleted file mode 100644 index 04f598b..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc deleted file mode 100644 index 4b88ca2..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc deleted file mode 100644 index 59c2899..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc deleted file mode 100644 index 518321e..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc deleted file mode 100644 index 173e9de..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc deleted file mode 100644 index 8b7a642..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc deleted file mode 100644 index 729bb41..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc deleted file mode 100644 index 72ba000..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc deleted file mode 100644 index 0ae2972..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc deleted file mode 100644 index 2b30a8d..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc deleted file mode 100644 index e4b3ad0..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc deleted file mode 100644 index 1e4022d..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc deleted file mode 100644 index e742328..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc deleted file mode 100644 index 4bdf29b..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc deleted file mode 100644 index ba12281..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc deleted file mode 100644 index 4ea8413..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc deleted file mode 100644 index b475114..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc deleted file mode 100644 index 66bddc6..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc deleted file mode 100644 index 28fdeb6..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc deleted file mode 100644 index 477f0b7..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc deleted file mode 100644 index 942531e..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc deleted file mode 100644 index b5f5815..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc deleted file mode 100644 index 6f4567c..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc deleted file mode 100644 index 927e618..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc deleted file mode 100644 index 397fbfe..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc deleted file mode 100644 index 31a0948..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc deleted file mode 100644 index e01e43e..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc deleted file mode 100644 index 33e4d09..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc deleted file mode 100644 index 5b663e5..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc deleted file mode 100644 index 995e86f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc deleted file mode 100644 index 8290ad8..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc deleted file mode 100644 index f6cf99f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc deleted file mode 100644 index 8f30c44..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc deleted file mode 100644 index 11b208f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-608x897.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-608x897.rc deleted file mode 100644 index 8b7a642..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-608x897.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x691.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x691.rc deleted file mode 100644 index 77a2e1f..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x691.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x693.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x693.rc deleted file mode 100644 index 5539e28..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-612x693.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-623x593.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-623x593.rc deleted file mode 100644 index f5468fe..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-623x593.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x22.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x22.rc deleted file mode 100644 index ebaa0fb..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x22.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x232.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x232.rc deleted file mode 100644 index 30ec652..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x232.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x310.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x310.rc deleted file mode 100644 index e855cda..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x310.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x363.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x363.rc deleted file mode 100644 index 144f34e..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x363.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x433.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x433.rc deleted file mode 100644 index e70e52a..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-624x433.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-632x371.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-632x371.rc deleted file mode 100644 index 16ed3c1..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-632x371.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-648x455.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-648x455.rc deleted file mode 100644 index 0e76837..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-648x455.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-766x425.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-766x425.rc deleted file mode 100644 index 8316001..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-766x425.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x322.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x322.rc deleted file mode 100644 index 5539e28..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x322.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x733.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x733.rc deleted file mode 100644 index 855c195..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x733.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x773.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x773.rc deleted file mode 100644 index aeedbec..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x773.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x789.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x789.rc deleted file mode 100644 index ca14f1b..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x789.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x853.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x853.rc deleted file mode 100644 index 7f3e544..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x853.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x897.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x897.rc deleted file mode 100644 index 59c2899..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-768x897.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-776x785.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-776x785.rc deleted file mode 100644 index 0ae2972..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-776x785.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x493.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x493.rc deleted file mode 100644 index 2a8f364..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x493.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x553.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x553.rc deleted file mode 100644 index 343e187..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-784x553.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-796x573.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-796x573.rc deleted file mode 100644 index 477f0b7..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-796x573.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-895x522.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-895x522.rc deleted file mode 100644 index 2b1ea02..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-895x522.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x392.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x392.rc deleted file mode 100644 index 5539e28..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x392.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x412.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x412.rc deleted file mode 100644 index 7f7566e..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x412.rc +++ /dev/null @@ -1,35 +0,0 @@ -[xfdesktop-version-4.10.3+-rcfile_format] -4.10.3+=true - -[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] -row=2 -col=1 - -[/root/Desktop/Maroon 5] -row=1 -col=1 - -[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] -row=0 -col=1 - -[1c0130aa-ee56-409b-917f-5f24e453848a] -row=3 -col=1 - -[2015-10-01-17-08-02-00] -row=0 -col=0 - -[Trash] -row=2 -col=0 - -[/] -row=3 -col=0 - -[/root] -row=1 -col=0 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x629.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x629.rc deleted file mode 100644 index 44bf642..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x629.rc +++ /dev/null @@ -1,67 +0,0 @@ -[xfdesktop-version-4.10.3+-rcfile_format] -4.10.3+=true - -[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] -row=5 -col=1 - -[/root/Desktop/Maroon 5] -row=3 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] -row=7 -col=1 - -[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] -row=6 -col=1 - -[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] -row=0 -col=1 - -[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] -row=5 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] -row=1 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] -row=7 -col=0 - -[/root/Desktop/The Americans - Season 2 Complete-ChameE] -row=6 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] -row=4 -col=0 - -[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] -row=4 -col=1 - -[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] -row=2 -col=1 - -[2015-03-02-14-24-20-00] -row=0 -col=0 - -[Trash] -row=1 -col=0 - -[/] -row=2 -col=0 - -[/root] -row=3 -col=0 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x678.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x678.rc deleted file mode 100644 index aa471be..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x678.rc +++ /dev/null @@ -1,67 +0,0 @@ -[xfdesktop-version-4.10.3+-rcfile_format] -4.10.3+=true - -[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] -row=1 -col=0 - -[/root/Desktop/Maroon 5] -row=4 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] -row=0 -col=1 - -[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] -row=1 -col=1 - -[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] -row=6 -col=0 - -[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] -row=3 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] -row=4 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] -row=6 -col=1 - -[/root/Desktop/The Americans - Season 2 Complete-ChameE] -row=2 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] -row=5 -col=1 - -[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] -row=8 -col=0 - -[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] -row=7 -col=0 - -[2015-03-02-14-24-20-00] -row=0 -col=0 - -[Trash] -row=3 -col=0 - -[/] -row=5 -col=0 - -[/root] -row=2 -col=0 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x913.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x913.rc deleted file mode 100644 index fa63a04..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-928x913.rc +++ /dev/null @@ -1,79 +0,0 @@ -[xfdesktop-version-4.10.3+-rcfile_format] -4.10.3+=true - -[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] -row=8 -col=0 - -[/root/Desktop/Maroon 5] -row=2 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] -row=0 -col=1 - -[/root/Desktop/twd13.mp4] -row=3 -col=2 - -[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] -row=0 -col=0 - -[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] -row=6 -col=0 - -[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] -row=1 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] -row=6 -col=1 - -[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] -row=1 -col=2 - -[/root/Desktop/twd12.mp4] -row=4 -col=2 - -[/root/Desktop/The Americans - Season 2 Complete-ChameE] -row=2 -col=1 - -[/root/Desktop/The Walking Dead S05E15] -row=5 -col=0 - -[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] -row=5 -col=1 - -[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] -row=4 -col=0 - -[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] -row=7 -col=0 - -[2015-03-16-17-37-09-00] -row=3 -col=0 - -[Trash] -row=1 -col=3 - -[/] -row=2 -col=3 - -[/root] -row=3 -col=3 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-936x921.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-936x921.rc deleted file mode 100644 index 0ae2972..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-936x921.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-943x627.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-943x627.rc deleted file mode 100644 index 4b88ca2..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-943x627.rc +++ /dev/null @@ -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 - diff --git a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-978x363.rc b/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-978x363.rc deleted file mode 100644 index b3b4a82..0000000 --- a/EtcFiles/skel/.config/xfce4/desktop/icons.screen0-978x363.rc +++ /dev/null @@ -1,24 +0,0 @@ -[Maroon 5] -row=1 -col=0 - -[Kenny Chesney] -row=0 -col=0 - -[FIREFLY_D3] -row=0 -col=1 - -[Trash] -row=1 -col=1 - -[File System] -row=0 -col=2 - -[Home] -row=1 -col=2 - diff --git a/EtcFiles/ssh-agent@.service b/EtcFiles/ssh-agent.service similarity index 78% rename from EtcFiles/ssh-agent@.service rename to EtcFiles/ssh-agent.service index 7e63c02..8dcc339 100644 --- a/EtcFiles/ssh-agent@.service +++ b/EtcFiles/ssh-agent.service @@ -1,5 +1,5 @@ [Unit] -Description=SSH-Agent for User %I +Description=SSH-Agent for User %u After=network.target shadow.service [Service] @@ -7,8 +7,6 @@ ExecStart=/usr/bin/ssh-agent -s ExecReload=/bin/kill -HUP $MAINPID Type=oneshot KillMode=process -User=%I -Group=%I [Install] WantedBy=multi-user.target diff --git a/EtcFiles/tmux@.service b/EtcFiles/tmux.service similarity index 79% rename from EtcFiles/tmux@.service rename to EtcFiles/tmux.service index 0da481d..61cb33e 100644 --- a/EtcFiles/tmux@.service +++ b/EtcFiles/tmux.service @@ -3,15 +3,13 @@ Description=TMUX/Weechat Session for User %I After=network.target shadow.service [Service] -Environment=HOME=/home/%I -WorkingDirectory=/home/%I +Environment=HOME=/home/%u +WorkingDirectory=/home/%u ExecStart=/usr/bin/tmux new-session -d -s IRC "weechat" ExecReload=/bin/kill -HUP $MAINPID KillMode=process Restart=no Type=oneshot -User=%I -Group=%I [Install] WantedBy=multi-user.target diff --git a/EtcFiles/tt-rss.hook b/EtcFiles/tt-rss.hook deleted file mode 100644 index 3803620..0000000 --- a/EtcFiles/tt-rss.hook +++ /dev/null @@ -1,10 +0,0 @@ -[Trigger] -Operation = Install -Operation = Upgrade -Type = Package -Target = tt-rss - -[Action] -Description = Updating TT-RSS Database -When = PostTransaction -Exec = echo yes | /usr/bin/runuser -u http -- /usr/bin/php /usr/share/webapps/tt-rss/update.php --update-schema diff --git a/EtcFiles/vimrc b/EtcFiles/vimrc deleted file mode 100644 index 5e61be8..0000000 --- a/EtcFiles/vimrc +++ /dev/null @@ -1,32 +0,0 @@ -" All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just -" /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime -" you can find below. If you wish to change any of those settings, you should -" do it in this file (/etc/vimrc), since archlinux.vim will be overwritten -" everytime an upgrade of the vim packages is performed. It is recommended to -" make changes after sourcing archlinux.vim since it alters the value of the -" 'compatible' option. - -" This line should not be removed as it ensures that various options are -" properly set to work with the Vim-related packages. -runtime! archlinux.vim - -" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim' -" Or better yet, read /usr/share/vim/vim74/vimrc_example.vim or the vim manual -" and configure vim to your own liking! -syntax on -filetype on -" Support CSharp files like Java -au BufNewFile,BufRead *.csharp set filetype=java -au BufNewFile,BufRead *.cs set filetype=java -set number -set mouse-=a -colorscheme desert - -" This establishes the indenting policy. -filetype plugin indent on -" show existing tab with 4 spaces width -set tabstop=4 -" when indenting with '>', use 4 spaces width -set shiftwidth=4 -" On pressing tab, insert 4 spaces -set expandtab diff --git a/Makefile b/Makefile index 984b769..5ca3666 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,6 @@ compile: ${LIST} for i in ${LIST}; do make -C ./$$i; done install: compile - mkdir -p ${pkgdir}/usr/share/pacman/keyrings - cp EtcFiles/aninix.gpg ${pkgdir}/usr/share/pacman/keyrings for i in ${LIST}; do make -C ./$$i install; done reverse: diff --git a/PKGBUILD b/PKGBUILD index c3a0e68..680978d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -depends=('curl' 'grep' 'bash>=4.4' 'git>=2.13' 'elinks') +depends=('curl' 'grep' 'bash>=4.4' 'git>=2.13' 'elinks' 'openssh' 'tmux' 'gnupg' 'procps-ng') makedepends=('make>=4.2') checkdepends=() optdepends=() @@ -19,7 +19,7 @@ conflicts=() replaces=("${pkgname,,}" "aninix-${pkgname,,}") backup=() options=() -install= +install=$pkgname.install changelog= source=() noextract=() diff --git a/ShadowArch.install b/ShadowArch.install new file mode 100644 index 0000000..56a7e5f --- /dev/null +++ b/ShadowArch.install @@ -0,0 +1,12 @@ +post_upgrade() { + if usr/bin/pacman-key -l >/dev/null 2>&1; then + usr/bin/pacman-key --populate aninix + usr/bin/pacman-key --updatedb + fi +} + +post_install() { + if [ -x usr/bin/pacman-key ]; then + post_upgrade + fi +} diff --git a/UserScripts/Makefile b/UserScripts/Makefile index 950cdde..ffd63ce 100644 --- a/UserScripts/Makefile +++ b/UserScripts/Makefile @@ -1,4 +1,4 @@ -LIST=bell bigorlittle compare-directories compress-all diff-args expand-all failcount logged-shell standardize-folder sysinfo whatismyip worktrack +LIST=bell bigorlittle compare-directories compress-all diff-args expand-all failcount home-git logged-shell src-maintenance sslinfo standardize-folder sysinfo whatismyip worktrack LOCATION=${pkgdir}/usr/local/bin PERMISSION=0755 compile: diff --git a/UserScripts/home-git b/UserScripts/home-git new file mode 100755 index 0000000..384047e --- /dev/null +++ b/UserScripts/home-git @@ -0,0 +1,114 @@ +#!/bin/bash + +# File: home-git +# +# Description: This file allows scripted support for user support repositories in a Git instance. +# https://aninix.net/AniNIX/Wiki/src/branch/main/Articles/User_Support_Repositories.md +# +# Package: AniNIX/ShadowArch +# Copyright: WTFPL +# +# Author: DarkFeather + +function InitializeGitIgnore() { + ### Seed the .gitignore + + cat > ~/.gitignore < + +source /opt/aninix/Uniglot/Bash/header +conffile="$HOME/.$(basename "$0").conf" +unset noconfirm +mkdir -p $HOME/src + +function usage() { + ### Write the usage + ### param retcode: the return code + retcode="$1" + echo "Usage: $0 # List the state of clones by default" + echo " $0 -h # Helptext" + echo " $0 -c # Clone everything in the conf file." + echo " $0 -r # Remove the spurious clones" + echo " $0 -w # Helptext" + echo "Add -v to increase verbosity." + echo "Add -y to skip confirmations." + exit $retcode +} + +function cloneList() { + ### git-clone all the tracked repos. + cat "$conffile" | while read line; do + dir="$(echo "$line" | cut -f 1 -d ' ')" + gitrepo="$(echo "$line" | cut -f 2 -d ' ')" + cd $HOME + mkdir -p "$(dirname "$dir")" + if [ ! -d "$dir" ]; then + git clone "$gitrepo" "$dir" + else + cd "$dir" + git pull; + fi + done +} + +function writeOutList() { + ### Write out the list of clones + cd $HOME + for clone in `find . -type d -name .git | sed 's/\.git$//'`; do + cd "$clone" + printf "$(echo "$clone" | sed 's#^\.\/##' | sed 's/\/$//') " + git config remote.origin.url + cd $HOME + done | sort | uniq | egrep -iv 'aninix|gitea@localhost|/srv/foundation|homedir' > "$conffile" + exit $? +} + +### Main +if [[ "$(basename "$0")" == "src-maintenance" ]]; then + while getopts 'chrwv' OPTION; do + case "$OPTION" in + c) cloneList; ;; + h) echo This tool simplifies clone maintenance; usage 0 ;; + w) writeOutList ;; + v) set -x ;; + y) noconfirm=1 ;; + *) usage 1 ;; + esac + done +fi diff --git a/UserScripts/sslinfo b/UserScripts/sslinfo new file mode 100755 index 0000000..b85feb5 --- /dev/null +++ b/UserScripts/sslinfo @@ -0,0 +1,93 @@ +#!/bin/bash + +# File: sslinfo +# +# Description: This file takes an SSL file and prints +# useful human-readable information about it. +# +# Package: AniNIX/ShadowArch +# Copyright: WTFPL +# +# Author: DarkFeather + +# Sanity checks +set -Eeo pipefail + +# Default variables +port=443 +option="-text" +unset dump +unset host +unset modulus +unset machinereadable +unset showserial +regex='Subject:|Subject Alt|Issuer:|Not |DNS:|IP Addr|Signature Algorithm' + +# Show Usage +function Usage() { + echo "Usage: $0 [ -p port ] [ -r regex | -a | -s ] -t TARGET" + echo " $0 -V" + echo " $0 -h" + echo + echo "Adding -m will make it machine readable, and -v will increase verbosity." + echo "The -a will show all output." + echo "The -s will show the serial for the certificate." + echo "The -h will show helptext." + echo "The -V option will show version" + echo "TARGET can be a hostname, request, or certificate." +} + +# Translate output into CSV format. +function machineReadable() { + egrep 'After|DNS|Subject:' | sed 's/^\s\+//' | sed 's/Not After : //' | sed 's/Subject: //' | sed 's/DNS://g' | tr '\n' ',' + echo +} + +# Parse user options +while getopts 'aDhmMp:r:st:vV' OPTION; do + case "$OPTION" in + a) regex="*" ;; + D) dump=1 ;; + h) echo Display useful information in a concise format about an SSL object.; Usage; exit 0 ;; + m) machinereadable=1 ;; + M) modulus=1 ; option="-modulus" ;; + p) port="${OPTARG}" ;; + r) regex="${OPTARG}" ;; + s) showserial=1 ; option="-serial" ;; + t) host="${OPTARG}" ;; + v) set -x ;; + V) Version ;; + *) Usage; exit 1 ;; + esac +done + +# Make sure some argument is set. +if [ -z "$host" ] ; then + echo Need a target. + Usage + exit 1; +fi + +# Pass it all through OpenSSL +# 1. Get the object +(if [ -f "$host" ]; then + if [ `grep -c REQUEST "$host"` -gt 1 ]; then + openssl req -noout -in "$host" $option + elif [ `grep -c RSA\ PRIVATE\ KEY "$host"` -gt 1 ]; then + openssl rsa -noout -in "$host" $option + elif [ `grep -c CERTIFICATE "$host"` -gt 1 ]; then + openssl x509 -noout -in "$host" $option + fi + else + echo | openssl s_client -connect "$host":"$port" 2>&1 | if [ -z "$dump" ]; then openssl x509 -noout $option; fi + fi) \ + | (if [ -n "$modulus" ]; then + cat; +elif [ -n "$showserial" ]; then + sed 's/^serial=//' +elif [ -n "$dump" ]; then # 2. Parse the object. + grep -A 99 BEGIN\ CERTIFICATE +else + egrep -i "$regex" +fi) \ + | (if [ -z "$machinereadable" ]; then cat; else machineReadable; fi)