shortcuts (2613B)
1 #!/bin/sh 2 3 bmdirs="${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs" 4 bmfiles="${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-files" 5 6 # Output locations. Unactivated progs should go to /dev/null. 7 shell_shortcuts="${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc" 8 shell_env_shortcuts="${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutenvrc" 9 zsh_named_dirs="${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" 10 lf_shortcuts="/dev/null" 11 vim_shortcuts="/dev/null" 12 qute_shortcuts="/dev/null" 13 fish_shortcuts="/dev/null" 14 vifm_shortcuts="/dev/null" 15 16 # Remove, prepare files 17 rm -f "$lf_shortcuts" "$qute_shortcuts" "$zsh_named_dirs" "$vim_shortcuts" 2>/dev/null 18 printf "# vim: filetype=sh\\n" > "$fish_shortcuts" 19 printf "# vim: filetype=sh\\nalias " > "$shell_shortcuts" 20 printf "# vim: filetype=sh\\n" > "$shell_env_shortcuts" 21 printf "\" vim: filetype=vim\\n" > "$vifm_shortcuts" 22 23 # Format the `directories` file in the correct syntax and sent it to all three configs. 24 eval "echo \"$(cat "$bmdirs")\"" | \ 25 awk "!/^\s*#/ && !/^\s*\$/ {gsub(\"\\\s*#.*$\",\"\"); 26 printf(\"%s=\42cd %s && ls -A\42 \\\\\n\",\$1,\$2) >> \"$shell_shortcuts\" ; 27 printf(\"[ -n \42%s\42 ] && export %s=\42%s\42 \n\",\$1,\$1,\$2) >> \"$shell_env_shortcuts\" ; 28 printf(\"hash -d %s=%s \n\",\$1,\$2) >> \"$zsh_named_dirs\" ; 29 printf(\"abbr %s \42cd %s; and ls -A\42\n\",\$1,\$2) >> \"$fish_shortcuts\" ; 30 printf(\"map g%s :cd %s<CR>\nmap t%s <tab>:cd %s<CR><tab>\nmap M%s <tab>:cd %s<CR><tab>:mo<CR>\nmap Y%s <tab>:cd %s<CR><tab>:co<CR> \n\",\$1,\$2, \$1, \$2, \$1, \$2, \$1, \$2) >> \"$vifm_shortcuts\" ; 31 printf(\"config.bind(';%s', \42set downloads.location.directory %s ;; hint links download\42) \n\",\$1,\$2) >> \"$qute_shortcuts\" ; 32 printf(\"map C%s cd \42%s\42 \n\",\$1,\$2) >> \"$lf_shortcuts\" ; 33 printf(\"cmap ;%s %s\n\",\$1,\$2) >> \"$vim_shortcuts\" }" 34 35 # Format the `files` file in the correct syntax and sent it to both configs. 36 eval "echo \"$(cat "$bmfiles")\"" | \ 37 awk "!/^\s*#/ && !/^\s*\$/ {gsub(\"\\\s*#.*$\",\"\"); 38 printf(\"%s=\42\$EDITOR %s\42 \\\\\n\",\$1,\$2) >> \"$shell_shortcuts\" ; 39 printf(\"[ -n \42%s\42 ] && export %s=\42%s\42 \n\",\$1,\$1,\$2) >> \"$shell_env_shortcuts\" ; 40 printf(\"hash -d %s=%s \n\",\$1,\$2) >> \"$zsh_named_dirs\" ; 41 printf(\"abbr %s \42\$EDITOR %s\42 \n\",\$1,\$2) >> \"$fish_shortcuts\" ; 42 printf(\"map %s :e %s<CR> \n\",\$1,\$2) >> \"$vifm_shortcuts\" ; 43 printf(\"map E%s \$\$EDITOR \42%s\42 \n\",\$1,\$2) >> \"$lf_shortcuts\" ; 44 printf(\"cmap ;%s %s\n\",\$1,\$2) >> \"$vim_shortcuts\" }" 45