ncmpcpp progress bar
This commit is contained in:
parent
ff64744c62
commit
55bce58628
|
|
@ -29,7 +29,7 @@ volume=100
|
|||
volume-max=200
|
||||
|
||||
# SCREENSHOT
|
||||
screenshot-format=png
|
||||
screenshot-format=png
|
||||
screenshot-directory="~/pix/ss/mpv" # Output directory
|
||||
screenshot-template="%f-%wH.%wM.%wS.%wT-#%#00n"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ current_item_inactive_column_prefix = $(magenta)$r
|
|||
current_item_inactive_column_suffix = $/r$(end)
|
||||
playlist_display_mode = columns
|
||||
browser_display_mode = columns
|
||||
progressbar_look = ->
|
||||
media_library_primary_tag = album_artist
|
||||
media_library_albums_split_by_date = no
|
||||
startup_screen = "media_library"
|
||||
|
|
@ -22,12 +21,15 @@ ignore_leading_the = yes
|
|||
external_editor = nvim
|
||||
use_console_editor = yes
|
||||
|
||||
## Progress bar ##
|
||||
progressbar_look = "▂▂▂"
|
||||
progressbar_color = black:b
|
||||
progressbar_elapsed_color = blue:b
|
||||
|
||||
## Colors ##
|
||||
colors_enabled = "yes"
|
||||
empty_tag_color = magenta
|
||||
main_window_color = white
|
||||
progressbar_color = black:b
|
||||
progressbar_elapsed_color = blue:b
|
||||
statusbar_color = red
|
||||
volume_color = "green"
|
||||
statusbar_time_color = cyan:b
|
||||
|
|
|
|||
|
|
@ -12,9 +12,7 @@ madd() {
|
|||
}
|
||||
|
||||
filename=$(mpc listall | dmenu -i -l 30)
|
||||
if [ -z "$filename" ]; then
|
||||
notify-send "Nothing was selected. Skipping."
|
||||
else
|
||||
if [ -n "$filename" ]; then
|
||||
madd
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
word=$(dmenu -p "Enter Word: " <&-)
|
||||
# word=$(dmenu -p "Enter Word: " <&-)
|
||||
word=$(cat ~/.local/bin/words.txt | dmenu -l 25 -p "Choose Word: ")
|
||||
#$BROWSER https://www.merriam-webster.com/dictionary/$word
|
||||
$BROWSER "https://www.google.com/search?hl=en&q=define+$word"
|
||||
if [[ -n $word ]]; then
|
||||
$BROWSER "https://www.google.com/search?hl=en&q=define+$word"
|
||||
fi
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -128,3 +128,5 @@ polyglot -> knowing or using serveral langauges
|
|||
intrude -> to go into a place in which you are not wanted or not expected to be
|
||||
speculate -> form a theory or conjecture about a subjet without firm evidence.
|
||||
mediocre -> of only average quality; not very good.
|
||||
sober -> not affected by alcohol; not drunk.
|
||||
niche -> a comfortable or suitable position in life or employment
|
||||
|
|
|
|||
Loading…
Reference in New Issue