diff options
Diffstat (limited to 'cmus')
-rwxr-xr-x | cmus/.config/cmus/cmus-status-display.sh | 8 | ||||
-rw-r--r-- | cmus/.config/cmus/nerdz.theme | 57 |
2 files changed, 65 insertions, 0 deletions
diff --git a/cmus/.config/cmus/cmus-status-display.sh b/cmus/.config/cmus/cmus-status-display.sh new file mode 100755 index 0000000..83dae0d --- /dev/null +++ b/cmus/.config/cmus/cmus-status-display.sh | |||
@@ -0,0 +1,8 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | artist=$( cmus-remote -Q | grep tag\ artist\ | sed 's/tag artist //' ) | ||
4 | title=$( cmus-remote -Q | grep tag\ title\ | sed 's/tag title //' ) | ||
5 | album=$( cmus-remote -Q | grep tag\ album\ | sed 's/tag album //' ) | ||
6 | |||
7 | xdotool key "ctrl+space" &> /dev/null | ||
8 | notify-send -u low "${title}" "${album} ยท ${artist}" | ||
diff --git a/cmus/.config/cmus/nerdz.theme b/cmus/.config/cmus/nerdz.theme new file mode 100644 index 0000000..1cc89b7 --- /dev/null +++ b/cmus/.config/cmus/nerdz.theme | |||
@@ -0,0 +1,57 @@ | |||
1 | # Directory colors | ||
2 | set color_win_dir=default | ||
3 | |||
4 | # Normal text | ||
5 | set color_win_fg=242 | ||
6 | |||
7 | # Window background color. | ||
8 | set color_win_bg=default | ||
9 | |||
10 | # Command line color. | ||
11 | set color_cmdline_bg=default | ||
12 | set color_cmdline_fg=default | ||
13 | |||
14 | # Color of error messages displayed on the command line. | ||
15 | set color_error=lightred | ||
16 | |||
17 | # Color of informational messages displayed on the command line. | ||
18 | set color_info=lightyellow | ||
19 | |||
20 | # Color of currently playing track. | ||
21 | set color_win_cur=5 | ||
22 | |||
23 | # Color of the separator line between windows in view (1). | ||
24 | set color_separator=254 | ||
25 | |||
26 | # Color of window titles (topmost line of the screen). | ||
27 | set color_win_title_bg=default | ||
28 | set color_win_title_fg=black | ||
29 | |||
30 | # Status line color. | ||
31 | set color_statusline_bg=default | ||
32 | set color_statusline_fg=gray | ||
33 | |||
34 | # Color of the line displaying currently playing track. | ||
35 | set color_titleline_bg=0 | ||
36 | set color_titleline_fg=5 | ||
37 | |||
38 | # Color of the selected row which is also the currently playing track in active window. | ||
39 | set color_win_cur_sel_bg=0 | ||
40 | set color_win_cur_sel_fg=15 | ||
41 | |||
42 | # Color of the selected row which is also the currently playing track in inactive window. | ||
43 | set color_win_inactive_cur_sel_bg=0 | ||
44 | set color_win_inactive_cur_sel_fg=15 | ||
45 | |||
46 | # Color of selected row in inactive window. | ||
47 | set color_win_inactive_sel_bg=0 | ||
48 | set color_win_inactive_sel_fg=15 | ||
49 | |||
50 | # Color of selected row in active window. | ||
51 | set color_win_sel_bg=0 | ||
52 | set color_win_sel_fg=15 | ||
53 | |||
54 | # Command line color. | ||
55 | set color_cmdline_bg=default | ||
56 | set color_cmdline_fg=default | ||
57 | |||