diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-03-30 01:00:51 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-03-30 01:00:51 -0400 |
commit | f4c4550e327d9090c82a735d39d104d0bedb602d (patch) | |
tree | fcfa762512155c132a66d3adbb56067ca2d5d61b /.config/lf/lfrc | |
parent | 43dbb32d741e11f8e06341f515944ec757d4578f (diff) |
Loads of laptop shit
Diffstat (limited to '.config/lf/lfrc')
-rwxr-xr-x | .config/lf/lfrc | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/.config/lf/lfrc b/.config/lf/lfrc index fe28549..48a5d0d 100755 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -1,20 +1,3 @@ -# Luke's lf settings - - -# Note on Image Previews -# For those wanting image previews, like this system, there are four steps to -# set it up. These are done automatically for LARBS users, but I will state -# them here for others doing it manually. -# -# 1. ueberzug must be installed. -# 2. The scope file (~/.config/lf/scope for me), must have a command similar to -# mine to generate ueberzug images. -# 3. A `set cleaner` line as below is a cleaner script. -# 4. lf should be started through a wrapper script (~/.local/bin/lfub for me) -# that creates the environment for ueberzug. This command can be be aliased -# in your shellrc (`alias lf="lfub") or if set to a binding, should be -# called directly instead of normal lf. - # Basic vars set sixel true set shellopts '-eu' @@ -23,10 +6,11 @@ set scrolloff 10 set icons set period 1 set hiddenfiles ".*:*.aux:*.log:*.bbl:*.bcf:*.blg:*.run.xml:tags:*.org_archive" -set cleaner '~/.config/lf/cleaner' -set previewer '~/.config/lf/scope' set autoquit true +set previewer '~/.config/lf/preview' +set cleaner '~/.config/lf/clean' + # cmds/functions cmd open ${{ case $(file --mime-type "$(readlink -f $f)" -b) in @@ -75,7 +59,7 @@ cmd moveto ${{ clear; tput cup $(($(tput lines)/3)); tput bold set -f clear; echo "Move to where?" - dest="$(sed -e 's/\s*#.*//' -e '/^$/d' -e 's/^\S*\s*//' ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | fzf | sed 's|~|$HOME|')" && + dest="$(fzf-shortcuts)" && for x in $fx; do eval mv -iv \"$x\" \"$dest\" done && @@ -117,8 +101,6 @@ cmd bulkrename ${{ }} # Bindings -map <c-f> $lf -remote "send $id select \"$(fzf)\"" -map J $lf -remote "send $id cd $(sed -e 's/\s*#.*//' -e '/^$/d' -e 's/^\S*\s*//' ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | fzf)" map D delete map <c-n> push :mkdir<space> map <c-r> reload @@ -143,10 +125,10 @@ map V push :!nvim<space> map N push :!touch<space> map W $setsid -f $TERMINAL >/dev/null 2>&1 -map Y $printf "%s" "$fx" | xclip -selection clipboard +map Y $printf "%s" "$fx" | wl-copy map E $dropbox-cli exclude add "$f" && notify-send -a " Dropbox" "Excluded $f from computer" map R $dropbox-restore "$f" -map S $dropbox-cli sharelink "$f" | xsel -b && notify-send -a " Dropbox" "Link copied to clipboard." +map S $dropbox-cli sharelink "$f" | wl-copy && notify-send -a " Dropbox" "Link copied to clipboard." # Source Bookmarks source "~/.config/lf/shortcuts" |