Compare commits

..

3 Commits

Author SHA1 Message Date
ITQ 35ecb0be35 more shortcuts 2026-05-01 14:31:25 +03:00
ITQ dae2881394 some meow 2026-05-01 14:30:59 +03:00
ITQ 1309266d65 chore(skhd): added keybindings 2026-05-01 14:29:15 +03:00
3 changed files with 42 additions and 129 deletions
+32 -127
View File
@@ -1,145 +1,50 @@
# ################################################################ #
# THE FOLLOWING IS AN EXPLANATION OF THE GRAMMAR THAT SKHD PARSES. #
# FOR SIMPLE EXAMPLE MAPPINGS LOOK FURTHER DOWN THIS FILE.. #
# ################################################################ #
# A list of all built-in modifier and literal keywords can
# be found at https://github.com/koekeishiya/skhd/issues/1
#
# A hotkey is written according to the following rules:
#
# hotkey = <mode> '<' <action> | <action>
#
# mode = 'name of mode' | <mode> ',' <mode>
#
# action = <keysym> '[' <proc_map_lst> ']' | <keysym> '->' '[' <proc_map_lst> ']'
# <keysym> ':' <command> | <keysym> '->' ':' <command>
# <keysym> ';' <mode> | <keysym> '->' ';' <mode>
#
# keysym = <mod> '-' <key> | <key>
#
# mod = 'modifier keyword' | <mod> '+' <mod>
#
# key = <literal> | <keycode>
#
# literal = 'single letter or built-in keyword'
#
# keycode = 'apple keyboard kVK_<Key> values (0x3C)'
#
# proc_map_lst = * <proc_map>
#
# proc_map = <string> ':' <command> | <string> '~' |
# '*' ':' <command> | '*' '~'
#
# string = '"' 'sequence of characters' '"'
#
# command = command is executed through '$SHELL -c' and
# follows valid shell syntax. if the $SHELL environment
# variable is not set, it will default to '/bin/bash'.
# when bash is used, the ';' delimeter can be specified
# to chain commands.
#
# to allow a command to extend into multiple lines,
# prepend '\' at the end of the previous line.
#
# an EOL character signifies the end of the bind.
#
# -> = keypress is not consumed by skhd
#
# * = matches every application not specified in <proc_map_lst>
#
# ~ = application is unbound and keypress is forwarded per usual, when specified in a <proc_map>
#
# A mode is declared according to the following rules:
#
# mode_decl = '::' <name> '@' ':' <command> | '::' <name> ':' <command> |
# '::' <name> '@' | '::' <name>
#
# name = desired name for this mode,
#
# @ = capture keypresses regardless of being bound to an action
#
# command = command is executed through '$SHELL -c' and
# follows valid shell syntax. if the $SHELL environment
# variable is not set, it will default to '/bin/bash'.
# when bash is used, the ';' delimeter can be specified
# to chain commands.
#
# to allow a command to extend into multiple lines,
# prepend '\' at the end of the previous line.
#
# an EOL character signifies the end of the bind.
# ############################################################### #
# THE FOLLOWING SECTION CONTAIN SIMPLE MAPPINGS DEMONSTRATING HOW #
# TO INTERACT WITH THE YABAI WM. THESE ARE SUPPOSED TO BE USED AS #
# A REFERENCE ONLY, WHEN MAKING YOUR OWN CONFIGURATION.. #
# ############################################################### #
# focus window
# alt - h : yabai -m window --focus west
alt - h : yabai -m window --focus west
alt - j : yabai -m window --focus south
alt - k : yabai -m window --focus north
alt - l : yabai -m window --focus east
# swap managed window
# shift + alt - h : yabai -m window --swap north
shift + alt - h : yabai -m window --swap west
shift + alt - j : yabai -m window --swap south
shift + alt - k : yabai -m window --swap north
shift + alt - l : yabai -m window --swap east
# move managed window
# shift + cmd - h : yabai -m window --warp east
shift + cmd - h : yabai -m window --warp west
shift + cmd - j : yabai -m window --warp south
shift + cmd - k : yabai -m window --warp north
shift + cmd - l : yabai -m window --warp east
# balance size of windows
# shift + alt - 0 : yabai -m space --balance
# make floating window fill screen
# shift + alt - up : yabai -m window --grid 1:1:0:0:1:1
# make floating window fill left-half of screen
# shift + alt - left : yabai -m window --grid 1:2:0:0:1:1
# create desktop, move window and follow focus - uses jq for parsing json (brew install jq)
# shift + cmd - n : yabai -m space --create && \
# index="$(yabai -m query --spaces --display | jq 'map(select(."is-native-fullscreen" == false))[-1].index')" && \
# yabai -m window --space "${index}" && \
# yabai -m space --focus "${index}"
# fast focus desktop
# cmd + alt - x : yabai -m space --focus recent
# cmd + alt - 1 : yabai -m space --focus 1
# send window to desktop and follow focus
# shift + cmd - z : yabai -m window --space next; yabai -m space --focus next
# shift + cmd - 2 : yabai -m window --space 2; yabai -m space --focus 2
shift + alt - 0 : yabai -m space --balance
# focus monitor
# ctrl + alt - z : yabai -m display --focus prev
# ctrl + alt - 3 : yabai -m display --focus 3
# send window to monitor and follow focus
# ctrl + cmd - c : yabai -m window --display next; yabai -m display --focus next
# ctrl + cmd - 1 : yabai -m window --display 1; yabai -m display --focus 1
# move floating window
# shift + ctrl - a : yabai -m window --move rel:-20:0
# shift + ctrl - s : yabai -m window --move rel:0:20
ctrl + alt - z : yabai -m display --focus next
ctrl + alt - x : yabai -m display --focus prev
ctrl + alt - 1 : yabai -m display --focus 1
ctrl + alt - 2 : yabai -m display --focus 2
ctrl + alt - 3 : yabai -m display --focus 3
ctrl + alt - 4 : yabai -m display --focus 4
# increase window size
# shift + alt - a : yabai -m window --resize left:-20:0
# shift + alt - w : yabai -m window --resize top:0:-20
shift + alt - h : yabai -m window --resize lbeft:-20:0
shift + alt - l : yabai -m window --resize right:20:0
shift + alt - k : yabai -m window --resize top:0:-20
shift + alt - j : yabai -m window --resize bottom:0:20
# decrease window size
# shift + cmd - s : yabai -m window --resize bottom:0:-20
# shift + cmd - w : yabai -m window --resize top:0:20
# set insertion point in focused container
# ctrl + alt - h : yabai -m window --insert west
# toggle window zoom
# alt - d : yabai -m window --toggle zoom-parent
# alt - f : yabai -m window --toggle zoom-fullscreen
shift + cmd - h : yabai -m window --resize left:20:0
shift + cmd - l : yabai -m window --resize right:-20:0
shift + cmd - k : yabai -m window --resize top:0:20
shift + cmd - j : yabai -m window --resize bottom:0:-20
# toggle window split type
# alt - e : yabai -m window --toggle split
alt - e : yabai -m window --toggle split
# float / unfloat window and center on screen
# alt - t : yabai -m window --toggle float --grid 4:4:1:1:2:2
alt - t : yabai -m window --toggle float --grid 4:4:1:1:2:2
# applications shortcuts
cmd + shift - t : wezterm start
# toggle sticky(+float), picture-in-picture
# alt - p : yabai -m window --toggle sticky --toggle pip
+1 -1
View File
@@ -55,7 +55,7 @@ yabai -m config top_padding 1
yabai -m config bottom_padding 1
yabai -m config right_padding 1
yabai -m config left_padding 1
yabai -m config window_gap 10
yabai -m config window_gap 3
# mouse settings
# yabai -m config mouse_follows_focus on
yabai -m config mouse_modifier alt
+9 -1
View File
@@ -103,7 +103,8 @@ export SYSTEMD_PAGER=
export TALOSCONFIG=/Users/itq/.talos/config
# Aliases
alias tf=terraform
alias please='sudo'
alias tf='terraform'
alias calc='_(){ awk "BEGIN{print $*}";};_'
alias dive='docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock docker.io/wagoodman/dive'
alias cdt='cd $(mktemp -d)'
@@ -114,6 +115,9 @@ alias bat='bat --style=plain'
alias netshoot='docker run -it --rm --net host docker.io/nicolaka/netshoot:latest'
alias vim='nvim'
alias yz=''
alias jpy='jupyter lab --port 8888 --IdentityProvider.token "" --ip 0.0.0.0'
alias mtr='orb run -m debian-amd64 mtr'
alias o2g='oci2git'
# K8S
alias ktx=kubectx
alias kns=kubens
@@ -131,6 +135,10 @@ alias stegoveritas='docker run -it --rm -v /:/mnt bannsec/stegoveritas'
alias jadx='java -jar /Users/itq/Infosec/tools/jadx-1.5.5-all.jar'
alias jd-gui='java -jar /Users/itq/Infosec/tools/jd-gui-1.6.6-min.jar'
alias пороль='head -c64 /dev/random | base64 | tr -d "/" | head -c32'
# Exercises
alias awkexercises='/Users/itq/Infosec/tools/exercises/.venv/bin/awkexercises'
alias grepexercises='/Users/itq/Infosec/tools/exercises/.venv/bin/grepexercises'
alias sedexercises='/Users/itq/Infosec/tools/exercises/.venv/bin/sedexercises'
# Brew
HOMEBREW_NO_AUTO_UPDATE=1