diff options
-rw-r--r-- | config/common/ncmpcpp/config | 2 | ||||
-rw-r--r-- | config/essentials/nvim/lua/user/aucommands.vim | 2 | ||||
-rw-r--r-- | config/essentials/zsh/.zshrc | 4 | ||||
-rw-r--r-- | config/essentials/zsh/aliases.zsh | 4 | ||||
-rw-r--r-- | config/hyprland/foot/foot.ini | 2 | ||||
-rw-r--r-- | config/hyprland/waybar/config.jsonc | 1 |
6 files changed, 11 insertions, 4 deletions
diff --git a/config/common/ncmpcpp/config b/config/common/ncmpcpp/config index 88893cf..277679c 100644 --- a/config/common/ncmpcpp/config +++ b/config/common/ncmpcpp/config @@ -508,7 +508,7 @@ # #media_library_sort_by_mtime = no # -#enable_window_title = yes +enable_window_title = no # ## ## Note: You can choose default search mode for search engine. Available modes diff --git a/config/essentials/nvim/lua/user/aucommands.vim b/config/essentials/nvim/lua/user/aucommands.vim index 732985f..79ffc36 100644 --- a/config/essentials/nvim/lua/user/aucommands.vim +++ b/config/essentials/nvim/lua/user/aucommands.vim @@ -19,3 +19,5 @@ autocmd BufReadPost * \ exe "normal! g`\"" | \ endif +" Makes vim-commentary work +autocmd FileType dosini setlocal commentstring=#\ %s diff --git a/config/essentials/zsh/.zshrc b/config/essentials/zsh/.zshrc index f0c1cbf..f740824 100644 --- a/config/essentials/zsh/.zshrc +++ b/config/essentials/zsh/.zshrc @@ -80,11 +80,11 @@ rehash_precmd() { # window title hooks add-zsh-hook -Uz precmd rehash_precmd set_wt_action () { - print -Pn "\e]0;$USER@$HOST on ${PWD//$HOME/\~} | $1\a" + print -Pn "\e]0;👉 $1\a" } add-zsh-hook -Uz preexec set_wt_action set_wt () { - print -Pn "\e]0;$USER@$HOST on ${PWD//$HOME/\~}\a" + print -Pn "\e]0;%n@%m on %~\a" } add-zsh-hook -Uz precmd set_wt diff --git a/config/essentials/zsh/aliases.zsh b/config/essentials/zsh/aliases.zsh index a1c2f22..07773a7 100644 --- a/config/essentials/zsh/aliases.zsh +++ b/config/essentials/zsh/aliases.zsh @@ -116,6 +116,10 @@ alias airpods='bluetoothctl connect 60:93:16:24:00:10' alias hotpsot='nmcli dev wifi hotspot ifname wlan0 ssid wiefie password "peepeepoopoo"' alias wtip='wt ip -c -brief addr' alias qrclipo='qrencode -s 16 "$(clipo)" -io - | imv -w "imv - $(clipo)" -' +alias muttmail='echo -n "email set: " >&2; ls $HOME/.config/mutt/configs | + fzf | + tee /dev/stderr | + xargs -I {} ln -sf "$HOME/.config/mutt/configs/{}" $HOME/.config/mutt/muttrc' # Python alias penv='python3 -m venv env' diff --git a/config/hyprland/foot/foot.ini b/config/hyprland/foot/foot.ini index 79cc804..45be6ea 100644 --- a/config/hyprland/foot/foot.ini +++ b/config/hyprland/foot/foot.ini @@ -6,7 +6,7 @@ term=xterm-256color # login-shell=no # app-id=foot -# title=foot +title="" # locked-title=no font=monospace:size=11 diff --git a/config/hyprland/waybar/config.jsonc b/config/hyprland/waybar/config.jsonc index c2d7015..456d85d 100644 --- a/config/hyprland/waybar/config.jsonc +++ b/config/hyprland/waybar/config.jsonc @@ -9,6 +9,7 @@ "mpd": { "tooltip": false, "format": "{artist} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S})", + "artist-len": 24, "format-disconnected": "ﳌ", "format-stopped": "", "state-icons": { |