mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-12-15 14:09:41 +01:00
Compare commits
No commits in common. "d2917204289a7567c014cd617ac735f053c32606" and "18687ff70e6a5c443b6b1e85a5a62815ecdab548" have entirely different histories.
d291720428
...
18687ff70e
3 changed files with 8 additions and 17 deletions
|
|
@ -7,6 +7,3 @@ bindsym $mod+Ctrl+Shift+l exec --no-startup-id dmenuxautolock -t 0 -n 0
|
||||||
|
|
||||||
# Run i3hwlock
|
# Run i3hwlock
|
||||||
exec_always --no-startup-id pgrep i3hwlock || i3hwlock
|
exec_always --no-startup-id pgrep i3hwlock || i3hwlock
|
||||||
|
|
||||||
# Start authentication agent
|
|
||||||
exec_always --no-startup-id $auth_agent
|
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,3 @@ set $browser firefox
|
||||||
set $terminal kitty
|
set $terminal kitty
|
||||||
|
|
||||||
set $flashfocus_bin /opt/dotfiles/pyenv/bin/flashfocus
|
set $flashfocus_bin /opt/dotfiles/pyenv/bin/flashfocus
|
||||||
|
|
||||||
set $auth_agent /usr/lib/mate-polkit/polkit-mate-authentication-agent-1
|
|
||||||
|
|
|
||||||
|
|
@ -6,28 +6,24 @@ alias \
|
||||||
ls="ls --color=auto" \
|
ls="ls --color=auto" \
|
||||||
bc="bc -ql" \
|
bc="bc -ql" \
|
||||||
cp="cp -iv" \
|
cp="cp -iv" \
|
||||||
df="df -h" \
|
df='df -h' \
|
||||||
e="${EDITOR:-vim}" \
|
e="${EDITOR:-vim}" \
|
||||||
ffmpeg="ffmpeg -hide_banner" \
|
ffmpeg="ffmpeg -hide_banner" \
|
||||||
free="free -m" \
|
free='free -m' \
|
||||||
g="git" \
|
g="git" \
|
||||||
ka="killall" \
|
ka="killall" \
|
||||||
mkd="mkdir -pv" \
|
mkd="mkdir -pv" \
|
||||||
mv="mv -iv" \
|
mv="mv -iv" \
|
||||||
rm="rm -vI" \
|
rm="rm -vI" \
|
||||||
shrd="shred -zuvn3" \
|
shrd="shred -zuvn3" \
|
||||||
tmux="tmux -f ~/.config/tmux/tmux.conf"
|
tmux='tmux -f ~/.config/tmux/tmux.conf'
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
alias \
|
alias \
|
||||||
w="curl https://wttr.in/"
|
w='curl https://wttr.in/'
|
||||||
|
|
||||||
for cmd in code codium; do
|
which codium >/dev/null && alias code=codium c=codium
|
||||||
command -v $cmd >/dev/null && alias $cmd="$cmd --password-store='gnome'"
|
which pacman >/dev/null && alias p=pacman
|
||||||
done
|
which zathura >/dev/null && alias z=zathura
|
||||||
command -v codium >/dev/null && alias c=code
|
which ranger >/dev/null && alias r=ranger
|
||||||
|
|
||||||
command -v pacman >/dev/null && alias p=pacman
|
|
||||||
command -v zathura >/dev/null && alias z=zathura
|
|
||||||
command -v ranger >/dev/null && alias r=ranger
|
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && alias load-nvm="source '$NVM_DIR/nvm.sh'"
|
[ -s "$NVM_DIR/nvm.sh" ] && alias load-nvm="source '$NVM_DIR/nvm.sh'"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue