mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2024-12-26 11:58:12 +01:00
Compare commits
5 commits
18687ff70e
...
d291720428
Author | SHA1 | Date | |
---|---|---|---|
|
d291720428 | ||
|
34ac6a1809 | ||
|
19c3047c78 | ||
|
053bb13130 | ||
|
363486883a |
3 changed files with 17 additions and 8 deletions
|
@ -7,3 +7,6 @@ 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,3 +15,5 @@ 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,24 +6,28 @@ 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/"
|
||||
|
||||
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
|
||||
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
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && alias load-nvm="source '$NVM_DIR/nvm.sh'"
|
||||
|
|
Loading…
Reference in a new issue