summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 18:23:01 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 18:23:01 +0100
commit8004d4f5ade9622b85952124d3dc770b7f46ae83 (patch)
treefa2cc00457e4049a9c135ecd4021ecf4baae2488
parentColors update to match more FreeBSD (diff)
downloaddotfiles-bsd-8004d4f5ade9622b85952124d3dc770b7f46ae83.tar.gz
dotfiles-bsd-8004d4f5ade9622b85952124d3dc770b7f46ae83.tar.bz2
dotfiles-bsd-8004d4f5ade9622b85952124d3dc770b7f46ae83.tar.xz
dotfiles-bsd-8004d4f5ade9622b85952124d3dc770b7f46ae83.tar.zst
dotfiles-bsd-8004d4f5ade9622b85952124d3dc770b7f46ae83.zip
vimpc update
-rw-r--r--.config/vimpc/vimpcrc3
-rwxr-xr-x.local/bin/mixer-set4
2 files changed, 5 insertions, 2 deletions
diff --git a/.config/vimpc/vimpcrc b/.config/vimpc/vimpcrc
index 6f97378..4046fa1 100644
--- a/.config/vimpc/vimpcrc
+++ b/.config/vimpc/vimpcrc
@@ -14,6 +14,8 @@ set window playlist
" Set the windows to show at startup
set windows library,directory,playlist
+set songformat {%a - (%d) %b - %t}|{%f}$E$R $H[$H%l$H]$H
+
" Stop playing music when we quit
"set stoponquit
@@ -27,6 +29,7 @@ set windows library,directory,playlist
"map @ :set add next<C-M>a:set add end<C-M>
map <A-k> gT
map <A-j> gt
+map i e
" Connect to a specific host using the config file
"connect somehost someport
diff --git a/.local/bin/mixer-set b/.local/bin/mixer-set
index e74beeb..24edbf3 100755
--- a/.local/bin/mixer-set
+++ b/.local/bin/mixer-set
@@ -30,7 +30,7 @@ sub main {
chomp $curr_vol;
system('/usr/local/bin/dash',
'-c',
- '/usr/local/bin/notify-send -u low -t 400 "Volume lowered - ' . $curr_vol . '%"');
+ '/usr/local/bin/notify-send -u low -t 400 "Volume - ' . $curr_vol . '%"');
exit;
}
elsif ($ARGV[0] eq "raise") {
@@ -41,7 +41,7 @@ sub main {
chomp $curr_vol;
system('/usr/local/bin/dash',
'-c',
- '/usr/local/bin/notify-send -u low -t 400 "Volume raised - ' . $curr_vol . '%"');
+ '/usr/local/bin/notify-send -u low -t 400 "Volume - ' . $curr_vol . '%"');
exit;
}
elsif ($ARGV[0] eq "toggle") {