Compare commits

...

3 Commits

3 changed files with 10 additions and 2 deletions

View File

@ -26,3 +26,8 @@ set fish_greeting ""
# Enable Vi bindings # Enable Vi bindings
fish_vi_key_bindings fish_vi_key_bindings
bind -M insert \ce accept-autosuggestion -m default
bind -M default \ce execute
set __fish_git_prompt_showdirtystate 1

View File

@ -16,7 +16,10 @@ function fish_right_prompt
set usercolor (set_color $col) set usercolor (set_color $col)
end end
printf '%s%s@%s%s' $usercolor \ printf '%s ' \
(fish_git_prompt)
printf '%s%s@%s%s'\
$usercolor \
(echo $USER | string shorten -m 5 -c '') \ (echo $USER | string shorten -m 5 -c '') \
(echo $hostname | string shorten -m 1 -c '') \ (echo $hostname | string shorten -m 1 -c '') \
(set_color normal) (set_color normal)

View File

@ -7,7 +7,7 @@ if [ "$DUNST_APP_NAME" = "soundboard" ]; then
fi fi
if pactl list short sinks | grep -q virtual_mic; then if pactl list short sinks | grep -q virtual_mic; then
mpv ~/.local/bin/deskutils/notif.wav --audio-device=pulse/c1_out mpv ~/.local/bin/deskutils/notif.wav --audio-device=pulse/alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo
else else
mpv ~/.local/bin/deskutils/notif.wav mpv ~/.local/bin/deskutils/notif.wav
fi fi