Compare commits

..

3 Commits

Author SHA1 Message Date
c2a804668f replace exa with eza 2023-09-14 14:02:16 +02:00
d91b82deab add in go path 2023-09-14 14:02:02 +02:00
1cb5b76a46 Add keepassxc cli keybindings for easy password retrial 2023-09-14 14:01:48 +02:00
3 changed files with 6 additions and 2 deletions

View File

@ -66,6 +66,10 @@ super + shift + F12
alt + b; {a,o,e,d} alt + b; {a,o,e,d}
{badd, dmenu-buku open, dmenu-buku edit, dmenu-buku delete} {badd, dmenu-buku open, dmenu-buku edit, dmenu-buku delete}
##---KeePassXC quick pass bindings---##
super + g; b
dmenu-keepassxc vaultwarden copy
##---Sripts---## ##---Sripts---##
super + F1 super + F1
sound-output-toggle sound-output-toggle

View File

@ -2,7 +2,7 @@ export QT_QPA_PLATFORMTHEME=qt5ct
# Path exprt (.zshenv method doesn't work with gentoo for no real reason) # Path exprt (.zshenv method doesn't work with gentoo for no real reason)
typeset -U PATH path typeset -U PATH path
path=("$HOME/.local/share/cargo/bin" "$HOME/.local/bin" "$HOME/bin/dmenu" "$HOME/bin/misc" "$HOME/bin/statusbar" "$HOME/bin/tmux" "$path[@]") path=("$HOME/.local/share/cargo/bin" "$HOME/.local/share/go/bin/" "$HOME/.local/bin" "$HOME/bin/dmenu" "$HOME/bin/misc" "$HOME/bin/statusbar" "$HOME/bin/tmux" "$path[@]")
export PATH export PATH
export SXHKD_SHELL='/bin/sh' export SXHKD_SHELL='/bin/sh'

View File

@ -5,7 +5,7 @@ alias ssd-check="sudo smartctl -a /dev/nvme0n1 | grep -E -- 'Data Units Read:|Da
# Adding colours to some of the regulas shit # Adding colours to some of the regulas shit
alias grep='grep --color=auto' alias grep='grep --color=auto'
alias ls='/usr/bin/exa -lab --icons --group-directories-first --git --no-time' alias ls='/usr/bin/eza -lab --icons --group-directories-first --git --no-time'
alias cp='cp -iv' alias cp='cp -iv'
alias rm='rm -iv' alias rm='rm -iv'
alias mkd='mkdir -pv' alias mkd='mkdir -pv'