More small changes
This commit is contained in:
parent
111c78b6e7
commit
e0a54706cd
2 changed files with 6 additions and 23 deletions
|
@ -39,7 +39,7 @@ source ~/.config/fish/private.fish
|
||||||
# Environment variables
|
# Environment variables
|
||||||
set -x EDITOR "vim"
|
set -x EDITOR "vim"
|
||||||
set -x USER "lu"
|
set -x USER "lu"
|
||||||
set -x SHELL /opt/homebrew/bin/fish
|
set -x SHELL (which fish)
|
||||||
set -x TERM xterm-256color
|
set -x TERM xterm-256color
|
||||||
set -x N_PREFIX ~/n
|
set -x N_PREFIX ~/n
|
||||||
set -x GTK_IM_MODULE ibus
|
set -x GTK_IM_MODULE ibus
|
||||||
|
@ -94,9 +94,10 @@ alias hp "hg push"
|
||||||
alias hpl "hg pull"
|
alias hpl "hg pull"
|
||||||
alias hs "hg status"
|
alias hs "hg status"
|
||||||
alias hl "hg log"
|
alias hl "hg log"
|
||||||
|
# XBPS Aliases
|
||||||
# asdf support
|
alias xi "sudo xbps-install"
|
||||||
echo -e "\nsource "(brew --prefix asdf)"/asdf.fish" >> ~/.config/fish/config.fish
|
alias xq "xbps-query"
|
||||||
|
alias xr "sudo xbps-remove"
|
||||||
|
|
||||||
# Aliases that overwrite other, existing commands
|
# Aliases that overwrite other, existing commands
|
||||||
if command --search hub > /dev/null do
|
if command --search hub > /dev/null do
|
||||||
|
|
|
@ -60,22 +60,4 @@ case $opt in # active window / selection / whole screen
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# === TAKE ACTION ON FILE ===
|
# === TAKE ACTION ON FILE ===
|
||||||
# in a loop, user may want to take many actions
|
wl-copy < $img
|
||||||
# while
|
|
||||||
action="$(zenity --title="[Grim] Took screenshot: $img" --width=600 --height=300 --list \
|
|
||||||
--column='Command' --column='Choose an action:' <<- EOF
|
|
||||||
wl-copy < "\$img"
|
|
||||||
Copy image to clipboard
|
|
||||||
rm "\$img"; break
|
|
||||||
Delete image and exit
|
|
||||||
$viewer "\$img"
|
|
||||||
View image with $viewer
|
|
||||||
$editor "\$img"
|
|
||||||
Edit image with $editor
|
|
||||||
mkdir -p "\$ssdir"; cp "\$img" "\$ssdir"
|
|
||||||
Save image to $ssdir
|
|
||||||
EOF
|
|
||||||
)"
|
|
||||||
#do
|
|
||||||
eval "$action"
|
|
||||||
#done
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue