dev: automated commit - 2025-09-28 19:29:58
This commit is contained in:
parent
c9829cac0f
commit
efa863631d
7 changed files with 140 additions and 111 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=DBeaver
|
Name=DBeaver Marian
|
||||||
GenericName=SQL Database Client
|
GenericName=SQL Database Client
|
||||||
Comment=Universal Database Manager and SQL Client.
|
Comment=Universal Database Manager and SQL Client.
|
||||||
Exec=env GDK_BACKEND=x11 GTK_THEME=Raleigh dbeaver
|
Exec=env GDK_BACKEND=x11 GTK_THEME=Raleigh dbeaver
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,5 @@ text/x-dockerfile=nvim-kitty.desktop
|
||||||
application/xml=nvim-kitty.desktop
|
application/xml=nvim-kitty.desktop
|
||||||
application/x-extension-html=nvim-kitty.desktop
|
application/x-extension-html=nvim-kitty.desktop
|
||||||
x-scheme-handler/discord=vesktop.desktop
|
x-scheme-handler/discord=vesktop.desktop
|
||||||
|
x-scheme-handler/msteams=teams-for-linux.desktop
|
||||||
|
inode/directory=nemo.desktop
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@
|
||||||
"bypass": false,
|
"bypass": false,
|
||||||
"enable-vad": true,
|
"enable-vad": true,
|
||||||
"input-gain": 0.0,
|
"input-gain": 0.0,
|
||||||
"model-path": "",
|
"model-name": "",
|
||||||
"output-gain": 0.0,
|
"output-gain": 0.0,
|
||||||
"release": 20.0,
|
"release": 20.0,
|
||||||
"vad-thres": 50.0,
|
"vad-thres": 50.0,
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,10 @@
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
excludesfile = ~/.config/git/.gitignore
|
|
||||||
compression = 9
|
compression = 9
|
||||||
whitespace = error
|
whitespace = error
|
||||||
preloadindex = true
|
preloadindex = true
|
||||||
|
excludesfile = ~/.config/git/gitignore
|
||||||
|
|
||||||
[include]
|
[include]
|
||||||
path = ~/.config/git/gitalias.ini
|
path = ~/.config/git/gitalias.ini
|
||||||
|
|
|
||||||
|
|
@ -88,3 +88,30 @@ elif [[ -n "${ZSH_VERSION:-}" ]]; then
|
||||||
compdef _yay_zsh_completion yay
|
compdef _yay_zsh_completion yay
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
_use_node_completion() {
|
||||||
|
local -a versions
|
||||||
|
local script_dir=""
|
||||||
|
|
||||||
|
# Find the script directory
|
||||||
|
if [ -f "./use-node.sh" ]; then
|
||||||
|
script_dir="."
|
||||||
|
else
|
||||||
|
# Find the actual script location
|
||||||
|
script_dir="$(dirname "$(readlink -f ~/.local/bin/use-node 2>/dev/null || echo ~/.local/bin/use-node)")"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get versions from nodejs-* directories only
|
||||||
|
if [ -d "$script_dir" ]; then
|
||||||
|
versions=($(find "$script_dir" -maxdepth 1 -type d -name "nodejs-*" 2>/dev/null | sed 's/.*nodejs-/node@/'))
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ${#versions[@]} -gt 0 ]]; then
|
||||||
|
_describe 'node versions' versions
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Register the completion
|
||||||
|
compdef _use_node_completion ./use-node.sh
|
||||||
|
compdef _use_node_completion use-node.sh
|
||||||
|
compdef _use_node_completion use-node
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -723,7 +723,7 @@ yay() {
|
||||||
# System update
|
# System update
|
||||||
update|"-Syu")
|
update|"-Syu")
|
||||||
echo "Updating NixOS system..."
|
echo "Updating NixOS system..."
|
||||||
nh os switch ~/.config/nixos --update
|
nh os switch ~/.config/nixos --update --ask
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# Search packages
|
# Search packages
|
||||||
|
|
@ -781,7 +781,7 @@ EOF
|
||||||
# Default: rebuild system
|
# Default: rebuild system
|
||||||
"")
|
"")
|
||||||
echo "Rebuilding NixOS system..."
|
echo "Rebuilding NixOS system..."
|
||||||
nh os switch ~/.config/nixos
|
nh os switch ~/.config/nixos --ask
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# Try to install unknown commands
|
# Try to install unknown commands
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,6 @@ source "$ZDOTDIR/rose-pine.sh"
|
||||||
|
|
||||||
# Defer loading
|
# Defer loading
|
||||||
zsh-defer source "$PLUGIN_DIR/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
zsh-defer source "$PLUGIN_DIR/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||||
for config in mise.zsh tmux.zsh functions.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh; do
|
for config in tmux.zsh functions.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh; do
|
||||||
zsh-defer source "$ZDOTDIR/$config"
|
zsh-defer source "$ZDOTDIR/$config"
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue