ncmpcpp progress bar
This commit is contained in:
parent
ff64744c62
commit
55bce58628
|
|
@ -29,7 +29,7 @@ volume=100
|
||||||
volume-max=200
|
volume-max=200
|
||||||
|
|
||||||
# SCREENSHOT
|
# SCREENSHOT
|
||||||
screenshot-format=png
|
screenshot-format=png
|
||||||
screenshot-directory="~/pix/ss/mpv" # Output directory
|
screenshot-directory="~/pix/ss/mpv" # Output directory
|
||||||
screenshot-template="%f-%wH.%wM.%wS.%wT-#%#00n"
|
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)
|
current_item_inactive_column_suffix = $/r$(end)
|
||||||
playlist_display_mode = columns
|
playlist_display_mode = columns
|
||||||
browser_display_mode = columns
|
browser_display_mode = columns
|
||||||
progressbar_look = ->
|
|
||||||
media_library_primary_tag = album_artist
|
media_library_primary_tag = album_artist
|
||||||
media_library_albums_split_by_date = no
|
media_library_albums_split_by_date = no
|
||||||
startup_screen = "media_library"
|
startup_screen = "media_library"
|
||||||
|
|
@ -22,12 +21,15 @@ ignore_leading_the = yes
|
||||||
external_editor = nvim
|
external_editor = nvim
|
||||||
use_console_editor = yes
|
use_console_editor = yes
|
||||||
|
|
||||||
|
## Progress bar ##
|
||||||
|
progressbar_look = "▂▂▂"
|
||||||
|
progressbar_color = black:b
|
||||||
|
progressbar_elapsed_color = blue:b
|
||||||
|
|
||||||
## Colors ##
|
## Colors ##
|
||||||
colors_enabled = "yes"
|
colors_enabled = "yes"
|
||||||
empty_tag_color = magenta
|
empty_tag_color = magenta
|
||||||
main_window_color = white
|
main_window_color = white
|
||||||
progressbar_color = black:b
|
|
||||||
progressbar_elapsed_color = blue:b
|
|
||||||
statusbar_color = red
|
statusbar_color = red
|
||||||
volume_color = "green"
|
volume_color = "green"
|
||||||
statusbar_time_color = cyan:b
|
statusbar_time_color = cyan:b
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,7 @@ madd() {
|
||||||
}
|
}
|
||||||
|
|
||||||
filename=$(mpc listall | dmenu -i -l 30)
|
filename=$(mpc listall | dmenu -i -l 30)
|
||||||
if [ -z "$filename" ]; then
|
if [ -n "$filename" ]; then
|
||||||
notify-send "Nothing was selected. Skipping."
|
|
||||||
else
|
|
||||||
madd
|
madd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
#!/bin/sh
|
#!/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.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
|
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.
|
speculate -> form a theory or conjecture about a subjet without firm evidence.
|
||||||
mediocre -> of only average quality; not very good.
|
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