more diffs
This commit is contained in:
parent
952a7f895d
commit
cbb635a5e9
4 changed files with 10 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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' |
|
||||
|
|
|
@ -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
5
wrappers/minecraft-launcher
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
HOME=$HOME/.local/share/minecraft
|
||||
mkdir -p "$HOME"
|
||||
exec /usr/bin/minecraft-launcher "$@"
|
Loading…
Reference in a new issue