diff options
Diffstat (limited to 'dotfiles/.config')
-rw-r--r-- | dotfiles/.config/ncmpcpp/config | 2 | ||||
-rw-r--r-- | dotfiles/.config/zsh/shortcuts | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/dotfiles/.config/ncmpcpp/config b/dotfiles/.config/ncmpcpp/config index 254d9ac..25b6cad 100644 --- a/dotfiles/.config/ncmpcpp/config +++ b/dotfiles/.config/ncmpcpp/config @@ -16,7 +16,7 @@ alternative_header_second_line_format = "$(16)%t (%y)$(end)" alternative_ui_separator_color = "cyan" # Formato de canción: -song_columns_list_format = "$L (10)[white]{n} $1│$7 (20)[cyan]{a} $1│$7 (20)[white]{b} $1│$7 (30)[cyan]{t} $1│$7 (10)[white]{l}" +song_columns_list_format = "$L (10)[white]{n} $1│$7 (20)[cyan]{a} $1│$7 (20)[white]{b} $1│$7 (38)[cyan]{t} $1│$7 (2)[white]{l}" now_playing_prefix = "$b" centered_cursor = "no" cyclic_scrolling = "yes" diff --git a/dotfiles/.config/zsh/shortcuts b/dotfiles/.config/zsh/shortcuts index 6081b30..4da91ec 100644 --- a/dotfiles/.config/zsh/shortcuts +++ b/dotfiles/.config/zsh/shortcuts @@ -11,6 +11,11 @@ alias trans="trans -v -pager='less -R'" alias op="xdg-open" corona() { curl -s https://corona-stats.online/$1 ;} # It's corona time wintitle() { printf "\033]2;%s\a" "$1";} +sass-watch() { + while inotifywait -q -e create -e modify sass; do + sassc $1 $2 + done +} # Generic shortcuts alias music="ncmpcpp" |