more diffs

This commit is contained in:
tavo-wasd 2023-08-06 15:09:35 -06:00
parent 952a7f895d
commit cbb635a5e9
4 changed files with 10 additions and 2 deletions

View file

@ -5,4 +5,4 @@
name=$(cut -d '-' -f 1 $HOME/Desktop/bookmarks | grep -v '^#' | sed '/^\s*$/d' | menu "Site:")
[ -z "$name" ] && exit
grep "$name" $HOME/Documents/bookmarks | cut -d '-' -f 2- | xsel -ib && notify-send "󰃀 Bookmarks" "'$name' copied to clipboard"
grep "$name" $HOME/Desktop/bookmarks | cut -d '-' -f 2- | xsel -ib && notify-send "󰃀 Bookmarks" "'$name' copied to clipboard"

View file

@ -1,6 +1,5 @@
#!/bin/sh
# Script for 'pass'
PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store"
# Ask for password name in vault
password="$(find "$PASSWORD_STORE_DIR" -type f -name '*.gpg' |

View file

@ -19,3 +19,7 @@ export \
ELECTRUMDIR="$XDG_DATA_HOME/electrum" \
CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv" \
GNUPGHOME="$XDG_DATA_HOME/gnupg" \
GOPATH="$XDG_DATA_HOME/go" \
alias \
wget="wget --hsts-file=$XDG_DATA_HOME/wget/wget-hsts"

5
wrappers/minecraft-launcher Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env sh
HOME=$HOME/.local/share/minecraft
mkdir -p "$HOME"
exec /usr/bin/minecraft-launcher "$@"