diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-09-11 12:52:49 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-09-11 12:52:49 +0200 |
commit | ff05728f03644c9126135cecff3bfc8d46419068 (patch) | |
tree | 7c74a411b6751a5cfb60fb024eb3c802f6f0decb | |
parent | b6f02c5318874dfeeb4318d763f660339c60d3a5 (diff) | |
parent | 9d831e81399be29cc83a518ffc75c8d23c7c2fdf (diff) |
Merge branch 'main' of db:dotfiles
-rw-r--r-- | config/essentials/zsh/aliases.sh | 2 | ||||
-rw-r--r-- | config/home/.zshenv | 2 | ||||
-rw-r--r-- | config/hyprland/hypr/binds.conf | 12 |
3 files changed, 12 insertions, 4 deletions
diff --git a/config/essentials/zsh/aliases.sh b/config/essentials/zsh/aliases.sh index 0d105e8..9a7b196 100644 --- a/config/essentials/zsh/aliases.sh +++ b/config/essentials/zsh/aliases.sh @@ -42,7 +42,7 @@ fi if grep -qi "debian\|ubuntu" /etc/os-release 2> /dev/null then alias aptup='apt update && apt upgrade -y' - alias ufwd='echo y | ufw delete "$(ufw status numbered | tail -n +5 | fzf | cut -f2 -d'\''['\'' | cut -f1 -d'\'']'\'')" > /dev/null 2>&1 && >&2 echo "deleted."' + alias ufwd='while echo y | ufw delete "$(ufw status numbered | tail -n +5 | fzf | cut -f2 -d'\''['\'' | cut -f1 -d'\'']'\'')" > /dev/null 2>&1 && >&2 echo "deleted."; do :; done' fi # Programs diff --git a/config/home/.zshenv b/config/home/.zshenv index 5f4e30b..65986d3 100644 --- a/config/home/.zshenv +++ b/config/home/.zshenv @@ -60,7 +60,7 @@ export PASSWORD_STORE_CLIP_TIME=5 export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS' --color=fg:#e5e9f0,hl:#88c0d0 - --color=pointer:blue + --color=pointer:#6d96a5 --color=gutter:#2e3440 --color=fg+:#81a1c1,hl+:#ebcb8b --color=info:#b48ead,prompt:#bf6069,pointer:#b48dac diff --git a/config/hyprland/hypr/binds.conf b/config/hyprland/hypr/binds.conf index cdaf573..46b6503 100644 --- a/config/hyprland/hypr/binds.conf +++ b/config/hyprland/hypr/binds.conf @@ -13,8 +13,18 @@ bind = $mainMod, F, togglefloating, bind = $mainMod SHIFT, P, pseudo bind = $mainMod, S, togglesplit +bind = $mainMod, A, submap, applications +submap = applications bind = $mainMod, B, exec, firefox +bind = , B, exec, firefox bind = $mainMod, T, exec, $term -e tmux a || tmux +bind = , T, exec, $term -e tmux a || tmux +bind = $mainMod, D, exec, foot -e ssh -t db tmux a +bind = , D, exec, foot -e ssh -t db tmux a +bind = $mainMod, M, exec, gamelaunch +bind = , M, exec, gamelaunch +source = ./reset-submap.conf +submap = reset bind = $mainMod, E, focusmonitor, +1 bind = $mainMod, W, focusmonitor, -1 @@ -122,5 +132,3 @@ bind = $mainMod ALT, S, exec, $HOME/.config/hypr/screenshot.sh -m bind = $mainMod SHIFT, S, exec, $HOME/.config/hypr/screenshot.sh -sc bind = $mainMod ALT SHIFT, S, exec, $HOME/.config/hypr/screenshot.sh -s bind = $mainMod CTRL, S, exec, $HOME/.config/hypr/screenshot.sh -f - -bind = $mainMod, D, exec, foot -e ssh -t db tmux a |