summaryrefslogtreecommitdiff
path: root/lf/lfrc
blob: d83069e58fc1108fc942c5bf99996d2fd1964832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
set ratios 1:2:3
set cleaner ctpvclear
set previewer ctpv
&ctpv -s $id .
&ctpvquit $id
# Basic Settings
set preview true
set drawbox false
set icons true
set ignorecase true

# Custom Functions
cmd open ${{
  case $(echo -n $f | rev | cut -d'.' -f1 | rev) in
    jnlp)
      javaws "$f"
      ;;
    *)
      case $(file --mime-type "$f" -bL) in
        text/*|application/json) $EDITOR "$f" ;;
        video/*) mpv "$f" ;;
        audio/*) mpv "$f" ;;
        application/pdf) zathura "$f" ;;
        image/*) nsxiv "$f" ;;
        *) xdg-open "$f" ;;
      esac
      ;;
  esac
}}

cmd execute ${{ exec "$f" }}

cmd vimv ${{ exec vimv }}

cmd mkdir ${{
  printf "Directory Name: "
  read ans
  mkdir $ans
}}

cmd mkfile ${{
  printf "File Name: "
  read ans
  $EDITOR $ans
}}

cmd chmod ${{
  printf "Mode Bits: "
  read ans

  for file in "$fx"
  do
    chmod $ans $file
  done
}}

cmd sudomkfile ${{
  printf "File Name: "
  read ans
  doas $EDITOR $ans
}}

cmd setwallpaper %cp "$f" ~/background.jpg && xwallpaper --center "$f"

cmd fzf_jump ${{
  res="$(find . -maxdepth 3 | fzf --reverse --header='Jump to location')"
  if [ -f "$res" ]; then
    cmd="select"
  elif [ -d "$res" ]; then
    cmd="cd"
  fi
  lf -remote "send $id $cmd \"$res\""
}}

cmd broot_jump ${{
  f=$(mktemp)
  res="$(broot --outcmd $f && cat $f | sed 's/cd //')"
  rm -f "$f"
  if [ -f "$res" ]; then
    cmd="select"
  elif [ -d "$res" ]; then
    cmd="cd"
  fi
  lf -remote "send $id $cmd \"$res\""
}}

cmd open_config  ${{
  $EDITOR $(bookmenu -b ~/.config/bookmenu/configs -f fzf -o)
}}

cmd dragon %dragon-drop -a -x $fx
cmd dragon-stay %dragon-drop -a $fx
cmd dragon-individual %dragon-drop $fx
cmd cpdragon %cpdragon
cmd mvdragon %mvdragon
cmd dlfile %dlfile

# Archive bindings
cmd unarchive ${{
  case "$f" in
      *.zip) unzip "$f" ;;
      *.tar.gz) tar -xzvf "$f" ;;
      *.tar.bz2) tar -xjvf "$f" ;;
      *.tar.xz) tar -xJvf "$f" ;;
      *.tar) tar -xvf "$f" ;;
      *) echo "Unsupported format" ;;
  esac
}}

cmd gitpull ${{
  git pull
  read dummy
}}

cmd gitadd ${{
  git add $(basename $fx)
}}

cmd gitaddall ${{
  git add .
}}

cmd gitpush ${{
  git push
  read dummy
}}

cmd gitcommit ${{
  git commit -S
}}

cmd gitdiff ${{
  git diff
  read dummy
}}

cmd gitdifffile ${{
  git diff `basename $fx`
  read dummy
}}

cmd gitstatus ${{
  git status | less
}}

cmd gitrestore ${{
  git restore `basename $fx`
  read dummy
}}

cmd gitsubmoduleupdate ${{
  git submodule update
  read dummy
}}

cmd gitsubmoduleinit ${{
  git submodule update --init
  read dummy
}}

cmd gitsubmoduleadd ${{
  read url
  read folder
  git submodule add "$url" "$folder"
  read dummy
}}

cmd make ${{
  make -j4 all
  read dummy
}}

cmd makeinstall ${{
  sudo make -j4 install
  read dummy
}}

cmd makeclean ${{
  make -j4 clean
  read dummy
}}

cmd openshell ${{
  zsh
}}

cmd catclip ${{
  catclip "$fx"
}}

cmd zip %zip -r "$f" "$f"
cmd tar %tar cvf "$f.tar" "$f"
cmd targz %tar cvzf "$f.tar.gz" "$f"
cmd tarbz2 %tar cjvf "$f.tar.bz2" "$f"

# Trash cli bindings
cmd trash ${{
  files=$(printf "$fx" | tr '\n' ';')
  while [ "$files" ]; do
    # extract the substring from start of string up to delimiter.
    # this is the first "element" of the string.
    file=${files%%;*}

    trash-put "$(basename "$file")"
    # if there's only one element left, set `files` to an empty string.
    # this causes us to exit this `while` loop.
    # else, we delete the first "element" of the string from files, and move onto the next.
    if [ "$files" = "$file" ]; then
      files=''
    else
      files="${files#*;}"
    fi
  done
}}

cmd clear_trash %trash-empty

cmd restore_trash ${{
  trash-restore
}}

cmd stripspace %stripspace "$f"

# Bindings
# Remove some defaults
map m
map o
map n
map "'"
map '"'
map d
map c
map e
map f
map ,

# ZachIR bindings
map ,gp gitpull
map ,gP gitpush
map ,gc gitcommit
map ,ga gitadd
map ,gA gitaddall
map ,gd gitdifffile
map ,gD gitdiff
map ,gu gitsubmoduleupdate
map ,gi gitsubmoduleinit
map ,gm gitsubmoduleadd
map ,gs gitstatus
map ,gr gitrestore
map ,mk make
map ,mi makeinstall
map ,mC makeclean
map ,ss openshell
map ,sc catclip
map ,vv vimv


# Not really image preview
map - $~/.config/lf/draw_img "$f"

cmd video_preview ${{
    CACHE=$(mktemp /tmp/thumb_cache.XXXXX)
    ffmpegthumbnailer -i "$f" -o $CACHE -s 0
    ~/.config/lf/draw_img $CACHE && rm $CACHE
}}
map + :video_preview

# File Openers
map ee $$EDITOR "$f"
map u $view "$f"

# Archive Mappings
map az zip
map at tar
map ag targz
map ab targz
map au unarchive

# Trash Mappings
map dd trash
map tc clear_trash
map tr restore_trash

# Broot Mapping
map f broot_jump

# Dragon Mapping
map dr dragon
map ds dragon-stay
map di dragon-individual
map dm mvdragon
map dc cpdragon
map dl dlfile

map ss stripspace

# Basic Functions
map .. set hidden!
map ./ execute
map DD delete
map p paste
map x cut
map y copy
map <enter> open
map mf mkfile
map mr sudomkfile
map md mkdir
map ms $mkscript
map ch chmod
map bg setwallpaper
map o open_config
map br $vimv $fx
map r rename
map H top
map L bottom
map R reload
map C clear
map U unselect

# Movement
map g. cd "/home/zachir"
## PATHS
map gE. cd "/etc"
map gO. cd "/opt"
map gOa cd "/opt/Audio Assault"
map gR cd "/"
map gU. cd "/usr"
map gUs cd "/usr/share"
map gV. cd "/var"
map gaw cd "/home/zachir/.config/awesome"
map gb. cd "/home/zachir/.local/bin"
map gbb cd "/home/zachir/.local/bin/blocks"
map gbf cd "/home/zachir/.local/bin/slatpak-sc"
map gbg cd "/home/zachir/.local/bin/generics"
map gbi cd "/home/zachir/.local/bin/ignore"
map gbsc cd "/home/zachir/.local/bin/scripts"
map gbsh cd "/home/zachir/.local/bin/shortcmds"
map gbsp cd "/home/zachir/.local/bin/sp"
map gc cd "/home/zachir/.config"
map gdb cd "/home/zachir/.local/src/dwmbar"
map gdc cd "/home/zachir/Documents"
map gdl cd "/home/zachir/.local/src/dwl"
map gdm cd "/home/zachir/.local/src/dmenu"
map gdo cd "/home/zachir/Downloads"
map gdp cd "/home/zachir/Downloads/plugin/zachir_librem.one"
map gdw cd "/home/zachir/Downloads/wine"
map ge cd "/home/zachir/Desktop"
map gf cd "/home/zachir/.var/app"
map gh cd "/home/zachir/.config/hypr"
map glb cd "/home/zachir/.local/bin"
map glc cd "/home/zachir/Games/cache"
map glf cd "/home/zachir/.config/lf"
map gls cd "/home/zachir/.local/share"
map gn3 cd "/home/zachir/.vst3/native"
map gns cd "/home/zachir/.vst/native"
map gnv cd "/home/zachir/.config/nvim"
map gp cd "/home/zachir/Pictures"
map gqb cd "/home/zachir/.config/qutebrowser"
map gqp cd "/home/zachir/.local/share/qutebrowser-profiles"
map gre cd "/home/zachir/.local/src"
map grs cd "/etc/runit/sv"
map gsc cd "/home/zachir/.local/bin/scripts"
map gsh cd "/home/zachir/.config/sh"
map gsl cd "/home/zachir/.local/src/slock"
map gss cd "/etc/s6/sv"
map gst cd "/home/zachir/.local/src/st"
map gsx cd "/home/zachir/.config/sxhkd"
map gtr cd "/home/zachir/.local/share/Trash/files"
map gurs cd "/home/zachir/.runit/sv"
map gv3. cd "/home/zachir/.vst3"
map gv3n cd "/home/zachir/.vst3/native"
map gv3y cd "/home/zachir/.vst3/yabridge"
map gv. cd "/home/zachir/var"
map gvi cd "/home/zachir/Videos"
map gvsn cd "/home/zachir/.vst/native"
map gvs. cd "/home/zachir/.vst"
map gvsy cd "/home/zachir/.vst/yabridge"
map gwdo cd "/home/zachir/.local/share/wineprefixes/default/drive_c/users/zachir/Downloads"
map gwa cd "/home/zachir/.local/src/wallpapers"
map gwd cd "/home/zachir/.local/share/wineprefixes/default"
map gwr cd "/home/zachir/.local/share/wineprefixes"
map gwv3 cd "/home/zachir/.winvst3"
map gwvs cd "/home/zachir/.winvst"
map gww cd "/home/zachir/.local/share/wineprefixes/work"
map gx cd "/home/zachir/.config/X11"
map gy3 cd "/home/zachir/.vst3/yabridge"
map gyb cd "/home/zachir/.cache/yay"
map gyc cd "/home/zachir/.config/yay"
map gzs cd "/home/zachir/.config/zsh"
map gzx cd "/home/zachir/Documents/zachir.xyz"