diff --git a/Admin/Makefile b/Admin/Makefile index 71df091..b2bb5fb 100644 --- a/Admin/Makefile +++ b/Admin/Makefile @@ -5,6 +5,7 @@ compile: @echo Nothing to compile. install: compile + mkdir -p ${LOCATION}; for i in ${LIST}; do cp ./$$i ${LOCATION}; done make checkperm diff --git a/ShadowArch/Makefile b/ShadowArch/Makefile index a237336..115e5b2 100644 --- a/ShadowArch/Makefile +++ b/ShadowArch/Makefile @@ -1,25 +1,33 @@ HTTPROOT = /srv/http/aninix.net HTTPUSER = http +SYNCLIST = /etc/vimrc /etc/bash.bashrc /etc/skel /etc/tmux.conf compile: @echo Nothing to do. -install: script webpresent checkperm - cp ./shadowarch-tar-gen /root/bin - /root/bin/shadowarch-tar-gen +install: + cp ./vimrc /etc/vimrc + cp bash.bashrc /etc/bash.bashrc + cp -r skel /etc/skel + cp tmux.conf /etc/tmux.conf + +repository: shadowarch cp ./shadowarch ${HTTPROOT} - -checkperm: - chmod 0700 /root/bin/shadowarch-tar-gen - chown root:root /root/bin/shadowarch-tar-gen - chmod 0755 ${HTTPROOT}/shadowarch - chown ${HTTPUSER} ${HTTPROOT}/shadowarch +checkperm: ${SYNCLIST} + if [ -f ${HTTPROOT}/shadowarch ]; then chmod 0755 ${HTTPROOT}/shadowarch; chown ${HTTPUSER} ${HTTPROOT}/shadowarch; fi + chown -R root:root ${SYNCLIST} + for i in ${SYNCLIST}; do if [ -f "${i}" ]; then chmod 0644 "${i}"; elif [ -d "${i}" ]; then chmod 0755 "${i}"; fi; done test: bash -n shadowarch - bash ./shadowarch -h || echo Success. + bash ./shadowarch -h + echo Success. -reverse: ${HTTPROOT}/shadowarch /root/bin/shadowarch-tar-gen - cp ${HTTPROOT}/shadowarch . - cp /root/bin/shadowarch-tar-gen . +reverse: ${HTTPROOT}/shadowarch ${SYNCLIST} + cat ${HTTPROOT}/shadowarch > ./shadowarch + for i in ${SYNCLIST}; do rsync -avz ${SYNCLIST} .; done + +find-missing-hooks-in-src: + @for i in `wget -q -O - https://aninix.net/foundation/ | grep toplevel-repo | cut -f 4 -d \'`; do if [ -z $$i ]; then continue; fi; for file in `find ../.. -type f -name Makefile | grep $$i`; do if [ -z "$$file" ]; then echo NO MAKEFILE FOR $$i; elif [ `grep -c -i 'hook for systemd' $$file` -eq 0 ]; then echo HOOK MISSING IN: $$file; else echo HOOK FOUND IN: $$file; fi; done; done + @for i in `wget -q -O - https://aninix.net/foundation/ | grep toplevel-repo | cut -f 4 -d \'`; do if [ -z $$i ]; then continue; fi; for file in `find ../.. -type f -name Makefile | grep $$i`; do if [ -z "$$file" ]; then echo NO MAKEFILE FOR $$i; elif [ `grep -c useradd $$file` -eq 0 ]; then echo DEPRIV MISSING IN: $$file; else echo DEPRIV FOUND IN: $$file; fi; done; done diff --git a/ShadowArch/bash.bashrc b/ShadowArch/bash.bashrc new file mode 100644 index 0000000..31c8e31 --- /dev/null +++ b/ShadowArch/bash.bashrc @@ -0,0 +1,65 @@ +# +# /etc/bash.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +PS1='\[\033[00;31m\][ AniNIX::\h(\[\033[01;32m\]ShadowArch\[\033[00;31m\]) \[\033[00;36m\]\u \[\033[01;37m\]\d \t \[\033[00;35m\]\w\[\033[00;31m\] ] \n|\[\033[m\]> ' +PS2='> ' +PS3='> ' +PS4='+ ' + +case ${TERM} in + xterm*|rxvt*|Eterm|aterm|kterm|gnome*) + PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"' + + ;; + screen) + PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"' + ;; +esac + +[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion + +[ -f /etc/bash.motd ] && cat /etc/bash.motd + +### AniNIX Customizations ### + +alias get-commands='for i in $( echo $PATH | sed "s/:/\n/g"); do ls $i; done | sort | less' +alias whoison='who | grep -v tmux' +alias startvnc="vncserver -xstartup startxfce4; echo Use \"ssh -L 5901:localhost:5901 $(whoami)@$(hostname)\" to tunnel connections." +alias vi=vim +alias view="vim -R" +alias top="top -o %CPU" +alias make-entrypoints="egrep '^[a-zA-Z0-9\-]*:' Makefile" + +IFS=" +" + +# Irssi +for i in `ls -d ~/.irssi-*`; do + alias `echo $i | cut -f 2 -d '-' | tr '[:upper:]' '[:lower:]'`="irssi --home=$i"; +done + +# Set up screen/tmux safety nest by default. +if [ "$TERM" != "screen" ] && [ -z "$DESKTOP_SESSION" ]; then + if [ -x "$(which tmux 2>/dev/null)" ] && [ -z "$TMUX" ]; then + if [ `tmux list-sessions | grep created | wc -l` -eq 0 ]; then + exec tmux + elif [ `tmux list-sessions | grep created | wc -l` -eq 1 ] && [ `tmux list-sessions | grep attached | wc -l` -eq 0 ]; then + exec tmux a -d -t `tmux list-sessions | grep created | cut -f 1 -d ':'` + fi + alias tat="tmux a -d -t" + elif [ -x "$(which screen 2>/dev/null)" ] && [ "$TERM" != "screen" ]; then + if [ `screen -list | grep -c 'Detached'` -eq 1 ]; then + exec screen -r + elif [ `screen -list | grep -c 'No Sockets found in '` -eq 1 ] && [ "$TERM" != "screen" ]; then + exec /usr/bin/screen /bin/bash + fi + alias sdr="screen -d -r" + fi; +fi + +# Autocompletions are having trouble lately and spawning irssi -- can't find where yet TODO +complete -r diff --git a/ShadowArch/shadowarch b/ShadowArch/shadowarch index 50957d3..c30f94f 100644 --- a/ShadowArch/shadowarch +++ b/ShadowArch/shadowarch @@ -9,15 +9,15 @@ function header () { } function help() { echo Usage: ${0} '[OPTIONS]' - echo '-d DISK -- Use the disk.' - echo '-e -- Encrypt the root partition' - echo '-g -- GUI packages and setup' - echo '-h -- This helptext' - echo '-k -- Kali Linux-like package additions' - echo '-p -- Productivity package additions' - echo '-s -- Create a layout for an AniNIX::Spartacus' - echo '-m -- Skip disk operations and assume storage is mounted on /mnt' - echo '-z -- Try to add all the packages on AniNIX::Core' + echo '\-d DISK -- Use the disk.' + echo '\-e -- Encrypt the root partition' + echo '\-g -- GUI packages and setup' + echo '\-h -- This helptext' + echo '\-k -- Kali Linux-like package additions' + echo '\-p -- Productivity package additions' + echo '\-s -- Create a layout for an AniNIX::Spartacus' + echo '\-m -- Skip disk operations and assume storage is mounted on /mnt' + echo '\-z -- Try to add all the packages on AniNIX::Core' exit 1; } @@ -33,16 +33,15 @@ bootpart=1; rootpart=2; datapart=99; # TODO Add LVM as an argument -while getopts "d:eghkmpsz" OPTION +while getopts "ed:gps" OPTION do case $OPTION in d) disk=${OPTARG} ;; e) encrypt=1 ;; g) gui=1 ;; - h) help ;; k) kali=1 ;; - m) nodiskbuild=1 ;; p) productivity=1; gui=1 ;; + m) nodiskbuild=1 ;; s) spartacus=1 ;; z) kitchensink=1 ;; *) help @@ -190,42 +189,25 @@ echo 'DNSSearch="aninix.net"' >> /mnt/etc/netctl/$interface arch-chroot /mnt systemctl enable netctl arch-chroot /mnt netctl enable $interface -# Set prompt and vimrc for ShadowArch -header Setting ShadowArch customizations. -echo 'PS1="\[\033[00;31m\][ AniNIX::\h(\[\033[01;32m\]ShadowArch\[\033[00;31m\]) \[\033[00;36m\]\u \[\033[01;37m\]\d \t \[\033[00;35m\]\w\[\033[00;31m\] ] \n|\[\033[m\]> "' >> /mnt/etc/bash.bashrc -# TODO Find a way to set the terminal header properly -#for i in $(grep PROMPT_COMMAND /mnt/etc/bash.bashrc); do -# sed -i 's/'"$i"'/PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'"'"'printf "\033]0;AniNIX::%s \134\134 %s in %s\007" "${HOSTNAME%%.*}" "${USER}" "${PWD/#$HOME/\~}"'"'"'/g' /etc/bash.bashrc -#done -sed -i '/PS1=/d' /mnt/etc/skel/.bashrc -cd /mnt/etc/ -wget https://aninix.net/shadowarch.tar -rm -Rf ./skel ./vimrc ./bash.bashrc -tar xvf /mnt/etc/shadowarch.tar -for i in {a..z}; do - cp /mnt/etc/skel/'.'"$i"* /mnt/root -done -rm /mnt/etc/shadowarch.tar -rmdir /mnt/root/skel +# Vim cleanup for SSH mkdir -p /usr/share/vim/vimfiles/plugin printf 'set mouse-=a\n' > /usr/share/vim/vimfiles/plugin/shadowarch.vim ln -sf /etc/skel/.bashrc /mnt/root/.bashrc -# Set hostname -header Set hostname -printf "What is your hostname? AniNIX::" -read hostname -echo "$hostname" > /mnt/etc/hostname - # Clone ConfigPackags from AniNIX::Foundation arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/ConfigPackages arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/MiscScripts + arch-chroot /mnt make -C /usr/local/src/MiscScripts/Shared install arch-chroot /mnt make -C /usr/local/src/MiscScripts/Admin install +arch-chroot /mnt make -C /usr/local/src/MiscScripts/ShadowArch install arch-chroot /mnt git -C /usr/local/src/ clone https://aur.archlinux.org/cower.git arch-chroot /mnt useradd -m depriv +# Hook for Heartbeat +arch-chroot /mnt /bin/bash -c "mkdir /usr/local/etc/Heartbeat/; echo \"ShadowArch ; /bin/bash -c \\\"systemctl status | grep -c 'State: running'\\\" ; 3\" >> /usr/local/etc/Heartbeat/services.list" + # Handle AUR Packages if [ "$kali" -eq 1 ]; then @@ -238,6 +220,9 @@ arch-chroot /mnt passwd arch-chroot /mnt passwd depriv arch-chroot /mnt chown -R depriv:depriv /usr/local/src/ +# Set SSH host keys +arch-chroot /mnt ssh-keygen -A + cp /root/shadowarch /mnt/root/shadowarch.installer."$(date +%F-%R)" if [ "$gui" -eq 1 ]; then @@ -249,6 +234,12 @@ if [ "$gui" -eq 1 ]; then For VMware, look at open-vm-tools" fi +# Set hostname +header Set hostname +printf "What is your hostname? AniNIX::" +read hostname +echo "$hostname" > /mnt/etc/hostname + header Installed ShadowArch\! if [ "$nodiskbuild" -eq 1 ]; then header Remember to run grub-install and set up your bootloader. diff --git a/ShadowArch/shadowarch-tar-gen b/ShadowArch/shadowarch-tar-gen deleted file mode 100755 index 7db967b..0000000 --- a/ShadowArch/shadowarch-tar-gen +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -cd /etc/ -tar cvf /srv/http/aninix.net/shadowarch.tar vimrc skel bash.bashrc diff --git a/ShadowArch/skel/.bash_logout b/ShadowArch/skel/.bash_logout new file mode 100644 index 0000000..0e4e4f1 --- /dev/null +++ b/ShadowArch/skel/.bash_logout @@ -0,0 +1,3 @@ +# +# ~/.bash_logout +# diff --git a/ShadowArch/skel/.bash_profile b/ShadowArch/skel/.bash_profile new file mode 100644 index 0000000..5545f00 --- /dev/null +++ b/ShadowArch/skel/.bash_profile @@ -0,0 +1,5 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/ShadowArch/skel/.bashrc b/ShadowArch/skel/.bashrc new file mode 100644 index 0000000..3f04226 --- /dev/null +++ b/ShadowArch/skel/.bashrc @@ -0,0 +1,17 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# Allow separation so that /usr/local/bin/replicate-ssh-profiles doesn't carry local-only customizations downstream. +if [ -f ~/.bashrc-local ]; then + . ~/.bashrc-local +fi + diff --git a/ShadowArch/skel/.config/autostart/conky.desktop b/ShadowArch/skel/.config/autostart/conky.desktop new file mode 100644 index 0000000..5c66238 --- /dev/null +++ b/ShadowArch/skel/.config/autostart/conky.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=0.9.4 +Type=Application +Name=conky +Comment= +Exec=conky -d +StartupNotify=false +Terminal=false +Hidden=false diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc new file mode 100644 index 0000000..e8e3d99 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x672.rc @@ -0,0 +1,24 @@ +[recommended.sh] +row=5 +col=0 + +[VBOXADDITIONS_4.2.8_83876] +row=4 +col=0 + +[8.6 GB Encrypted] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc new file mode 100644 index 0000000..3d917fa --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1008x721.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[Floppy Disk] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=1 +col=0 + +[/home/cxford] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc new file mode 100644 index 0000000..7cb117d --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1136x817.rc @@ -0,0 +1,23 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc new file mode 100644 index 0000000..2e36814 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1184x653.rc @@ -0,0 +1,63 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/LOST-SINGLES] +row=0 +col=1 + +[/home/cxford/Desktop/fb_albums] +row=1 +col=0 + +[/home/cxford/Desktop/geth-sample-regex] +row=6 +col=0 + +[/home/cxford/Desktop/PLdlSgredEHsK1JR0XKVJaf6JvTWGlcg0p] +row=6 +col=1 + +[/home/cxford/Desktop/imperial-agent] +row=5 +col=1 + +[/home/cxford/Desktop/toSort] +row=3 +col=1 + +[/home/cxford/Desktop/PortTest.class] +row=7 +col=0 + +[/home/cxford/Desktop/aninix-background.jpg] +row=2 +col=1 + +[/home/cxford/Desktop/HomeSearch.xlsx] +row=4 +col=1 + +[/home/cxford/Desktop/sayoc] +row=5 +col=0 + +[/home/cxford/Desktop/LOST-MEDIA] +row=1 +col=1 + +[Floppy Disk] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc new file mode 100644 index 0000000..220c4f6 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x864.rc @@ -0,0 +1,52 @@ +[transfer] +row=0 +col=2 + +[KunjaDraftKnifework.pdf] +row=0 +col=1 + +[defense-3.20.13.txt] +row=1 +col=0 + +[3] +row=1 +col=2 + +[Relocation Estimate Template.xlsx] +row=2 +col=1 + +[Scanned Document.pdf] +row=2 +col=0 + +[blar] +row=0 +col=0 + +[Relocation Estimate Template.ods] +row=1 +col=1 + +[Deadliest Warrior] +row=2 +col=2 + +[VBOXADDITIONS_4.2.16_86992] +row=0 +col=3 + +[Trash] +row=1 +col=3 + +[File System] +row=2 +col=3 + +[Home] +row=0 +col=4 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc new file mode 100644 index 0000000..d4e80b4 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1202x913.rc @@ -0,0 +1,20 @@ +[recommended.sh] +row=4 +col=0 + +[VBOXADDITIONS_4.2.18_88780] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc new file mode 100644 index 0000000..5539e28 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x592.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc new file mode 100644 index 0000000..8b7a642 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1248x749.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=3 +col=0 + +[Trash] +row=0 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc new file mode 100644 index 0000000..343e187 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x608.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc new file mode 100644 index 0000000..343e187 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x673.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc new file mode 100644 index 0000000..77a2e1f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x772.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/home/cxford] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc new file mode 100644 index 0000000..f55208c --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x773.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/Maroon 5] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=9 +col=0 + +[/root/Desktop/twd13.mp4] +row=7 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=8 +col=0 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=0 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=5 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=1 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=7 +col=0 + +[/root/Desktop/The Walking Dead S05E15] +row=6 +col=1 + +[/root/Desktop/twd12.mp4] +row=8 +col=1 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=6 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=9 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=1 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=2 +col=1 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc new file mode 100644 index 0000000..f773318 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x906.rc @@ -0,0 +1,16 @@ +[VBOXADDITIONS_4.3.6_91406] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[File System] +row=2 +col=0 + +[Home] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc new file mode 100644 index 0000000..f1761fe --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x909.rc @@ -0,0 +1,16 @@ +[Furious 6 (2013)] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc new file mode 100644 index 0000000..8fc7a01 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x913.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=1 + +[/root/Desktop/Maroon 5] +row=0 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=2 +col=1 + +[/root/Desktop/twd13.mp4] +row=10 +col=0 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=3 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=0 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=6 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=6 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=4 +col=1 + +[/root/Desktop/The Walking Dead S05E15] +row=9 +col=0 + +[/root/Desktop/twd12.mp4] +row=11 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=0 +col=2 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=8 +col=0 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=3 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=5 +col=0 + +[2015-03-16-17-37-09-00] +row=7 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc new file mode 100644 index 0000000..d4e80b4 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x944.rc @@ -0,0 +1,20 @@ +[recommended.sh] +row=4 +col=0 + +[VBOXADDITIONS_4.2.18_88780] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc new file mode 100644 index 0000000..a3926df --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1264x977.rc @@ -0,0 +1,35 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/ChristmasCard.jpg] +row=6 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=7 +col=0 + +[2015-10-01-17-08-02-00] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=1 +col=0 + +[/root] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc new file mode 100644 index 0000000..2364b19 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1315x666.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=3 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=1 +col=2 + +[/root/Desktop/The Walking Dead S05E15] +row=6 +col=1 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=0 +col=2 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc new file mode 100644 index 0000000..ba12281 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1424x793.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[Floppy Disk] +row=4 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc new file mode 100644 index 0000000..8f30c44 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1514x724.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=5 +col=0 + +[Kenny Chesney] +row=4 +col=0 + +[NVWONND1] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc new file mode 100644 index 0000000..995e86f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1520x817.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc new file mode 100644 index 0000000..5e37476 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1566x771.rc @@ -0,0 +1,16 @@ +[Maroon 5] +row=5 +col=0 + +[Trash] +row=1 +col=0 + +[File System] +row=2 +col=0 + +[Home] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc new file mode 100644 index 0000000..04f598b --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x352.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=0 +col=0 + +[Kenny Chesney] +row=1 +col=0 + +[NVWONND1] +row=2 +col=0 + +[Trash] +row=1 +col=3 + +[File System] +row=2 +col=3 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc new file mode 100644 index 0000000..4b88ca2 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x615.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=3 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=0 +col=2 + +[/root/Desktop/The Walking Dead S05E15] +row=6 +col=1 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=1 +col=2 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc new file mode 100644 index 0000000..59c2899 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x755.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=9 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=8 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-02-14-24-20-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc new file mode 100644 index 0000000..518321e --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x773.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=3 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=9 +col=0 + +[/root/Desktop/The Walking Dead S05E15] +row=8 +col=0 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-16-17-37-09-00] +row=6 +col=1 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc new file mode 100644 index 0000000..173e9de --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1568x897.rc @@ -0,0 +1,32 @@ +[Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv.part] +row=6 +col=0 + +[Maroon 5] +row=0 +col=0 + +[A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=0 + +[Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=5 +col=0 + +[VBOXADDITIONS_4.3.18_96516] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=3 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc new file mode 100644 index 0000000..8b7a642 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x749.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=3 +col=0 + +[Trash] +row=0 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc new file mode 100644 index 0000000..729bb41 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x788.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc new file mode 100644 index 0000000..72ba000 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x789.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=0 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=1 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=2 +col=1 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=4 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=6 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=2 +col=0 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=3 +col=1 + +[2015-05-13-16-15-47-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc new file mode 100644 index 0000000..0ae2972 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x793.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=2 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=3 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=0 +col=1 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=3 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=5 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=1 +col=1 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=4 +col=0 + +[2015-05-13-16-15-47-00] +row=6 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc new file mode 100644 index 0000000..2b30a8d --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x853.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=0 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=1 +col=1 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc new file mode 100644 index 0000000..e4b3ad0 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x913.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=3 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=9 +col=0 + +[/root/Desktop/The Walking Dead S05E15] +row=10 +col=0 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=8 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc new file mode 100644 index 0000000..1e4022d --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1584x977.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=2 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=3 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=0 +col=1 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=6 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=5 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=1 +col=1 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=4 +col=0 + +[2015-05-13-16-15-47-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=1 +col=0 + +[/home/cxford] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x653.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x687.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x750.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x775.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x779.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x852.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x906.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x940.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1658x942.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc new file mode 100644 index 0000000..e742328 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x1003.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc new file mode 100644 index 0000000..4bdf29b --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x939.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=1 +col=0 + +[2015-05-13-16-15-47-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc new file mode 100644 index 0000000..ba12281 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x943.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[Floppy Disk] +row=4 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc new file mode 100644 index 0000000..4ea8413 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1664x974.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[Floppy Disk] +row=4 +col=0 + +[Trash] +row=0 +col=0 + +[/] +row=2 +col=0 + +[/home/cxford] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc new file mode 100644 index 0000000..b475114 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x403.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc new file mode 100644 index 0000000..66bddc6 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x573.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=0 +col=3 + +[Trash] +row=0 +col=2 + +[File System] +row=0 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc new file mode 100644 index 0000000..28fdeb6 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x707.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=3 +col=0 + +[Kenny Chesney] +row=0 +col=0 + +[FIREFLY_D1] +row=4 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc new file mode 100644 index 0000000..477f0b7 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x801.rc @@ -0,0 +1,16 @@ +[VBOXADDITIONS_4.3.6_91406] +row=4 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc new file mode 100644 index 0000000..942531e --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1888x858.rc @@ -0,0 +1,35 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/ChristmasCard.jpg] +row=6 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=7 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc new file mode 100644 index 0000000..b5f5815 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1033.rc @@ -0,0 +1,63 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/LOST-SINGLES] +row=8 +col=0 + +[/home/cxford/Desktop/fb_albums] +row=3 +col=0 + +[/home/cxford/Desktop/geth-sample-regex] +row=6 +col=0 + +[/home/cxford/Desktop/PLdlSgredEHsK1JR0XKVJaf6JvTWGlcg0p] +row=1 +col=1 + +[/home/cxford/Desktop/imperial-agent] +row=0 +col=1 + +[/home/cxford/Desktop/toSort] +row=11 +col=0 + +[/home/cxford/Desktop/PortTest.class] +row=7 +col=0 + +[/home/cxford/Desktop/aninix-background.jpg] +row=10 +col=0 + +[/home/cxford/Desktop/HomeSearch.xlsx] +row=12 +col=0 + +[/home/cxford/Desktop/sayoc] +row=5 +col=0 + +[/home/cxford/Desktop/LOST-MEDIA] +row=9 +col=0 + +[Floppy Disk] +row=4 +col=0 + +[Trash] +row=0 +col=0 + +[/] +row=2 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc new file mode 100644 index 0000000..6f4567c --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x1064.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[2015-10-01-17-08-02-00] +row=3 +col=0 + +[Trash] +row=0 +col=0 + +[/] +row=1 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc new file mode 100644 index 0000000..927e618 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x928.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=6 +col=1 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=5 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc new file mode 100644 index 0000000..397fbfe --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x929.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=0 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=1 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=10 +col=0 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=3 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=5 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=11 +col=0 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=4 +col=0 + +[2015-05-13-16-15-47-00] +row=6 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc new file mode 100644 index 0000000..31a0948 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x964.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=0 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=1 +col=1 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc new file mode 100644 index 0000000..e01e43e --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x965.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=0 +col=0 + +[Kenny Chesney] +row=3 +col=0 + +[FIREFLY_D3] +row=0 +col=2 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc new file mode 100644 index 0000000..33e4d09 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x968.rc @@ -0,0 +1,35 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/ChristmasCard.jpg] +row=6 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=7 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc new file mode 100644 index 0000000..5b663e5 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-1904x969.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=0 +col=1 + +[Kenny Chesney] +row=0 +col=0 + +[FIREFLY_D3] +row=0 +col=2 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc new file mode 100644 index 0000000..995e86f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1173.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc new file mode 100644 index 0000000..8290ad8 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-2384x1303.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=5 +col=0 + +[Trash] +row=0 +col=0 + +[/] +row=1 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc new file mode 100644 index 0000000..f6cf99f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-3504x1033.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=3 +col=0 + +[Kenny Chesney] +row=5 +col=0 + +[NVWONND1] +row=0 +col=1 + +[Trash] +row=1 +col=0 + +[File System] +row=2 +col=0 + +[Home] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc new file mode 100644 index 0000000..8f30c44 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5086x607.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=5 +col=0 + +[Kenny Chesney] +row=4 +col=0 + +[NVWONND1] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc new file mode 100644 index 0000000..11b208f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-5104x1033.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=3 +col=0 + +[Kenny Chesney] +row=5 +col=0 + +[NVWONND1] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[File System] +row=2 +col=0 + +[Home] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-608x897.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-608x897.rc new file mode 100644 index 0000000..8b7a642 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-608x897.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=3 +col=0 + +[Trash] +row=0 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x691.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x691.rc new file mode 100644 index 0000000..77a2e1f --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x691.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/home/cxford] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x693.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x693.rc new file mode 100644 index 0000000..5539e28 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-612x693.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-623x593.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-623x593.rc new file mode 100644 index 0000000..f5468fe --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-623x593.rc @@ -0,0 +1,36 @@ +[Scanned Document.pdf] +row=4 +col=0 + +[Relocation Estimate Template.xlsx] +row=0 +col=0 + +[Relocation Estimate Template.ods] +row=5 +col=0 + +[transfer] +row=3 +col=0 + +[KunjaDraftKnifework.pdf] +row=0 +col=1 + +[defense-3.20.13.txt] +row=1 +col=1 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=2 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x22.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x22.rc new file mode 100644 index 0000000..ebaa0fb --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x22.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=3 +col=0 + +[Kenny Chesney] +row=1 +col=0 + +[VBOXADDITIONS_4.3.16_95972] +row=0 +col=0 + +[Trash] +row=1 +col=3 + +[File System] +row=2 +col=3 + +[Home] +row=3 +col=3 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x232.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x232.rc new file mode 100644 index 0000000..30ec652 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x232.rc @@ -0,0 +1,16 @@ +[Audio Disc] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[File System] +row=0 +col=1 + +[Home] +row=1 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x310.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x310.rc new file mode 100644 index 0000000..e855cda --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x310.rc @@ -0,0 +1,24 @@ +[Maroon 5] +row=0 +col=1 + +[Kenny Chesney] +row=0 +col=0 + +[FIREFLY_D3] +row=0 +col=2 + +[Trash] +row=0 +col=3 + +[File System] +row=0 +col=4 + +[Home] +row=0 +col=5 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x363.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x363.rc new file mode 100644 index 0000000..144f34e --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x363.rc @@ -0,0 +1,16 @@ +[Furious 6 (2013)] +row=2 +col=0 + +[Trash] +row=0 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x433.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x433.rc new file mode 100644 index 0000000..e70e52a --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-624x433.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=0 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=2 +col=3 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-632x371.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-632x371.rc new file mode 100644 index 0000000..16ed3c1 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-632x371.rc @@ -0,0 +1,115 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Girl Meets World S02E01 Girl Meets Gravity 480p HDTV x264] +row=0 +col=5 + +[/root/Desktop/Avatar - The Legend of Korra Season 4 Complete [720p][Vega004]] +row=3 +col=2 + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=2 +col=3 + +[/root/Desktop/Girl Meets World S02E04 Girl Meets Pluto 480p HDTV x264] +row=3 +col=4 + +[/root/Desktop/Game of Thrones - The Complete Season 4 [HDTV]] +row=0 +col=2 + +[/root/Desktop/Maroon 5] +row=1 +col=6 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=1 +col=3 + +[/root/Desktop/twd13.mp4] +row=0 +col=6 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=0 +col=3 + +[/root/Desktop/Girl Meets World S02E02 Girl Meets the New World 480p HDTV x264] +row=1 +col=5 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=3 +col=3 + +[/root/Desktop/Vikings Season 3 - COMPLETE S03 720p HDTV x264 [MKV, AC3,5.1] Ehhhh] +row=1 +col=2 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=5 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=0 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=2 +col=1 + +[/root/Desktop/Girl Meets World S02E05 Meets Mr Squirrels 480p HDTV x264] +row=2 +col=2 + +[/root/Desktop/The Walking Dead S05E15] +row=3 +col=1 + +[/root/Desktop/twd12.mp4] +row=2 +col=5 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=3 +col=6 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=1 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=0 +col=4 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=2 +col=6 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=1 +col=4 + +[/root/Desktop/Girl Meets World S02E03 Girl Meets the Secret of Life 480p HDTV x264] +row=2 +col=4 + +[2015-03-16-17-37-09-00] +row=3 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/root] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-648x455.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-648x455.rc new file mode 100644 index 0000000..0e76837 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-648x455.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=1 + +[/root/Desktop/Maroon 5] +row=2 +col=2 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=1 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=5 +col=0 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=2 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=0 +col=3 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=4 +col=0 + +[/root/Desktop/The Walking Dead S05E15] +row=5 +col=1 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=1 +col=3 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=2 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=4 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=3 +col=2 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=0 +col=2 + +[2015-03-16-17-37-09-00] +row=3 +col=0 + +[Trash] +row=0 +col=0 + +[/] +row=1 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-766x425.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-766x425.rc new file mode 100644 index 0000000..8316001 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-766x425.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=1 +col=0 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=0 +col=1 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x322.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x322.rc new file mode 100644 index 0000000..5539e28 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x322.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x733.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x733.rc new file mode 100644 index 0000000..855c195 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x733.rc @@ -0,0 +1,28 @@ +[Maroon 5] +row=1 +col=0 + +[Star Wars - The Clone Wars (complete)] +row=4 +col=0 + +[PHANTOM_MENACE] +row=0 +col=0 + +[VBOXADDITIONS_4.3.18_96516] +row=3 +col=0 + +[Trash] +row=5 +col=0 + +[File System] +row=2 +col=0 + +[Home] +row=1 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x773.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x773.rc new file mode 100644 index 0000000..aeedbec --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x773.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=2 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=2 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=0 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=1 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-02-14-24-20-00] +row=8 +col=0 + +[Trash] +row=5 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=1 +col=1 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x789.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x789.rc new file mode 100644 index 0000000..ca14f1b --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x789.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/Maroon 5] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=9 +col=0 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=8 +col=0 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=0 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=5 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=1 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=7 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=6 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=4 +col=0 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=1 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=2 +col=1 + +[2015-03-02-14-24-20-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x853.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x853.rc new file mode 100644 index 0000000..7f3e544 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x853.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=10 +col=0 + +[/root/Desktop/Maroon 5] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=9 +col=0 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=8 +col=0 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=0 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=5 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=1 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=7 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=6 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=4 +col=0 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=1 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=2 +col=1 + +[2015-03-02-14-24-20-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x897.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x897.rc new file mode 100644 index 0000000..59c2899 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-768x897.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=9 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=8 +col=0 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-02-14-24-20-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-776x785.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-776x785.rc new file mode 100644 index 0000000..0ae2972 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-776x785.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=2 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=3 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=0 +col=1 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=3 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=5 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=1 +col=1 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=4 +col=0 + +[2015-05-13-16-15-47-00] +row=6 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x493.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x493.rc new file mode 100644 index 0000000..2a8f364 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x493.rc @@ -0,0 +1,27 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/genie-clipart-lamp-hi.png] +row=5 +col=0 + +[Floppy Disk] +row=0 +col=0 + +[4a6c42d0-d631-4fe9-aebe-37e65ac53b27] +row=1 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=4 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x553.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x553.rc new file mode 100644 index 0000000..343e187 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-784x553.rc @@ -0,0 +1,31 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=6 +col=0 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-796x573.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-796x573.rc new file mode 100644 index 0000000..477f0b7 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-796x573.rc @@ -0,0 +1,16 @@ +[VBOXADDITIONS_4.3.6_91406] +row=4 +col=0 + +[Trash] +row=2 +col=0 + +[File System] +row=1 +col=0 + +[Home] +row=0 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-895x522.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-895x522.rc new file mode 100644 index 0000000..2b1ea02 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-895x522.rc @@ -0,0 +1,35 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=4 +col=0 + +[/root/Desktop/Maroon 5] +row=5 +col=0 + +[/root/Desktop/ChristmasCard.jpg] +row=1 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=0 +col=1 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x392.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x392.rc new file mode 100644 index 0000000..5539e28 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x392.rc @@ -0,0 +1,19 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[2015-08-06-07-25-33-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x412.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x412.rc new file mode 100644 index 0000000..7f7566e --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x412.rc @@ -0,0 +1,35 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=2 +col=1 + +[/root/Desktop/Maroon 5] +row=1 +col=1 + +[/root/Desktop/Fifty Shades of Grey 2015 720p BRRip x264 MP4 Multisubs AAC-CC] +row=0 +col=1 + +[1c0130aa-ee56-409b-917f-5f24e453848a] +row=3 +col=1 + +[2015-10-01-17-08-02-00] +row=0 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=3 +col=0 + +[/root] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x629.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x629.rc new file mode 100644 index 0000000..44bf642 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x629.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/Maroon 5] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=6 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=0 +col=1 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=5 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=1 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=7 +col=0 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=6 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=4 +col=0 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=4 +col=1 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=2 +col=1 + +[2015-03-02-14-24-20-00] +row=0 +col=0 + +[Trash] +row=1 +col=0 + +[/] +row=2 +col=0 + +[/root] +row=3 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x678.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x678.rc new file mode 100644 index 0000000..aa471be --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x678.rc @@ -0,0 +1,67 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=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/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x913.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x913.rc new file mode 100644 index 0000000..fa63a04 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-928x913.rc @@ -0,0 +1,79 @@ +[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/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-936x921.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-936x921.rc new file mode 100644 index 0000000..0ae2972 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-936x921.rc @@ -0,0 +1,59 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/home/cxford/Desktop/transfer] +row=8 +col=0 + +[/home/cxford/Desktop/KunjaDraftKnifework.pdf] +row=2 +col=1 + +[/home/cxford/Desktop/defense-3.20.13.txt] +row=3 +col=1 + +[/home/cxford/Desktop/Relocation Estimate Template.xlsx] +row=0 +col=1 + +[/home/cxford/Desktop/Scanned Document.pdf] +row=9 +col=0 + +[/home/cxford/Desktop/Game Careers.ods] +row=7 +col=0 + +[/home/cxford/Desktop/Game of Thrones S05 Season 5 Complete 720p HDTV x264 [Multi-Subs] [DexzAery & VectoR]] +row=3 +col=0 + +[/home/cxford/Desktop/BlackBook] +row=5 +col=0 + +[/home/cxford/Desktop/Relocation Estimate Template.ods] +row=1 +col=1 + +[/home/cxford/Desktop/The Whispers S01E05 HDTV XviD-FUM[ettv]] +row=4 +col=0 + +[2015-05-13-16-15-47-00] +row=6 +col=0 + +[Trash] +row=2 +col=0 + +[/] +row=0 +col=0 + +[/home/cxford] +row=1 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-943x627.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-943x627.rc new file mode 100644 index 0000000..4b88ca2 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-943x627.rc @@ -0,0 +1,83 @@ +[xfdesktop-version-4.10.3+-rcfile_format] +4.10.3+=true + +[/root/Desktop/The.Walking.Dead.S05E10.Them.HDTV.x264-KILLERS[ettv]] +row=1 +col=0 + +[/root/Desktop/Maroon 5] +row=4 +col=0 + +[/root/Desktop/The.Walking.Dead.S05E10.HDTV.x264-KILLERS.mp4] +row=0 +col=1 + +[/root/Desktop/twd13.mp4] +row=3 +col=2 + +[/root/Desktop/The Americans Season 1 Complete 480p RawKEy] +row=1 +col=1 + +[/root/Desktop/Law.and.Order.SVU.S16E14.HDTV.x264-LOL[ettv]] +row=6 +col=0 + +[/root/Desktop/Star Wars Omnibus (001 - 023) (2006 - 2012)] +row=3 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E11.HDTV.x264-ASAP[ettv]] +row=4 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E13.HDTV.x264-KILLERS[rarbg]] +row=0 +col=2 + +[/root/Desktop/The Walking Dead S05E15] +row=6 +col=1 + +[/root/Desktop/twd12.mp4] +row=4 +col=2 + +[/root/Desktop/The Americans - Season 2 Complete-ChameE] +row=2 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E12.HDTV.x264-KILLERS[ettv]] +row=5 +col=1 + +[/root/Desktop/The.Walking.Dead.S05E16.PROPER.HDTV.x264-KILLERS.mp4] +row=7 +col=1 + +[/root/Desktop/A Walk to Remember (2002) DvDrip Xvid] +row=1 +col=2 + +[/root/Desktop/Criminal.Minds.S10E15.720p.HDTV.X264-DIMENSION.mkv] +row=7 +col=0 + +[2015-03-16-17-37-09-00] +row=0 +col=0 + +[Trash] +row=3 +col=0 + +[/] +row=5 +col=0 + +[/root] +row=2 +col=0 + diff --git a/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-978x363.rc b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-978x363.rc new file mode 100644 index 0000000..b3b4a82 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/desktop/icons.screen0-978x363.rc @@ -0,0 +1,24 @@ +[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/ShadowArch/skel/.config/xfce4/help.rc b/ShadowArch/skel/.config/xfce4/help.rc new file mode 100644 index 0000000..f9a741a --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/help.rc @@ -0,0 +1,2 @@ +auto-online=false + diff --git a/ShadowArch/skel/.config/xfce4/helpers.rc b/ShadowArch/skel/.config/xfce4/helpers.rc new file mode 100644 index 0000000..149d8b7 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/helpers.rc @@ -0,0 +1,2 @@ +WebBrowser=chromium + diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-10/13819053881.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-10/13819053881.desktop new file mode 100644 index 0000000..25d9e41 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-10/13819053881.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=utilities-terminal +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +Name=Terminal Emulator +Comment=Use the command line +X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-10/13909659584.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-10/13909659584.desktop new file mode 100644 index 0000000..0a5cd47 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-10/13909659584.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=Tor-Browser (en-US) +Exec=/usr/bin/tor-browser-en +Icon=/usr/share/pixmaps/tor-browser-en.png +Categories=Network; +Comment=Tor Browser Bundle: Anonymous browsing using firefox and tor +X-XFCE-Source=file:///usr/share/applications/tor-browser-en.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-11/14163596231.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-11/14163596231.desktop new file mode 100644 index 0000000..5d12ccc --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-11/14163596231.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Gyazo +Version=1.0 +Comment=Seriously Instant Screen-Grabbing +Exec=su cxford -c "gyazo" +Terminal=false +Type=Application +Icon=gyazo +Categories=Utility;Graphics; +StartupNotify=false +X-XFCE-Source=file:///usr/share/applications/gyazo.desktop +Path= diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-7/13909659211.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-7/13909659211.desktop new file mode 100644 index 0000000..51f32b0 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-7/13909659211.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Thunar File Manager +Comment=Browse the filesystem with the file manager +GenericName=File Manager +Exec=thunar %F +Icon=Thunar +Terminal=false +StartupNotify=true +Type=Application +Categories=System;Utility;Core;GTK;FileTools;FileManager; +X-XFCE-Source=file:///usr/share/applications/Thunar.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891151.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891151.desktop new file mode 100644 index 0000000..00064ab --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891151.desktop @@ -0,0 +1,17 @@ +[Desktop Entry] +Version=1.0 +Name=SeaMonkey internet suite +GenericName=Web Browser +Comment=Your web, the way you like it +Exec=seamonkey +Icon=seamonkey +Terminal=false +Type=Application +StartupWMClass=seamonkey-bin +MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; +StartupNotify=true +X-MultipleArgs=false +X-Desktop-File-Install-Version=0.16 +Categories=Network;WebBrowser; +Encoding=UTF-8 +X-XFCE-Source=file:///usr/share/applications/seamonkey.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891202.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891202.desktop new file mode 100644 index 0000000..9c4ec3c --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-7/14605891202.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Chromium +GenericName=Web Browser +Comment=Access the Internet +Exec=chromium %U +Terminal=false +Icon=chromium +Type=Application +Categories=GTK;Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; +X-XFCE-Source=file:///usr/share/applications/chromium.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-8/13909659312.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-8/13909659312.desktop new file mode 100644 index 0000000..e3f3068 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-8/13909659312.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Name=Xfce Terminal +Comment=Terminal Emulator +GenericName=Terminal Emulator +Exec=xfce4-terminal +Icon=utilities-terminal +Terminal=false +Type=Application +Categories=GTK;System;TerminalEmulator; +StartupNotify=true +X-XFCE-Source=file:///usr/share/applications/xfce4-terminal.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-9/13818980364.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-9/13818980364.desktop new file mode 100644 index 0000000..51f32b0 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-9/13818980364.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Thunar File Manager +Comment=Browse the filesystem with the file manager +GenericName=File Manager +Exec=thunar %F +Icon=Thunar +Terminal=false +StartupNotify=true +Type=Application +Categories=System;Utility;Core;GTK;FileTools;FileManager; +X-XFCE-Source=file:///usr/share/applications/Thunar.desktop diff --git a/ShadowArch/skel/.config/xfce4/panel/launcher-9/13909659513.desktop b/ShadowArch/skel/.config/xfce4/panel/launcher-9/13909659513.desktop new file mode 100644 index 0000000..c6ff8ef --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/panel/launcher-9/13909659513.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Name=Chromium +GenericName=Web Browser +Comment=Access the Internet +Exec=chromium %U +Terminal=false +Icon=chromium +Type=Application +Categories=GTK;Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; +X-XFCE-Source=file:///usr/share/applications/chromium.desktop diff --git a/ShadowArch/skel/.config/xfce4/terminal/accels.scm b/ShadowArch/skel/.config/xfce4/terminal/accels.scm new file mode 100644 index 0000000..e2ad1bf --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/terminal/accels.scm @@ -0,0 +1,52 @@ +; xfce4-terminal GtkAccelMap rc-file -*- scheme -*- +; this file is an automated accelerator map dump +; +(gtk_accel_path "/terminal-window/goto-tab-4" "4") +(gtk_accel_path "/terminal-window/goto-tab-3" "3") +; (gtk_accel_path "/terminal-window/file-menu" "") +; (gtk_accel_path "/terminal-window/close-other-tabs" "") +; (gtk_accel_path "/terminal-window/search" "f") +; (gtk_accel_path "/terminal-window/next-tab" "Page_Down") +(gtk_accel_path "/terminal-window/goto-tab-1" "1") +; (gtk_accel_path "/terminal-window/show-menubar" "") +; (gtk_accel_path "/terminal-window/zoom-reset" "0") +; (gtk_accel_path "/terminal-window/terminal-menu" "") +; (gtk_accel_path "/terminal-window/close-window" "q") +; (gtk_accel_path "/terminal-window/close-tab" "w") +; (gtk_accel_path "/terminal-window/save-contents" "") +; (gtk_accel_path "/terminal-window/new-tab" "t") +; (gtk_accel_path "/terminal-window/view-menu" "") +; (gtk_accel_path "/terminal-window/show-toolbar" "") +; (gtk_accel_path "/terminal-window/paste" "v") +; (gtk_accel_path "/terminal-window/copy" "c") +; (gtk_accel_path "/terminal-window/edit-menu" "") +; (gtk_accel_path "/terminal-window/fullscreen" "F11") +; (gtk_accel_path "/terminal-window/read-only" "") +; (gtk_accel_path "/terminal-window/detach-tab" "d") +(gtk_accel_path "/terminal-window/goto-tab-8" "8") +(gtk_accel_path "/terminal-window/goto-tab-2" "2") +; (gtk_accel_path "/terminal-window/prev-tab" "Page_Up") +; (gtk_accel_path "/terminal-window/move-tab-left" "Page_Up") +; (gtk_accel_path "/terminal-window/zoom-in" "plus") +; (gtk_accel_path "/terminal-window/search-prev" "") +; (gtk_accel_path "/terminal-window/reset-and-clear" "") +; (gtk_accel_path "/terminal-window/about" "") +; (gtk_accel_path "/terminal-window/search-next" "") +(gtk_accel_path "/terminal-window/goto-tab-7" "7") +; (gtk_accel_path "/terminal-window/select-all" "a") +; (gtk_accel_path "/terminal-window/help-menu" "") +(gtk_accel_path "/terminal-window/goto-tab-9" "9") +; (gtk_accel_path "/terminal-window/show-borders" "") +; (gtk_accel_path "/terminal-window/preferences" "") +(gtk_accel_path "/terminal-window/goto-tab-6" "6") +; (gtk_accel_path "/terminal-window/contents" "F1") +; (gtk_accel_path "/terminal-window/new-window" "n") +; (gtk_accel_path "/terminal-window/move-tab-right" "Page_Down") +; (gtk_accel_path "/terminal-window/zoom-out" "minus") +; (gtk_accel_path "/terminal-window/set-title" "s") +; (gtk_accel_path "/terminal-window/paste-selection" "") +; (gtk_accel_path "/terminal-window/undo-close-tab" "") +(gtk_accel_path "/terminal-window/goto-tab-5" "5") +; (gtk_accel_path "/terminal-window/zoom-menu" "") +; (gtk_accel_path "/terminal-window/reset" "") +; (gtk_accel_path "/terminal-window/tabs-menu" "") diff --git a/ShadowArch/skel/.config/xfce4/terminal/terminalrc b/ShadowArch/skel/.config/xfce4/terminal/terminalrc new file mode 100644 index 0000000..6292b69 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/terminal/terminalrc @@ -0,0 +1,23 @@ +[Configuration] +MiscAlwaysShowTabs=FALSE +MiscBell=FALSE +MiscBordersDefault=TRUE +MiscCursorBlinks=FALSE +MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK +MiscDefaultGeometry=80x20 +MiscInheritGeometry=FALSE +MiscMenubarDefault=TRUE +MiscMouseAutohide=FALSE +MiscToolbarDefault=FALSE +MiscConfirmClose=TRUE +MiscCycleTabs=TRUE +MiscTabCloseButtons=TRUE +MiscTabCloseMiddleClick=TRUE +MiscTabPosition=GTK_POS_TOP +MiscHighlightUrls=TRUE +FontName=Monospace 14 +ColorBoldUseDefault=FALSE +ColorBold=#ffff00000000 +ColorCursor=#7bde7bde7bde +ColorPalette=#000000000000;#d29100000000;#0000aaaa0000;#aaaa55550000;#00000000aaaa;#aaaa0000aaaa;#0000aaaaaaaa;#aaaaaaaaaaaa;#555555555555;#ffff55555555;#5555ffff5555;#ffffffff5555;#55555555ffff;#ffff5555ffff;#5555ffffffff;#ffffffffffff + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml new file mode 100644 index 0000000..7d12382 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml new file mode 100644 index 0000000..194489c --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml new file mode 100644 index 0000000..675b100 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml new file mode 100644 index 0000000..3fff2ed --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml new file mode 100644 index 0000000..e9d1685 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml new file mode 100644 index 0000000..4da3090 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml new file mode 100644 index 0000000..c3b9784 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mime-settings.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mime-settings.xml new file mode 100644 index 0000000..582f0f8 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mime-settings.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml new file mode 100644 index 0000000..e335dd4 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml new file mode 100644 index 0000000..a882a0a --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml new file mode 100644 index 0000000..276b7ec --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml new file mode 100644 index 0000000..eaac1e8 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml new file mode 100644 index 0000000..2e112e3 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml new file mode 100644 index 0000000..35712e5 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml new file mode 100644 index 0000000..8c3ead1 --- /dev/null +++ b/ShadowArch/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShadowArch/skel/.conkyrc b/ShadowArch/skel/.conkyrc new file mode 100755 index 0000000..dbe738c --- /dev/null +++ b/ShadowArch/skel/.conkyrc @@ -0,0 +1,71 @@ +-- vim: ts=4 sw=4 noet ai cindent syntax=lua +--[[ +Conky, a system monitor, based on torsmo +]] + +conky.config = { + alignment = 'top_right', + background = yes, + own_window = yes, + own_window_type = 'normal', + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + border_width = 1, + cpu_avg_samples = 2, + double_buffer = yes, + default_color = 'white', + default_outline_color = 'white', + default_shade_color = 'white', + draw_borders = false, + draw_graph_borders = true, + draw_outline = false, + draw_shades = false, + gap_x = 5, + gap_y = 60, + minimum_height = 5, + minimum_width = 5, + net_avg_samples = 2, + no_buffers = true, + out_to_console = false, + out_to_stderr = false, + extra_newline = false, + own_window = true, + own_window_class = 'Conky', + own_window_type = 'desktop', + stippled_borders = 0, + update_interval = 1.0, + uppercase = false, + use_xft = yes, + use_spacer = 'right', + show_graph_scale = false, + show_graph_range = false +} + +-- ${cpu*} currently cause segfaults. +conky.text = [[ +${font Monaco :size=16} +AniNIX::${nodename short} +ShadowArch Linux $kernel on $machine +${color grey}Uptime:$color $uptime +$hr +${color red}CPU: +${color red}Frequency (in GHz):$color $freq_g +${color red}Processes:$color $processes | $running_processes +${color red}Name PID CPU% MEM% $color +${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1} +${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2} +${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3} +${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}$color +$hr +${color orange}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4} +${color orange}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4} +$hr +${color cyan}File systems: + / $color${fs_used /}/${fs_size /} ${fs_bar 6 /} +${diskiograph} +${color cyan}Disk IO:$color ${diskio} +$hr +${color green}Networking: +${upspeedgraph ens33 26,100 FFFFFF FFFFFF}${goto 120}${downspeedgraph ens33 26,100 FFFFFF FFFFFF} +${color green}Up: ${color2}${upspeed ens33}${color5}${goto 120}Down: ${color2}${downspeed ens33} +${color green}Sent: ${color2}${totalup ens33}${color5}${goto 120}Received: ${color2}${totaldown ens33} +]] diff --git a/ShadowArch/skel/.gitconfig b/ShadowArch/skel/.gitconfig new file mode 100644 index 0000000..5b74b6f --- /dev/null +++ b/ShadowArch/skel/.gitconfig @@ -0,0 +1,7 @@ +[user] + name = example + email = example@aninix.net +[core] + editor = vim +[merge] + tool = vimdiff diff --git a/ShadowArch/skel/.irssi/aninix.theme b/ShadowArch/skel/.irssi/aninix.theme new file mode 100644 index 0000000..6908b4c --- /dev/null +++ b/ShadowArch/skel/.irssi/aninix.theme @@ -0,0 +1,294 @@ +# When testing changes, the easiest way to reload the theme is with /RELOAD. +# This reloads the configuration file too, so if you did any changes remember +# to /SAVE it first. Remember also that /SAVE overwrites the theme file with +# old data so keep backups :) + +# TEMPLATES: + +# The real text formats that irssi uses are the ones you can find with +# /FORMAT command. Back in the old days all the colors and texts were mixed +# up in those formats, and it was really hard to change the colors since you +# might have had to change them in tens of different places. So, then came +# this templating system. + +# Now the /FORMATs don't have any colors in them, and they also have very +# little other styling. Most of the stuff you need to change is in this +# theme file. If you can't change something here, you can always go back +# to change the /FORMATs directly, they're also saved in these .theme files. + +# So .. the templates. They're those {blahblah} parts you see all over the +# /FORMATs and here. Their usage is simply {name parameter1 parameter2}. +# When irssi sees this kind of text, it goes to find "name" from abstracts +# block below and sets "parameter1" into $0 and "parameter2" into $1 (you +# can have more parameters of course). Templates can have subtemplates. +# Here's a small example: +# /FORMAT format hello {colorify {underline world}} +# abstracts = { colorify = "%G$0-%n"; underline = "%U$0-%U"; } +# When irssi expands the templates in "format", the final string would be: +# hello %G%Uworld%U%n +# ie. underlined bright green "world" text. +# and why "$0-", why not "$0"? $0 would only mean the first parameter, +# $0- means all the parameters. With {underline hello world} you'd really +# want to underline both of the words, not just the hello (and world would +# actually be removed entirely). + +# COLORS: + +# You can find definitions for the color format codes in docs/formats.txt. + +# There's one difference here though. %n format. Normally it means the +# default color of the terminal (white mostly), but here it means the +# "reset color back to the one it was in higher template". For example +# if there was /FORMAT test %g{foo}bar, and foo = "%Y$0%n", irssi would +# print yellow "foo" (as set with %Y) but "bar" would be green, which was +# set at the beginning before the {foo} template. If there wasn't the %g +# at start, the normal behaviour of %n would occur. If you _really_ want +# to use the terminal's default color, use %N. + +############################################################################# + +# default foreground color (%N) - -1 is the "default terminal color" +default_color = "-1"; + +# print timestamp/servertag at the end of line, not at beginning +info_eol = "false"; + +# these characters are automatically replaced with specified color +# (dark grey by default) +replaces = { "[]=" = "%W$*%n"; }; + +abstracts = { + ## + ## generic + ## + + # text to insert at the beginning of each non-message line + line_start = "%B-%n!%B-%n "; + + # timestamp styling, nothing by default + timestamp = "%r$*%n"; + + # any kind of text that needs hilighting, default is to bold + hilight = "%_$*%_"; + + # any kind of error message, default is bright red + error = "%R$*%n"; + + # channel name is printed + channel = "%_$*%_"; + + # nick is printed + nick = "%_$*%_"; + + # nick host is printed + nickhost = "[$*]"; + + # server name is printed + server = "%_$*%_"; + + # some kind of comment is printed + comment = "[$*]"; + + # reason for something is printed (part, quit, kick, ..) + reason = "{comment $*}"; + + # mode change is printed ([+o nick]) + mode = "{comment $*}"; + + ## + ## channel specific messages + ## + + # highlighted nick/host is printed (joins) + channick_hilight = "%C$*%n"; + chanhost_hilight = "{nickhost %c$*%n}"; + + # nick/host is printed (parts, quits, etc.) + channick = "%c$*%n"; + chanhost = "{nickhost $*}"; + + # highlighted channel name is printed + channelhilight = "%c$*%n"; + + # ban/ban exception/invite list mask is printed + ban = "%c$*%n"; + + ## + ## messages + ## + + # the basic styling of how to print message, $0 = nick mode, $1 = nick + msgnick = "%W<%n$0$1-%W>%n %|"; + + # message from you is printed. "msgownnick" specifies the styling of the + # nick ($0 part in msgnick) and "ownmsgnick" specifies the styling of the + # whole line. + + # Example1: You want the message text to be green: + # ownmsgnick = "{msgnick $0 $1-}%g"; + # Example2.1: You want < and > chars to be yellow: + # ownmsgnick = "%Y{msgnick $0 $1-%Y}%n"; + # (you'll also have to remove <> from replaces list above) + # Example2.2: But you still want to keep <> grey for other messages: + # pubmsgnick = "%W{msgnick $0 $1-%W}%n"; + # pubmsgmenick = "%W{msgnick $0 $1-%W}%n"; + # pubmsghinick = "%W{msgnick $1 $0$2-%n%W}%n"; + # ownprivmsgnick = "%W{msgnick $*%W}%n"; + # privmsgnick = "%W{msgnick %R$*%W}%n"; + + # $0 = nick mode, $1 = nick + ownmsgnick = "{msgnick $0 $1-}"; + ownnick = "%_$*%n"; + + # public message in channel, $0 = nick mode, $1 = nick + pubmsgnick = "{msgnick $0 $1-}"; + pubnick = "%N$*%n"; + + # public message in channel meant for me, $0 = nick mode, $1 = nick + pubmsgmenick = "{msgnick $0 $1-}"; + menick = "%Y$*%n"; + + # public highlighted message in channel + # $0 = highlight color, $1 = nick mode, $2 = nick + pubmsghinick = "{msgnick $1 $0$2-%n}"; + + # channel name is printed with message + msgchannel = "%W:%c$*%n"; + + # private message, $0 = nick, $1 = host + privmsg = "[%R$0%W(%r$1-%W)%n] "; + + # private message from you, $0 = "msg", $1 = target nick + ownprivmsg = "[%r$0%W(%R$1-%W)%n] "; + + # own private message in query + ownprivmsgnick = "{msgnick $*}"; + ownprivnick = "%_$*%n"; + + # private message in query + privmsgnick = "{msgnick %R$*%n}"; + + ## + ## Actions (/ME stuff) + ## + + # used internally by this theme + action_core = "%_ * $*%n"; + + # generic one that's used by most actions + action = "{action_core $*} "; + + # own action, both private/public + ownaction = "{action $*}"; + + # own action with target, both private/public + ownaction_target = "{action_core $0}%W:%c$1%n "; + + # private action sent by others + pvtaction = "%_ (*) $*%n "; + pvtaction_query = "{action $*}"; + + # public action sent by others + pubaction = "{action $*}"; + + + ## + ## other IRC events + ## + + # whois + whois = "%# $[8]0 : $1-"; + + # notices + ownnotice = "[%r$0%W(%R$1-%W)]%n "; + notice = "%W-%M$*%W-%n "; + pubnotice_channel = "%W:%m$*"; + pvtnotice_host = "%W(%m$*%W)"; + servernotice = "%g!$*%n "; + + # CTCPs + ownctcp = "[%r$0%W(%R$1-%W)] "; + ctcp = "%g$*%n"; + + # wallops + wallop = "%_$*%n: "; + wallop_nick = "%n$*"; + wallop_action = "%_ * $*%n "; + + # netsplits + netsplit = "%R$*%n"; + netjoin = "%C$*%n"; + + # /names list + names_prefix = ""; + names_nick = "[%_$0%_$1-] "; + names_nick_op = "{names_nick $*}"; + names_nick_halfop = "{names_nick $*}"; + names_nick_voice = "{names_nick $*}"; + names_users = "[%g$*%n]"; + names_channel = "%G$*%n"; + + # DCC + dcc = "%g$*%n"; + dccfile = "%_$*%_"; + + # DCC chat, own msg/action + dccownmsg = "[%r$0%W($1-%W)%n] "; + dccownnick = "%R$*%n"; + dccownquerynick = "%_$*%n"; + dccownaction = "{action $*}"; + dccownaction_target = "{action_core $0}%W:%c$1%n "; + + # DCC chat, others + dccmsg = "[%G$1-%W(%g$0%W)%n] "; + dccquerynick = "%G$*%n"; + dccaction = "%_ (*dcc*) $*%n %|"; + + ## + ## statusbar + ## + + # default background for all statusbars. You can also give + # the default foreground color for statusbar items. + sb_background = "%0%r"; + + # default backround for "default" statusbar group + #sb_default_bg = "%1"; + # background for prompt / input line + sb_prompt_bg = "%n"; + # background for info statusbar + sb_info_bg = "%8"; + # background for topicbar (same default) + #sb_topic_bg = "%1"; + + # text at the beginning of statusbars. sb-item already puts + # space there,so we don't use anything by default. + sbstart = ""; + # text at the end of statusbars. Use space so that it's never + # used for anything. + sbend = " "; + + topicsbstart = "{sbstart $*}"; + topicsbend = "{sbend $*}"; + + prompt = "$* %r|%n> "; + + sb = " %r[%n$*%r]%n"; + sbmode = "(+%W$*%n)"; + sbaway = " (%RzZzZ%n)"; + sbservertag = ":$0 (change with ^X)"; + sbnickmode = "$0"; + + # activity in statusbar + + # ',' separator + sb_act_sep = "%W$*"; + # normal text + sb_act_text = "%W$*"; + # public message + sb_act_msg = "%W$*"; + # hilight + sb_act_hilight = "%W$*"; + # hilight with specified color, $0 = color, $1 = text + sb_act_hilight_color = "$0$1-%n"; +}; diff --git a/ShadowArch/skel/.irssi/config b/ShadowArch/skel/.irssi/config new file mode 100644 index 0000000..d3d17be --- /dev/null +++ b/ShadowArch/skel/.irssi/config @@ -0,0 +1,295 @@ +servers = ( + { + address = "IRCADDRESS"; + chatnet = "NETWORKNAME"; + port = "IRCPORT"; + autoconnect = "yes"; + ssl_verify = "no"; + use_ssl = "yes"; + }, +); + +chatnets = { + NETWORKNAME = { + type = "IRC"; + autosendcmd = "/MSG NickServ identify NICKSERVPASS"; + max_kicks = "1"; + max_msgs = "4"; + max_whois = "1"; + }; +}; + +channels = ( + { name = "CHANNELNAME"; chatnet = "NETWORKNAME"; autojoin = "Yes"; }, +); + +aliases = { + ATAG = "WINDOW SERVER"; + ADDALLCHANS = "SCRIPT EXEC foreach my \\$channel (Irssi::channels()) { Irssi::command(\"CHANNEL ADD -auto \\$channel->{name} \\$channel->{server}->{tag} \\$channel->{key}\")\\;}"; + B = "BAN"; + BACK = "AWAY"; + BANS = "BAN"; + BYE = "QUIT"; + C = "CLEAR"; + CALC = "EXEC - if command -v bc >/dev/null 2>&1\\; then printf '%s=' '$*'\\; echo '$*' | bc -l\\; else echo bc was not found\\; fi"; + CHAT = "DCC CHAT"; + CUBES = "SCRIPT EXEC Irssi::active_win->print(\"%_bases\", MSGLEVEL_CLIENTCRAP) \\; Irssi::active_win->print( do { join '', map { \"%x0\\${_}0\\$_\" } '0'..'9','A'..'F' }, MSGLEVEL_NEVER | MSGLEVEL_CLIENTCRAP) \\; Irssi::active_win->print(\"%_cubes\", MSGLEVEL_CLIENTCRAP) \\; Irssi::active_win->print( do { my \\$y = \\$_*6 \\; join '', map { my \\$x = \\$_ \\; map { \"%x\\$x\\$_\\$x\\$_\" } @{['0'..'9','A'..'Z']}[\\$y .. \\$y+5] } 1..6 }, MSGLEVEL_NEVER | MSGLEVEL_CLIENTCRAP) for 0..5 \\; Irssi::active_win->print(\"%_grays\", MSGLEVEL_CLIENTCRAP) \\; Irssi::active_win->print( do { join '', map { \"%x7\\${_}7\\$_\" } 'A'..'X' }, MSGLEVEL_NEVER | MSGLEVEL_CLIENTCRAP) \\; Irssi::active_win->print(\"%_mIRC extended colours\", MSGLEVEL_CLIENTCRAP) \\; my \\$x \\; \\$x .= sprintf \"\00399,%02d%02d\",\\$_,\\$_ for 0..15 \\; Irssi::active_win->print(\\$x, MSGLEVEL_NEVER | MSGLEVEL_CLIENTCRAP) \\; for my \\$z (0..6) { my \\$x \\; \\$x .= sprintf \"\00399,%02d%02d\",\\$_,\\$_ for 16+(\\$z*12)..16+(\\$z*12)+11 \\; Irssi::active_win->print(\\$x, MSGLEVEL_NEVER | MSGLEVEL_CLIENTCRAP) }"; + DATE = "TIME"; + DEHIGHLIGHT = "DEHILIGHT"; + DESCRIBE = "ACTION"; + DHL = "DEHILIGHT"; + EXEMPTLIST = "MODE $C +e"; + EXIT = "QUIT"; + GOTO = "SCROLLBACK GOTO"; + HIGHLIGHT = "HILIGHT"; + HL = "HILIGHT"; + HOST = "USERHOST"; + INVITELIST = "MODE $C +I"; + J = "JOIN"; + K = "KICK"; + KB = "KICKBAN"; + KN = "KNOCKOUT"; + LAST = "LASTLOG"; + LEAVE = "PART"; + M = "MSG"; + MUB = "UNBAN *"; + N = "NAMES"; + NMSG = "^MSG"; + P = "PART"; + Q = "QUERY"; + RESET = "SET -default"; + RUN = "SCRIPT LOAD"; + SAY = "MSG *"; + SB = "SCROLLBACK"; + SBAR = "STATUSBAR"; + SIGNOFF = "QUIT"; + SV = "MSG * Irssi $J ($V) - http://www.irssi.org"; + T = "TOPIC"; + UB = "UNBAN"; + UMODE = "MODE $N"; + UNSET = "SET -clear"; + W = "WHO"; + WC = "WINDOW CLOSE"; + WG = "WINDOW GOTO"; + WJOIN = "JOIN -window"; + WI = "WHOIS"; + WII = "WHOIS $0 $0"; + WL = "WINDOW LIST"; + WN = "WINDOW NEW HIDDEN"; + WQUERY = "QUERY -window"; + WW = "WHOWAS"; + 1 = "WINDOW GOTO 1"; + 2 = "WINDOW GOTO 2"; + 3 = "WINDOW GOTO 3"; + 4 = "WINDOW GOTO 4"; + 5 = "WINDOW GOTO 5"; + 6 = "WINDOW GOTO 6"; + 7 = "WINDOW GOTO 7"; + 8 = "WINDOW GOTO 8"; + 9 = "WINDOW GOTO 9"; + 10 = "WINDOW GOTO 10"; + 11 = "WINDOW GOTO 11"; + 12 = "WINDOW GOTO 12"; + 13 = "WINDOW GOTO 13"; + 14 = "WINDOW GOTO 14"; + 15 = "WINDOW GOTO 15"; + 16 = "WINDOW GOTO 16"; + 17 = "WINDOW GOTO 17"; + 18 = "WINDOW GOTO 18"; + 19 = "WINDOW GOTO 19"; + 20 = "WINDOW GOTO 20"; + 21 = "WINDOW GOTO 21"; + 22 = "WINDOW GOTO 22"; + 23 = "WINDOW GOTO 23"; + 24 = "WINDOW GOTO 24"; + 25 = "WINDOW GOTO 25"; + 26 = "WINDOW GOTO 26"; + 27 = "WINDOW GOTO 27"; + 28 = "WINDOW GOTO 28"; + 29 = "WINDOW GOTO 29"; + 30 = "WINDOW GOTO 30"; + 31 = "WINDOW GOTO 31"; + 32 = "WINDOW GOTO 32"; + 33 = "WINDOW GOTO 33"; + 34 = "WINDOW GOTO 34"; + 35 = "WINDOW GOTO 35"; + 36 = "WINDOW GOTO 36"; + 37 = "WINDOW GOTO 37"; + 38 = "WINDOW GOTO 38"; + 39 = "WINDOW GOTO 39"; + 40 = "WINDOW GOTO 40"; + 41 = "WINDOW GOTO 41"; + 42 = "WINDOW GOTO 42"; + 43 = "WINDOW GOTO 43"; + 44 = "WINDOW GOTO 44"; + 45 = "WINDOW GOTO 45"; + 46 = "WINDOW GOTO 46"; + 47 = "WINDOW GOTO 47"; + 48 = "WINDOW GOTO 48"; + 49 = "WINDOW GOTO 49"; + 50 = "WINDOW GOTO 50"; + 51 = "WINDOW GOTO 51"; + 52 = "WINDOW GOTO 52"; + 53 = "WINDOW GOTO 53"; + 54 = "WINDOW GOTO 54"; + 55 = "WINDOW GOTO 55"; + 56 = "WINDOW GOTO 56"; + 57 = "WINDOW GOTO 57"; + 58 = "WINDOW GOTO 58"; + 59 = "WINDOW GOTO 59"; + 60 = "WINDOW GOTO 60"; + 61 = "WINDOW GOTO 61"; + 62 = "WINDOW GOTO 62"; + 63 = "WINDOW GOTO 63"; + 64 = "WINDOW GOTO 64"; + 65 = "WINDOW GOTO 65"; + 66 = "WINDOW GOTO 66"; + 67 = "WINDOW GOTO 67"; + 68 = "WINDOW GOTO 68"; + 69 = "WINDOW GOTO 69"; + 70 = "WINDOW GOTO 70"; + 71 = "WINDOW GOTO 71"; + 72 = "WINDOW GOTO 72"; + 73 = "WINDOW GOTO 73"; + 74 = "WINDOW GOTO 74"; + 75 = "WINDOW GOTO 75"; + 76 = "WINDOW GOTO 76"; + 77 = "WINDOW GOTO 77"; + 78 = "WINDOW GOTO 78"; + 79 = "WINDOW GOTO 79"; + 80 = "WINDOW GOTO 80"; + 81 = "WINDOW GOTO 81"; + 82 = "WINDOW GOTO 82"; + 83 = "WINDOW GOTO 83"; + 84 = "WINDOW GOTO 84"; + 85 = "WINDOW GOTO 85"; + 86 = "WINDOW GOTO 86"; + 87 = "WINDOW GOTO 87"; + 88 = "WINDOW GOTO 88"; + 89 = "WINDOW GOTO 89"; + 90 = "WINDOW GOTO 90"; + 91 = "WINDOW GOTO 91"; + 92 = "WINDOW GOTO 92"; + 93 = "WINDOW GOTO 93"; + 94 = "WINDOW GOTO 94"; + 95 = "WINDOW GOTO 95"; + 96 = "WINDOW GOTO 96"; + 97 = "WINDOW GOTO 97"; + 98 = "WINDOW GOTO 98"; + 99 = "WINDOW GOTO 99"; +}; + +statusbar = { + + items = { + + barstart = "{sbstart}"; + barend = "{sbend}"; + + topicbarstart = "{topicsbstart}"; + topicbarend = "{topicsbend}"; + + time = "{sb $Z}"; + user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}"; + + window = "{sb $winref:$tag/$itemname{sbmode $M}}"; + window_empty = "{sb $winref{sbservertag $tag}}"; + + prompt = "{prompt $[.15]itemname}"; + prompt_empty = "{prompt $winname}"; + + topic = " $topic"; + topic_empty = " Irssi v$J - http://www.irssi.org"; + + lag = "{sb Lag: $0-}"; + act = "{sb Act: $0-}"; + more = "-- more --"; + }; + + default = { + + window = { + + disabled = "no"; + type = "window"; + placement = "bottom"; + position = "1"; + visible = "active"; + + items = { + barstart = { priority = "100"; }; + time = { }; + user = { }; + window = { }; + window_empty = { }; + lag = { priority = "-1"; }; + act = { priority = "10"; }; + more = { priority = "-1"; alignment = "right"; }; + barend = { priority = "100"; alignment = "right"; }; + }; + }; + + window_inact = { + + type = "window"; + placement = "bottom"; + position = "1"; + visible = "inactive"; + + items = { + barstart = { priority = "100"; }; + window = { }; + window_empty = { }; + more = { priority = "-1"; alignment = "right"; }; + barend = { priority = "100"; alignment = "right"; }; + }; + }; + + prompt = { + + type = "root"; + placement = "bottom"; + position = "100"; + visible = "always"; + + items = { + prompt = { priority = "-1"; }; + prompt_empty = { priority = "-1"; }; + input = { priority = "10"; }; + }; + }; + + topic = { + + type = "root"; + placement = "top"; + position = "1"; + visible = "always"; + + items = { + topicbarstart = { priority = "100"; }; + topic = { }; + topic_empty = { }; + topicbarend = { priority = "100"; alignment = "right"; }; + }; + }; + }; +}; +settings = { + core = { real_name = "REALNAME"; user_name = "USERNAME"; nick = "USERNAME"; }; + "fe-text" = { actlist_sort = "refnum"; }; + "fe-common/core" = { theme = "aninix"; }; +}; +windows = { + 1 = { + items = ( + { + type = "CHANNEL"; + chat_type = "IRC"; + name = "CHANNELNAME"; + tag = "NETWORKNAME"; + } + ); + }; +}; +mainwindows = { 1 = { first_line = "1"; lines = "24"; }; }; diff --git a/ShadowArch/skel/.screenrc b/ShadowArch/skel/.screenrc new file mode 100644 index 0000000..ca6561d --- /dev/null +++ b/ShadowArch/skel/.screenrc @@ -0,0 +1,153 @@ +# +# Example of a user's .screenrc file +# + +# This is how one can set a reattach password: +# password ODSJQf.4IJN7E # "1234" + +# no annoying audible bell, please +vbell on + +# detach on hangup +autodetach on + +# don't display the copyright page +startup_message off + +# emulate .logout message +pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended." + +# advertise hardstatus support to $TERMCAP +# termcapinfo * '' 'hs:ts=\E_:fs=\E\\:ds=\E_\E\\' + +# make the shell in every window a login shell +#shell -$SHELL + +# autoaka testing +# shellaka '> |tcsh' +# shellaka '$ |sh' + +# set every new windows hardstatus line to somenthing descriptive +# defhstatus "screen: ^En (^Et)" + +defscrollback 1000 + +# don't kill window after the process died +# zombie "^[" + +# enable support for the "alternate screen" capability in all windows +# altscreen on + +################ +# +# xterm tweaks +# + +#xterm understands both im/ic and doesn't have a status line. +#Note: Do not specify im and ic in the real termcap/info file as +#some programs (e.g. vi) will not work anymore. +termcap xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l +terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l + +#80/132 column switching must be enabled for ^AW to work +#change init sequence to not switch width +termcapinfo xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l + +# Make the output buffer large for (fast) xterms. +#termcapinfo xterm* OL=10000 +termcapinfo xterm* OL=100 + +# tell screen that xterm can switch to dark background and has function +# keys. +termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l' +termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~' +termcapinfo xterm 'kh=\EOH:kI=\E[2~:kD=\E[3~:kH=\EOF:kP=\E[5~:kN=\E[6~' + +# special xterm hardstatus: use the window title. +termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007' + +#terminfo xterm 'vb=\E[?5h$<200/>\E[?5l' +termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l' + +# emulate part of the 'K' charset +termcapinfo xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337' + +# xterm-52 tweaks: +# - uses background color for delete operations +termcapinfo xterm* be + +################ +# +# wyse terminals +# + +#wyse-75-42 must have flow control (xo = "terminal uses xon/xoff") +#essential to have it here, as this is a slow terminal. +termcapinfo wy75-42 xo:hs@ + +# New termcap sequences for cursor application mode. +termcapinfo wy* CS=\E[?1h:CE=\E[?1l:vi=\E[?25l:ve=\E[?25h:VR=\E[?5h:VN=\E[?5l:cb=\E[1K:CD=\E[1J + +################ +# +# other terminals +# + +# make hp700 termcap/info better +termcapinfo hp700 'Z0=\E[?3h:Z1=\E[?3l:hs:ts=\E[62"p\E[0$~\E[2$~\E[1$}:fs=\E[0}\E[61"p:ds=\E[62"p\E[1$~\E[61"p:ic@' + +# Extend the vt100 desciption by some sequences. +termcap vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC +terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC +termcapinfo linux C8 +# old rxvt versions also need this +# termcapinfo rxvt C8 + + +################ +# +# keybindings +# + +#remove some stupid / dangerous key bindings +bind k +bind ^k +bind . +bind ^\ +bind \\ +bind ^h +bind h +#make them better +bind 'K' kill +bind 'I' login on +bind 'O' login off +bind '}' history + +# Yet another hack: +# Prepend/append register [/] to the paste if ^a^] is pressed. +# This lets me have autoindent mode in vi. +register [ "\033:se noai\015a" +register ] "\033:se ai\015a" +bind ^] paste [.] + +################ +# +# default windows +# + +# screen -t local 0 +# screen -t mail 1 mutt +# screen -t 40 2 rlogin server + +# caption always "%3n %t%? @%u%?%? [%h]%?%=%c" +# hardstatus alwaysignore +# hardstatus alwayslastline "%Lw" + +# bind = resize = +# bind + resize +1 +# bind - resize -1 +# bind _ resize max +# +# defnonblock 1 +# blankerprg rain -d 100 +# idle 30 blanker diff --git a/ShadowArch/tmux.conf b/ShadowArch/tmux.conf new file mode 100644 index 0000000..e74445e --- /dev/null +++ b/ShadowArch/tmux.conf @@ -0,0 +1,6 @@ +unbind C-z +set-option -ga terminal-overrides ',*:enacs@:smacs@:rmacs@:acsc@' +bind-key -T prefix X confirm-before -p "kill-pane #P? (y/n)" kill-pane +bind-key -T prefix x new-window cryptoworkbench +bind-key -T prefix b new-window lynx https://aninix.net/ +bind-key -T prefix s set status diff --git a/ShadowArch/vimrc b/ShadowArch/vimrc new file mode 100644 index 0000000..5e61be8 --- /dev/null +++ b/ShadowArch/vimrc @@ -0,0 +1,32 @@ +" 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/Shared/Makefile b/Shared/Makefile index 4900a46..32aa3dc 100644 --- a/Shared/Makefile +++ b/Shared/Makefile @@ -5,6 +5,7 @@ compile: @echo Nothing to compile. install: compile + mkdir -p ${LOCATION} for i in ${LIST}; do cp ./$$i ${LOCATION}; done make checkperm diff --git a/Shared/replicate-ssh-profiles b/Shared/replicate-ssh-profiles index ab3e8ea..fe128c7 100755 --- a/Shared/replicate-ssh-profiles +++ b/Shared/replicate-ssh-profiles @@ -1,15 +1,58 @@ #!/bin/bash +# Process CLI arguments to set up assumptions. searchterm="$1" if [ -z "$searchterm" ]; then searchterm="'*'"; fi -for system in `egrep '^Host ' $HOME/.ssh/config | cut -f 2 -d ' ' | egrep $searchterm`; do - printf "$system ... " - privfile="$(grep IdentityFile $HOME/.ssh/config | grep `echo $system | cut -f 1 -d '-'` | head -n 1 | cut -f 2 -d ' ')" - command='chmod 0700 $HOME $HOME/.ssh; echo "'`cat $privfile.pub`'" > $HOME/.ssh/authorized_keys; cp $HOME/.ssh/authorized_keys $HOME/.ssh/id_rsa.pub; chmod 0600 $HOME/.ssh/authorized_keys; chown -R `whoami` $HOME; mv $HOME/.profile $HOME/.profile.bak; mv $HOME/.bashrc $HOME/.bashrc.bak' - ssh $system bash -c "$command" - if [ $? -ne 0 ]; then printf "FAILED\n"; continue; fi - scp $privfile $system:.ssh/id_rsa - scp $HOME/.bashrc $system:.bashrc - scp $HOME/.profile $system:.profile - printf "DONE\n" -done + +### +### Sets up key-based auth to remote hosts and replicate local .bashrc and .profile to them. +### Assumes that +### +### (Assumed) term to search for as a prefix +### (Assumed) system .ssh/config hostname +### (Assumed) system real hostname +function push() { +tput setaf 2; tput bold; printf "$system ($realname) ... \n"; tput sgr0; +# Find the Private key to use. +privfile="$(grep IdentityFile $HOME/.ssh/config | grep `echo $system | cut -f 1 -d '-'` | head -n 1 | cut -f 2 -d ' ')" +if [ -z "$privfile" ]; then privfile="$HOME/.ssh/id_rsa"; fi +command='echo mkdir -p "$HOME/.ssh" &> /dev/null; mkdir -p "$HOME/.ssh"; chmod 0700 $HOME $HOME/.ssh; echo "'`cat $privfile.pub`'" > $HOME/.ssh/authorized_keys; cp $HOME/.ssh/authorized_keys $HOME/.ssh/id_rsa.pub; chmod 0600 $HOME/.ssh/authorized_keys; chown -R `whoami` $HOME 2>/dev/null; mv $HOME/.profile $HOME/.profile.bak 2>/dev/null; mv $HOME/.bashrc $HOME/.bashrc.bak 2>/dev/null; printf "";' +# Make sure that we have the right host signature. +ssh-keygen -R "$realname" +if [ $? -ne 0 ]; then printf "FAILED\n\n"; return; fi +ssh-keyscan -H "$realname" >> ~/.ssh/known_hosts +if [ $? -ne 0 ]; then printf "FAILED\n\n"; return; fi +# Set up home folder and send public key. +ssh -t $system bash -c "$command" +if [ $? -ne 0 ]; then printf "FAILED\n\n"; return; fi +# Self-allow key-based auth +scp $privfile $system:.ssh/id_rsa +if [ $? -ne 0 ]; then printf "FAILED\n\n"; return; fi +# Pass profiles. +scp $HOME/.bashrc $system:.bashrc +if [ $? -ne 0 ]; then printf "FAILED\n\n"; return; fi +scp $HOME/.profile $system:.profile +if [ $? -ne 0 ]; then + printf "FAILED\n\n"; +else + printf "DONE\n\n" +fi +} + +### +### If the search term is in ~/.ssh/config, then replicate to all matching hosts. +### Otherwise, replicate to target specifically. +### +### (Assumed) term to search for as a prefix +if [ `grep -c "$searchterm" "$HOME/.ssh/config"` -gt 0 ]; then + for system in `egrep '^Host ' $HOME/.ssh/config | cut -f 2 -d ' ' | egrep $searchterm`; do + entry=$(cat -n $HOME/.ssh/config | grep $system | head -n 1 | xargs | cut -f 1 -d ' ') + linenum=$(( $entry + 1 )) + realname="$(cat -n $HOME/.ssh/config | grep " ${linenum}$(printf '\t')" | rev | cut -f 1 -d ' ' | rev)" + if [ -z "$realname" ]; then realname="$system"; fi + push; + done +else + system="$searchterm" + push; +fi