Basic rice set up. Still need to add a way to reiably update the package lists and i need a launcher.
This commit is contained in:
commit
3e89f350a6
107 changed files with 7553 additions and 0 deletions
90
private_dot_config/hypr/land/binds.conf
Normal file
90
private_dot_config/hypr/land/binds.conf
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
# App launching
|
||||
bind = $mod, Return, exec, $terminal
|
||||
bind = $mod SHIFT, Return, exec, $browser
|
||||
bind = $mod, a, exec, $audio
|
||||
bind = $mod, n, exec, $networking
|
||||
bind = $mod, b, exec, $bluetooth
|
||||
bind = $mod, p, exec, $display
|
||||
bind = $mod, d, exec, $menu
|
||||
bind = $mod, escape, exec, $lock
|
||||
|
||||
bind = CTRL, Print, exec, ~/.config/hypr/scripts/recording.sh
|
||||
bind = , Print, exec, mkdir -p ~/Pictures/Screenshots && grim -t ppm -o "$(hyprctl activeworkspace -j | jq -r '.monitor')" - | satty -f - -o ~/Pictures/Screenshots/satty-$(date '+%Y%m%d-%H:%M:%S').png
|
||||
|
||||
|
||||
bind = $mod, Q, killactive
|
||||
bind = $mod, F, fullscreen
|
||||
bind = $mod SHIFT, E, exit
|
||||
bind = $mod, Space, togglefloating
|
||||
|
||||
# App moving
|
||||
bind = $mod, h, movefocus, l
|
||||
bind = $mod, l, movefocus, r
|
||||
bind = $mod, k, movefocus, u
|
||||
bind = $mod, j, movefocus, d
|
||||
|
||||
bind = $mod SHIFT, h, movewindow, l
|
||||
bind = $mod SHIFT, l, movewindow, r
|
||||
bind = $mod SHIFT, k, movewindow, u
|
||||
bind = $mod SHIFT, j, movewindow, d
|
||||
|
||||
# App resizing
|
||||
bind = $mod, R, submap, resize
|
||||
submap = resize
|
||||
binde = , h, resizeactive, -10 0
|
||||
binde = , l, resizeactive, 10 0
|
||||
binde = , k, resizeactive, 0, -10
|
||||
binde = , j, resizeactive, 0, 10
|
||||
bind = $mod, R, submap, reset
|
||||
bind = , Return, submap, reset
|
||||
bind = , escape, submap, reset
|
||||
submap = reset
|
||||
|
||||
# Workspaces
|
||||
bind = $mod, 1, workspace, 1
|
||||
bind = $mod, 2, workspace, 2
|
||||
bind = $mod, 3, workspace, 3
|
||||
bind = $mod, 4, workspace, 4
|
||||
bind = $mod, 5, workspace, 5
|
||||
bind = $mod, 6, workspace, 6
|
||||
bind = $mod, 7, workspace, 7
|
||||
bind = $mod, 8, workspace, 8
|
||||
bind = $mod, 9, workspace, 9
|
||||
bind = $mod, 0, workspace, 10
|
||||
|
||||
bind = $mod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
## TODO: changeme scratchpad
|
||||
bind = $mod, S, togglespecialworkspace, magic
|
||||
bind = $mod SHIFT, S, movetoworkspace, special:magic
|
||||
|
||||
# Mouse bindings
|
||||
bind = $mod, mouse_down, workspace, e+1
|
||||
bind = $mod, mouse_up, workspace, e-1
|
||||
bindm = $mod, mouse:272, movewindow
|
||||
bindm = $mod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
bind = ,XF86AudioMedia, exec, ~/.config/hypr/scripts/switch_powerprofiles.sh toggle
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+
|
||||
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-
|
||||
|
||||
# Playback
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
|
||||
16
private_dot_config/hypr/land/defaults.conf
Normal file
16
private_dot_config/hypr/land/defaults.conf
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Normal variables
|
||||
$mod = alt
|
||||
|
||||
# Essential variables
|
||||
$terminal = /usr/bin/kitty
|
||||
$editor = /usr/bin/helix #THIS ONE MUST BE FULL PATH
|
||||
$lock = /usr/bin/hyprlock -c ~/.config/hypr/lock/lock.conf
|
||||
|
||||
# Setting applications
|
||||
$audio = $terminal /usr/bin/pulsemixer
|
||||
$networking = $terminal /usr/bin/nmtui
|
||||
$bluetooth = $terminal /usr/bin/bluetui
|
||||
$display = /usr/bin/nwg-displays -w ~/.config/hypr/land/workspaces.conf -m ~/.config/hypr/land/monitors.conf
|
||||
|
||||
# Other applications
|
||||
$browser = /usr/bin/firefox
|
||||
0
private_dot_config/hypr/land/empty_workspaces.conf
Normal file
0
private_dot_config/hypr/land/empty_workspaces.conf
Normal file
6
private_dot_config/hypr/land/env.conf
Normal file
6
private_dot_config/hypr/land/env.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
env = XCURSOR_SIZE,24
|
||||
env = HYPRCURSOR_SIZE,24
|
||||
|
||||
env = TERMINAL,$terminal
|
||||
env = EDITOR,$editor
|
||||
|
||||
18
private_dot_config/hypr/land/input.conf
Normal file
18
private_dot_config/hypr/land/input.conf
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
input {
|
||||
repeat_rate = 60
|
||||
repeat_delay = 200
|
||||
kb_layout = us
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options = compose:ralt
|
||||
kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
|
||||
sensitivity = 0
|
||||
|
||||
touchpad {
|
||||
natural_scroll = false
|
||||
}
|
||||
}
|
||||
gesture = 3, horizontal, workspace
|
||||
66
private_dot_config/hypr/land/lookandfeel.conf.tmpl
Normal file
66
private_dot_config/hypr/land/lookandfeel.conf.tmpl
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
|
||||
general {
|
||||
gaps_in = 3
|
||||
gaps_out = 5
|
||||
border_size = 1
|
||||
|
||||
col.active_border = rgb({{ .colors.base0E }})
|
||||
col.inactive_border = rgb({{ .colors.base02 }})
|
||||
resize_on_border = false
|
||||
allow_tearing = false
|
||||
layout = dwindle
|
||||
}
|
||||
|
||||
decoration {
|
||||
rounding = 5
|
||||
rounding_power = 3
|
||||
|
||||
active_opacity = 0.95
|
||||
inactive_opacity = 0.87
|
||||
shadow {
|
||||
enabled = true
|
||||
range = 4
|
||||
render_power = 3
|
||||
color = rgb({{ .colors.base01 }})
|
||||
}
|
||||
|
||||
blur {
|
||||
enabled = true
|
||||
size = 10
|
||||
passes = 2
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = yes
|
||||
|
||||
bezier = expressiv2FastSpatial, 0.42, 1.67, 0.21, 0.90
|
||||
bezier = expressiveSlowSpatial, 0.39, 1.29, 0.35, 0.98
|
||||
bezier = expressiveDefaultSpatial, 0.38, 1.21, 0.22, 1.00
|
||||
bezier = emphasizedDecel, 0.05, 0.7, 0.1, 1
|
||||
bezier = emphasizedAccel, 0.3, 0, 0.8, 0.15
|
||||
bezier = standardDecel, 0, 0, 0, 1
|
||||
bezier = menu_decel, 0.1, 1, 0, 1
|
||||
bezier = menu_accel, 0.52, 0.03, 0.72, 0.08
|
||||
animation = windowsIn, 1, 3, emphasizedDecel, popin 80%
|
||||
animation = windowsOut, 1, 2, emphasizedDecel, popin 90%
|
||||
animation = windowsMove, 1, 3, emphasizedDecel, slide
|
||||
animation = border, 1, 10, emphasizedDecel
|
||||
animation = layersIn, 1, 2.7, emphasizedDecel, popin 93%
|
||||
animation = layersOut, 1, 2.4, menu_accel, popin 94%
|
||||
animation = fadeLayersIn, 1, 0.5, menu_decel
|
||||
animation = fadeLayersOut, 1, 2.7, menu_accel
|
||||
animation = workspaces, 1, 7, menu_decel, slide
|
||||
animation = specialWorkspaceIn, 1, 2.8, emphasizedDecel, slidevert
|
||||
animation = specialWorkspaceOut, 1, 1.2, emphasizedAccel, slidevert
|
||||
}
|
||||
|
||||
dwindle {
|
||||
pseudotile = true
|
||||
preserve_split = true
|
||||
}
|
||||
|
||||
misc {
|
||||
force_default_wallpaper = -1
|
||||
disable_hyprland_logo = false
|
||||
}
|
||||
3
private_dot_config/hypr/land/monitors.conf
Normal file
3
private_dot_config/hypr/land/monitors.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Generated by nwg-displays on 2025-10-18 at 21:02:54. Do not edit manually.
|
||||
|
||||
monitor=eDP-1,2880x1920@120.0,0x0,1.6
|
||||
2
private_dot_config/hypr/land/rules.conf
Normal file
2
private_dot_config/hypr/land/rules.conf
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
windowrule = suppressevent maximize, class:.*
|
||||
windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||
5
private_dot_config/hypr/land/startup.conf
Normal file
5
private_dot_config/hypr/land/startup.conf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
exec-once = swaybg -i ~/Pictures/wallpaper.png
|
||||
exec-once = waybar
|
||||
exec-once = ~/.config/hypr/scripts/switch_powerprofiles.sh sync
|
||||
exec-once = /usr/bin/hyprlock -c ~/.config/hypr/lock/login.conf
|
||||
exec-once = mako
|
||||
Loading…
Add table
Add a link
Reference in a new issue