diff options
Diffstat (limited to 'home')
22 files changed, 0 insertions, 129 deletions
diff --git a/home/.pubkey.j2 b/home/.pubkey.j2 deleted file mode 100644 index e4e3602..0000000 --- a/home/.pubkey.j2 +++ /dev/null @@ -1 +0,0 @@ -{{ pgp.asc }} diff --git a/home/Documents/pubkey.asc b/home/Documents/pubkey.asc deleted file mode 100644 index e69de29..0000000 --- a/home/Documents/pubkey.asc +++ /dev/null diff --git a/home/Pictures/pfp/bubblegum.png b/home/Pictures/pfp/bubblegum.png Binary files differdeleted file mode 100644 index 171bc62..0000000 --- a/home/Pictures/pfp/bubblegum.png +++ /dev/null diff --git a/home/Pictures/pfp/eejypenguin.png b/home/Pictures/pfp/eejypenguin.png Binary files differdeleted file mode 100644 index 2ae47cb..0000000 --- a/home/Pictures/pfp/eejypenguin.png +++ /dev/null diff --git a/home/Pictures/pfp/gus.jpg b/home/Pictures/pfp/gus.jpg Binary files differdeleted file mode 100644 index 8073311..0000000 --- a/home/Pictures/pfp/gus.jpg +++ /dev/null diff --git a/home/Pictures/pfp/mefr.png b/home/Pictures/pfp/mefr.png Binary files differdeleted file mode 100644 index 46e6948..0000000 --- a/home/Pictures/pfp/mefr.png +++ /dev/null diff --git a/home/Pictures/pfp/shoppingpenguin.png b/home/Pictures/pfp/shoppingpenguin.png Binary files differdeleted file mode 100644 index 02c14ec..0000000 --- a/home/Pictures/pfp/shoppingpenguin.png +++ /dev/null diff --git a/home/Pictures/wallpapers/beach.jpg b/home/Pictures/wallpapers/beach.jpg Binary files differdeleted file mode 100644 index e2e3949..0000000 --- a/home/Pictures/wallpapers/beach.jpg +++ /dev/null diff --git a/home/Pictures/wallpapers/flat-books.png b/home/Pictures/wallpapers/flat-books.png Binary files differdeleted file mode 100644 index 3e4cf16..0000000 --- a/home/Pictures/wallpapers/flat-books.png +++ /dev/null diff --git a/home/Pictures/wallpapers/ghibli-road.png b/home/Pictures/wallpapers/ghibli-road.png Binary files differdeleted file mode 100644 index bf7b60d..0000000 --- a/home/Pictures/wallpapers/ghibli-road.png +++ /dev/null diff --git a/home/Pictures/wallpapers/penguins-hugging.jpg b/home/Pictures/wallpapers/penguins-hugging.jpg Binary files differdeleted file mode 100644 index ee21cc5..0000000 --- a/home/Pictures/wallpapers/penguins-hugging.jpg +++ /dev/null diff --git a/home/Pictures/wallpapers/rose.png b/home/Pictures/wallpapers/rose.png Binary files differdeleted file mode 100644 index 0b11bcb..0000000 --- a/home/Pictures/wallpapers/rose.png +++ /dev/null diff --git a/home/Pictures/wallpapers/snowy-light-trees.jpg b/home/Pictures/wallpapers/snowy-light-trees.jpg Binary files differdeleted file mode 100644 index c2f6350..0000000 --- a/home/Pictures/wallpapers/snowy-light-trees.jpg +++ /dev/null diff --git a/home/Pictures/wallpapers/sunrise-mountains.webp b/home/Pictures/wallpapers/sunrise-mountains.webp Binary files differdeleted file mode 100644 index c59bd58..0000000 --- a/home/Pictures/wallpapers/sunrise-mountains.webp +++ /dev/null diff --git a/home/Pictures/wallpapers/table.png b/home/Pictures/wallpapers/table.png Binary files differdeleted file mode 100644 index bb86417..0000000 --- a/home/Pictures/wallpapers/table.png +++ /dev/null diff --git a/home/Pictures/wallpapers/wall.jpg b/home/Pictures/wallpapers/wall.jpg Binary files differdeleted file mode 100644 index f9df8f1..0000000 --- a/home/Pictures/wallpapers/wall.jpg +++ /dev/null diff --git a/home/scripts/greet.sh b/home/scripts/greet.sh deleted file mode 100755 index cb2aae5..0000000 --- a/home/scripts/greet.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -source log.sh "greet.sh" - -pick_greeting() { - path="$1" - greetings=("$1"/*) - greeting_path="${greetings[$RANDOM % ${#greetings[@]}]}" - echo "$greeting_path" -} - -GREETINGS_LIST="$XDG_CONFIG_HOME/zsh/greetings" -if [ ! -d "$GREETINGS_LIST" ]; then - log DEBUG "no such file $GREETINGS_LIST" - exit 0 -fi - -for greetings in $(ls "$GREETINGS_LIST" | sort); do - echo - log DEBUG "greeting $greetings" - - path="$GREETINGS_LIST/$greetings" - if [ ! -d "$path" ]; then - log DEBUG "greetings $path is not a directory" - continue - fi - - greeting=$(pick_greeting "$path") - cat "$greeting" -done diff --git a/home/scripts/log.sh b/home/scripts/log.sh deleted file mode 100755 index 8895097..0000000 --- a/home/scripts/log.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -# usage: -# > source log.sh <CALLER> -# > log INFO "hello" -# > log "this is epic" -# > log DEBUG "yo" - -_LOG_CALLER=$(basename "$1") - -log() { - LEVEL=$1 - shift - - case "$LEVEL" in - INFO|DEBUG|ERROR) - ;; - *) - set -- "INFO" "$LEVEL" "$@" - LEVEL="INFO" - ;; - esac - - TIMESTAMP=$(date '+%Y-%m-%d %H:%M:%S') - MESSAGE="$*" - - if [ "$LEVEL" = "DEBUG" ] && [ -z "$DEBUG" ]; then - return - fi - - echo "[$TIMESTAMP] [$_LOG_CALLER] [$LEVEL] $MESSAGE" -} diff --git a/home/scripts/pinentry.sh b/home/scripts/pinentry.sh deleted file mode 100755 index f02ee6f..0000000 --- a/home/scripts/pinentry.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -source log.sh "pinentry.sh" - -#-- <gpg> -- -bin="${HOMEBREW_PREFIX:-"/usr"}/bin" -case "$PINENTRY_USER_DATA" in - *USE_TTY*) pe=$bin/pinentry-tty ;; - *USE_CURSES*) pe=$bin/pinentry-curses ;; - *USE_QT*) pe=$bin/pinentry-qt ;; - *USE_MAC*) pe=$bin/pinentry-mac ;; - *USE_GTK2*) pe=$bin/pinentry-gtk-2 ;; - *USE_GNOME3*) pe=$bin/pinentry-gnome3 ;; - *USE_X11*) pe=$bin/pinentry-x11 ;; -esac - -log DEBUG "$pe" - -exec $pe "$@" -#-- </gpg> -- diff --git a/home/scripts/platform.sh b/home/scripts/platform.sh deleted file mode 100755 index 9449ceb..0000000 --- a/home/scripts/platform.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -case "$OSTYPE" in - solaris*) echo "solaris" ;; - darwin*) echo "osx" ;; - linux*) echo "linux" ;; - bsd*) echo "bsd" ;; - msys*) echo "windows" ;; - cygwin*) echo "windows" ;; - *) echo "unknown" ;; -esac diff --git a/home/scripts/system_name.sh b/home/scripts/system_name.sh deleted file mode 100755 index 2625293..0000000 --- a/home/scripts/system_name.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -PLATFORM="${PLATFORM:-`platform.sh`}" - -MACHINE="$HOST" -if [ "$PLATFORM" = "osx" ]; then - MACHINE="$(scutil --get ComputerName)" -elif [ "$PLATFORM" = "linux" ]; then - MACHINE="$(cat /proc/sys/kernel/hostname)" -fi - -echo $MACHINE | awk -F\. '{print $1}' \ - | tr '[:upper:]' '[:lower:]' \ - | tr ' ' '-' diff --git a/home/scripts/theme.sh b/home/scripts/theme.sh deleted file mode 100755 index 830f56b..0000000 --- a/home/scripts/theme.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# usage: theme.sh <theme_name> - -source log.sh "theme.sh" - -THEME="$1" -log DEBUG "setting theme $THEME" - -THEME_SRC="$XDG_CONFIG_HOME/theme" -THEME_DEST="$HOME/.theme" -log DEBUG "src $THEME_SRC -> dest $THEME_DEST" - -THEME_TEMPL="{{THEME}}" - -find -L "$THEME_SRC/" -type f | while read source_file; do - destination_file=`echo "$source_file" | sed "s|^$THEME_SRC|$THEME_DEST|g"` - mkdir -p `dirname $destination_file` - log DEBUG "src $source_file -> dest $destination_file" - cat "$source_file" | sed "s|$THEME_TEMPL|$THEME|g" > $destination_file -done - |