m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-20 09:33:42 -05:00

add dictcc

Janek
2021-10-15 13:10:17 +02:00
parent 2a66401aa5
commit ae07741b50

@@ -9,7 +9,6 @@ Table of Contents
* [General](#general) * [General](#general)
* [Command history](#command-history) * [Command history](#command-history)
* [With write to terminal capabilities](#with-write-to-terminal-capabilities)
* System * System
* [i3](#i3) * [i3](#i3)
* [Copy current item to clipboard](#clipboard) * [Copy current item to clipboard](#clipboard)
@@ -42,6 +41,7 @@ Table of Contents
* [Git](#git) * [Git](#git)
* [jrnl](#jrnl) * [jrnl](#jrnl)
* [tmux](#tmux) * [tmux](#tmux)
* [dictcc translation](#dictcc-translation)
* Moving from other tools * Moving from other tools
* [fzf as rofi replacement](#fzf-as-rofi-replacement) * [fzf as rofi replacement](#fzf-as-rofi-replacement)
* [fzf as dmenu replacement](#fzf-as-dmenu-replacement) * [fzf as dmenu replacement](#fzf-as-dmenu-replacement)
@@ -56,9 +56,6 @@ Table of Contents
* [Browsing history](#browsing-history) * [Browsing history](#browsing-history)
* [Bookmarks](#bookmarks) * [Bookmarks](#bookmarks)
* [mpd](#mpd) * [mpd](#mpd)
* [fmui](#fmui)
* [fzf-mpd](#fzf-mpd)
* [clerk](#clerk)
* [Readline](#readline) * [Readline](#readline)
* [RVM](#rvm) * [RVM](#rvm)
* [Vagrant](#vagrant) * [Vagrant](#vagrant)
@@ -73,6 +70,7 @@ Table of Contents
* [Transmission](#transmission) * [Transmission](#transmission)
* [Todoist CLI](#Todoist-CLI) * [Todoist CLI](#Todoist-CLI)
Nice collection at https://github.com/DanielFGray/fzf-scripts
### General ### General
```sh ```sh
@@ -1374,23 +1372,16 @@ fmpc() {
} }
``` ```
### fzf-mpd #### fmui
[fzf-mpd](https://github.com/piotryordanov/fzf-mpd) is a zsh plugin that allows you to control mpd using fzf. By typing `fm` in the command line, you will be able to easily browse genres, artists, albums and all songs. [fmui](https://github.com/seebye/fmui) is a user interface for mpd using mpc and fzf.
![](https://github.com/piotryordanov/fzf-mpd/raw/master/demo.gif)
### fmui
[fmui](https://github.com/seebye/fmui) is an user interface for mpd using mpc and fzf.
![](https://github.com/seebye/fmui/raw/master/media/4.png) ![](https://github.com/seebye/fmui/raw/master/media/4.png)
![](https://github.com/seebye/fmui/raw/master/media/1.png) ![](https://github.com/seebye/fmui/raw/master/media/1.png)
![](https://github.com/seebye/fmui/raw/master/media/2.png) ![](https://github.com/seebye/fmui/raw/master/media/2.png)
![](https://github.com/seebye/fmui/raw/master/media/3.png) ![](https://github.com/seebye/fmui/raw/master/media/3.png)
### clerk #### clerk
[clerk](https://github.com/carnager/clerk) is an MPD client using rofi or fzf. [clerk](https://github.com/carnager/clerk) is an MPD client using rofi or fzf.
@@ -1824,3 +1815,11 @@ This works with `execute-silent` but not with `execute`, presumably because `exe
- The command used for preview is `todoist show {1}` - The command used for preview is `todoist show {1}`
- The `show` option is used to show the task details - The `show` option is used to show the task details
- The `{1}` represents the first feild in the line -> Task ID - The `{1}` represents the first feild in the line -> Task ID
### Dictcc Translation
Request database file from https://www1.dict.cc/translation_file_request.php
```sh
cat /path/to/dict.txt | tail -n +16 | fzf --tiebreak=length
```