This commit is contained in:
max_richter 2023-05-03 09:23:13 +02:00
parent e256d74045
commit 2d81e0a579
3 changed files with 9 additions and 2 deletions

View File

@ -19,6 +19,7 @@ if [ -f "$HOME/.config/zsh/antigen.zsh" ] ; then
antigen use oh-my-zsh
antigen bundle git
antigen bundle docker
antigen bundle sudo
antigen bundle asdf
antigen bundle jeffreytse/zsh-vi-mode
antigen theme romkatv/powerlevel10k

View File

@ -30,7 +30,7 @@ set $windowshot wl-copy < "$($grimshot --notify save window $screenshot_dir/scrn
set $screenvideo wf-recorder -g "$(slurp)" -f "$screenshot_dir/scrn-$(date +'%Y-%m-%d-%H-%M-%S').mp4"
# Default Programs
set $term wezterm
set $term flatpak run org.wezfurlong.wezterm
set $explorer nautilus
set $mail org.gnome.Geary
set $browser google-chrome-beta --enable-features=UseOzonePlatform --ozone-platform=wayland
@ -278,6 +278,7 @@ input "1739:24385:Synaptics_TM2438-005" {
# -- Select Window
bindsym $mod+Control+s exec $windowshot
bindsym $mod+Alt+h exec clipman pick -t wofi
bindsym $mod+i exec $select_emoji
bindsym $mod+Shift+i exec $debug_window
bindsym $mod+o exec $open_localhost

View File

@ -55,7 +55,12 @@ alias p="git pull"
alias lt="tree -L 2 --filelimit 150 --dirsfirst"
alias dc="sudo docker-compose"
if docker compose &> /dev/null
then
alias dc="sudo docker compose"
else
alias dc="sudo docker-compose"
fi
alias d="sudo docker"
alias t="tmux"