💄 style(hypr): added an space after every comma in the config
This commit is contained in:
parent
be99c89560
commit
2ade521ddd
6 changed files with 192 additions and 206 deletions
|
@ -18,8 +18,8 @@ bind = SUPERSHIFT,O,exec,~/.config/hypr/scripts/custom_app_launch office
|
|||
bind = SUPERSHIFT, E,exec, ~/.config/hypr/scripts/custom_app_launch nemo
|
||||
bind = SUPER, RETURN, exec, kitty
|
||||
bind = SUPERSHIFT, RETURN, exec, ~/.config/hypr/scripts/custom_app_launch kitty
|
||||
bind = SUPER,BackSpace,exec,~/.config/hypr/scripts/custom_app_launch nvim
|
||||
bind = SUPERSHIFT,BackSpace,exec,~/.config/hypr/scripts/custom_app_launch neovide
|
||||
bind = SUPER, BACKSPACE, exec, ~/.config/hypr/scripts/custom_app_launch nvim
|
||||
bind = SUPERSHIFT, BACKSPACE, exec, ~/.config/hypr/scripts/custom_app_launch neovide
|
||||
|
||||
# Launchers
|
||||
bind = SUPER, 23, exec, rofi -show drun -theme ~/.config/rofi/style.rasi # tab
|
||||
|
@ -35,52 +35,52 @@ bind = SUPER,E,exec,pypr toggle yazi && hyprctl dispatch bringactivetotop
|
|||
bind = SUPER, D, exec, pypr toggle dots && hyprctl dispatch bringactivetotop
|
||||
|
||||
# Screenshotting
|
||||
bind = SHIFT,Insert,exec, hyprshot -m output -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = SUPERSHIFT,Insert,exec, hyprshot -m window -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = CTRL,Insert,exec, hyprshot -m region -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = ALT,Insert,exec, ~/.config/hypr/scripts/rofi/screenshots_selection
|
||||
bind = SHIFT, INSERT, exec, hyprshot -m output -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = SUPERSHIFT, INSERT, exec, hyprshot -m window -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = CTRL, INSERT, exec, hyprshot -m region -o ~/Imagenes/Capturas/PC -f captura-$(date +'%Y-%m-%d-%s').png
|
||||
bind = ALT, INSERT, exec, ~/.config/hypr/scripts/rofi/screenshots_selection
|
||||
|
||||
# Clipboard
|
||||
bind = SUPER,y,exec, cliphist list | rofi -dmenu -theme ~/.config/rofi/style.rasi | cliphist decode | wl-copy
|
||||
bind = SUPER, Y, exec, cliphist list | rofi -dmenu -theme ~/.config/rofi/style.rasi | cliphist decode | wl-copy
|
||||
|
||||
# Logout menu
|
||||
bind = SUPER, escape, exec, wleave
|
||||
bind = SUPER, ESCAPE, exec, wleave
|
||||
|
||||
# Color picker
|
||||
bind = SUPER,Insert,exec, ~/.config/hypr/scripts/color_picker
|
||||
bind = SUPER, INSERT, exec, ~/.config/hypr/scripts/color_picker
|
||||
|
||||
# Wallpaper
|
||||
bind = SUPERSHIFT,w,exec, ~/.config/hypr/scripts/wallpaper select
|
||||
bind = SUPERCTRL,w,exec, ~/.config/hypr/scripts/wallpaper random
|
||||
bind = SUPERSHIFT, W, exec, ~/.config/hypr/scripts/wallpaper select
|
||||
bind = SUPERCTRL, W, exec, ~/.config/hypr/scripts/wallpaper random
|
||||
|
||||
# Keybindings Cheatsheet
|
||||
bind = SUPER,i,exec, ~/.config/hypr/scripts/rofi/keybindings
|
||||
bind = SUPER, I, exec, ~/.config/hypr/scripts/rofi/keybindings
|
||||
|
||||
# Recording
|
||||
bind = SUPERSHIFT,r,exec, ~/.config/hypr/scripts/rofi/recording
|
||||
bind = SUPERSHIFT, R, exec, ~/.config/hypr/scripts/rofi/recording
|
||||
|
||||
## Windows
|
||||
## Focusing on windows
|
||||
bind = SUPER,left,movefocus,l
|
||||
bind = SUPER,right,movefocus,r
|
||||
bind = SUPER,up,movefocus,u
|
||||
bind = SUPER,down,movefocus,d
|
||||
bind = SUPER, LEFT, movefocus, l
|
||||
bind = SUPER, RIGHT, movefocus, r
|
||||
bind = SUPER, UP, movefocus, u
|
||||
bind = SUPER, DOWN, movefocus, d
|
||||
# Vim-keybinds
|
||||
bind = SUPER,h,movefocus,l
|
||||
bind = SUPER,l,movefocus,r
|
||||
bind = SUPER,k,movefocus,u
|
||||
bind = SUPER,j,movefocus,d
|
||||
bind = SUPER, H, movefocus, l
|
||||
bind = SUPER, L, movefocus, r
|
||||
bind = SUPER, K, movefocus, u
|
||||
bind = SUPER, J, movefocus, d
|
||||
|
||||
## Moving windows
|
||||
bind = SUPERSHIFT,left,movewindow,l
|
||||
bind = SUPERSHIFT,right,movewindow,r
|
||||
bind = SUPERSHIFT,up,movewindow,u
|
||||
bind = SUPERSHIFT,down,movewindow,d
|
||||
bind = SUPERSHIFT, LEFT, movewindow, l
|
||||
bind = SUPERSHIFT, RIGHT, movewindow, r
|
||||
bind = SUPERSHIFT, UP, movewindow, u
|
||||
bind = SUPERSHIFT, DOWN, movewindow, d
|
||||
# Vim-keybinds
|
||||
bind = SUPERSHIFT,h,movewindow,l
|
||||
bind = SUPERSHIFT,l,movewindow,r
|
||||
bind = SUPERSHIFT,k,movewindow,u
|
||||
bind = SUPERSHIFT,j,movewindow,d
|
||||
bind = SUPERSHIFT, H, movewindow, l
|
||||
bind = SUPERSHIFT, L, movewindow, r
|
||||
bind = SUPERSHIFT, K, movewindow, u
|
||||
bind = SUPERSHIFT, J, movewindow, d
|
||||
|
||||
## Workspaces
|
||||
# Focusing other workspaces
|
||||
|
@ -127,33 +127,33 @@ bind = SUPER,mouse_up,workspace,m+1
|
|||
bind = SUPERCTRL, LEFT, workspace,m-1
|
||||
bind = SUPERCTRL, RIGHT, workspace,m+1
|
||||
|
||||
bind = SUPERCTRL,h,workspace,m-1
|
||||
bind = SUPERCTRL,l,workspace,m+1
|
||||
bind = SUPERCTRL, H, workspace,m-1
|
||||
bind = SUPERCTRL, L, workspace,m+1
|
||||
|
||||
# Center a window
|
||||
bind = SUPER,c,exec,hyprctl dispatch centerwindow 1
|
||||
bind = SUPER, C, exec, hyprctl dispatch centerwindow 1
|
||||
|
||||
# Group control
|
||||
bind = SUPERSHIFT,51,exec,pypr expose
|
||||
bind = SUPERSHIFT,48,togglespecialworkspace, minimized
|
||||
bind = SUPER,48,exec,pypr toggle_minimized
|
||||
bind = SUPERSHIFT, 51, exec, pypr expose # Backslash
|
||||
bind = SUPERSHIFT, 48, togglespecialworkspace, minimized # Single quote
|
||||
bind = SUPER, 48, exec, pypr toggle_minimized # Single quote
|
||||
bind = SUPER, S, togglesplit
|
||||
bind = SUPER, G, togglegroup
|
||||
bind = ALT,tab,changegroupactive
|
||||
bind = ALT, TAB, changegroupactive
|
||||
|
||||
# Submap for resizing windows
|
||||
bind = SUPER, R, submap, resize
|
||||
submap = resize
|
||||
|
||||
binde = ,right,resizeactive,40 0
|
||||
binde = ,left,resizeactive,-40 0
|
||||
binde = ,up,resizeactive,0 -40
|
||||
binde = ,down,resizeactive,0 40
|
||||
binde = , RIGHT, resizeactive, 40 0
|
||||
binde = , LEFT, resizeactive, -40 0
|
||||
binde = , UP, resizeactive, 0 -40
|
||||
binde = , DOWN, resizeactive, 0 40
|
||||
|
||||
binde = ,l,resizeactive,40 0
|
||||
binde = ,h,resizeactive,-40 0
|
||||
binde = ,k,resizeactive,0 -40
|
||||
binde = ,j,resizeactive,0 40
|
||||
binde = , L, resizeactive, 40 0
|
||||
binde = , H, resizeactive, -40 0
|
||||
binde = , K, resizeactive, 0 -40
|
||||
binde = , J, resizeactive, 0 40
|
||||
|
||||
bind = , escape, submap, reset
|
||||
|
||||
|
|
|
@ -13,20 +13,6 @@ input {
|
|||
}
|
||||
}
|
||||
|
||||
device:sonix-usb-device {
|
||||
kb_layout = es,us
|
||||
kb_options = compose:rctrl,level3:ralt_switch,grp:win_space_toggle
|
||||
|
||||
numlock_by_default = true
|
||||
}
|
||||
|
||||
device:evision-usb-device {
|
||||
kb_layout = us,es
|
||||
kb_options = compose:rctrl,level3:ralt_switch,grp:win_space_toggle
|
||||
|
||||
numlock_by_default = true
|
||||
}
|
||||
|
||||
misc {
|
||||
always_follow_on_dnd = true
|
||||
disable_hyprland_logo = true
|
||||
|
|
|
@ -31,7 +31,7 @@ windowrulev2 = workspace 8,class:^(.*Ryujinx.*)$|(.*cemu.*)$|(.*dolphin.*)$|(.*R
|
|||
|
||||
# Media
|
||||
windowrulev2 = workspace 23 silent, class:^(.*thunderbird.*)$
|
||||
windowrulev2 = workspace 21,silent,class:^(.*Spotify.*)$
|
||||
windowrulev2 = workspace 21 silent, class:^(.*Spotify.*)$
|
||||
windowrulev2 = workspace 22 silent, class:^(.*discord.*)$
|
||||
windowrulev2 = workspace 17, class:^(.*obsproject.*)$
|
||||
windowrulev2 = workspace 16, class:^(.*easyeffects.*)$|^(.*qpwgraph.*)$
|
||||
|
|
Loading…
Add table
Reference in a new issue