mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-12-09 19:56:26 +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
|
||||
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 $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" \
|
||||
bc="bc -ql" \
|
||||
cp="cp -iv" \
|
||||
df="df -h" \
|
||||
df='df -h' \
|
||||
e="${EDITOR:-vim}" \
|
||||
ffmpeg="ffmpeg -hide_banner" \
|
||||
free="free -m" \
|
||||
free='free -m' \
|
||||
g="git" \
|
||||
ka="killall" \
|
||||
mkd="mkdir -pv" \
|
||||
mv="mv -iv" \
|
||||
rm="rm -vI" \
|
||||
shrd="shred -zuvn3" \
|
||||
tmux="tmux -f ~/.config/tmux/tmux.conf"
|
||||
tmux='tmux -f ~/.config/tmux/tmux.conf'
|
||||
|
||||
# Misc
|
||||
alias \
|
||||
w="curl https://wttr.in/"
|
||||
w='curl https://wttr.in/'
|
||||
|
||||
for cmd in code codium; do
|
||||
command -v $cmd >/dev/null && alias $cmd="$cmd --password-store='gnome'"
|
||||
done
|
||||
command -v codium >/dev/null && alias c=code
|
||||
|
||||
command -v pacman >/dev/null && alias p=pacman
|
||||
command -v zathura >/dev/null && alias z=zathura
|
||||
command -v ranger >/dev/null && alias r=ranger
|
||||
which codium >/dev/null && alias code=codium c=codium
|
||||
which pacman >/dev/null && alias p=pacman
|
||||
which zathura >/dev/null && alias z=zathura
|
||||
which ranger >/dev/null && alias r=ranger
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && alias load-nvm="source '$NVM_DIR/nvm.sh'"
|
||||
|
|
|
|||
Loading…
Reference in a new issue