diff --git a/bash/.alias.sh b/bash/.alias.sh index 73a1ac2..466bf20 100644 --- a/bash/.alias.sh +++ b/bash/.alias.sh @@ -216,3 +216,12 @@ azkubeswitch() { az aks get-credentials --resource-group $1 --name $2 fi } + +# merges all pdfs in current directory into a new pdf +mergepdf() { + if [ -z "$1" ]; then + echo "please provide an output name for your pdf file: mergepdf out.pdf" + else + pdfunite ./*.pdf "$1" + fi +} diff --git a/bash/mounts.sh b/bash/mounts.sh index ccd40a6..adae337 100644 --- a/bash/mounts.sh +++ b/bash/mounts.sh @@ -76,6 +76,11 @@ declare -A MOUNTS10=( [share]="audiobooks" [mount]="audiobooks" ) +declare -A MOUNTS11=( + [server]="$MY_SERVER_LOCATION" + [share]="games" + [mount]="games" +) # declare array with "objects" declare -n MOUNTS diff --git a/dependencies/pacman.txt b/dependencies/pacman.txt index 526702a..6c366cd 100644 --- a/dependencies/pacman.txt +++ b/dependencies/pacman.txt @@ -103,3 +103,4 @@ noto-fonts-emoji autorandr papirus-icon-theme bitwarden +poppler diff --git a/wallpapers/images/kitty.jpg b/wallpapers/images/kitty.jpg new file mode 100644 index 0000000..0d0ceb9 Binary files /dev/null and b/wallpapers/images/kitty.jpg differ