stuff
This commit is contained in:
@ -50,6 +50,7 @@ exec-once = dunst
|
||||
exec-once = waybar
|
||||
exec-once = darkman run
|
||||
exec-once = vicinae server
|
||||
exec-once = udiskie
|
||||
|
||||
# Open programs on special workspaces
|
||||
exec-once = [ workspace special:term silent] $terminal
|
||||
@ -113,6 +114,7 @@ general {
|
||||
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||
allow_tearing = false
|
||||
|
||||
# Use dwindle per default, changed on a per-workspace basis in the workspace rules below
|
||||
layout = dwindle
|
||||
}
|
||||
|
||||
@ -162,13 +164,19 @@ animations {
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||
dwindle {
|
||||
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||
pseudotile = true # Master switch for pseudotiling.
|
||||
preserve_split = true # You probably want this
|
||||
|
||||
smart_split = false # No splitting based on cursor position
|
||||
force_split = 2 # Always split to right
|
||||
}
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||
master {
|
||||
new_status = master
|
||||
new_status = slave # New windows are slaves by default
|
||||
|
||||
mfact = 0.7
|
||||
orientation = right
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||
@ -230,17 +238,18 @@ $mainMod = SUPER # Sets "Windows" key as main modifier
|
||||
bind = $mainMod, T, exec, $terminal
|
||||
bind = $mainMod, B, exec, $browser
|
||||
bind = $mainMod, Return, exec, $launcher
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, F, fullscreen,
|
||||
bind = $mainMod, M, splitratio, exact 0.6,
|
||||
bind = $mainMod, Space, exec, $launcher
|
||||
bind = $mainMod, Q, killactive
|
||||
bind = $mainMod, F, fullscreen
|
||||
bind = $mainMod, M, splitratio, exact 0.6
|
||||
bind = $mainMod, mouse_down, splitratio, 0.1
|
||||
bind = $mainMod, mouse_up, splitratio, -0.1
|
||||
bind = $mainMod, E, exec, $fileManager
|
||||
# bind = $mainMod, V, exec, cliphist list | tofi | cliphist decode | wl-copy
|
||||
bind = $mainMod, V, exec, vicinae vicinae://extensions/vicinae/clipboard/history
|
||||
bind = $mainMod, X, togglefloating,
|
||||
bind = $mainMod, X, togglefloating
|
||||
bind = $mainMod, P, pin, active
|
||||
bind = $mainMod, J, togglesplit, # dwindle
|
||||
bind = $mainMod, J, layoutmsg, togglesplit # dwindle
|
||||
bind = $mainMod SHIFT, S, exec, hyprshot -m region
|
||||
bind = $mainMod, PRINT, exec, hyprshot -m window
|
||||
bind = $mainMod SHIFT, B, exec, pkill waybar & hyprctl dispatch exec waybar
|
||||
@ -375,11 +384,18 @@ windowrule {
|
||||
float = 1
|
||||
size = 576 1024
|
||||
}
|
||||
windowrule {
|
||||
name = "waydroid-apps"
|
||||
match:initial_class = waydroid\..*
|
||||
|
||||
float = 1
|
||||
size = 576 1024
|
||||
}
|
||||
|
||||
# Vicinae is always floating and exact size
|
||||
windowrule {
|
||||
name = "vicinae"
|
||||
match:initial_class = vicinae-server
|
||||
match:initial_class = vicinae
|
||||
float = 1
|
||||
pin = 1
|
||||
stay_focused = on
|
||||
@ -410,6 +426,7 @@ layerrule {
|
||||
blur = on
|
||||
}
|
||||
|
||||
# Disabled since vicinae is currently a window, and not a layer.
|
||||
# layerrule {
|
||||
# name = blur_vicinae
|
||||
# match:namespace = vicinae
|
||||
@ -440,4 +457,9 @@ workspace = special:term, gapsout:64
|
||||
workspace = special:browser, gapsout:64
|
||||
workspace = special:music, gapsout:64
|
||||
workspace = special:todo, gapsout:64
|
||||
workspace = special:files, gapsout:64
|
||||
workspace = special:files, gapsout:64
|
||||
|
||||
# Workspace rules to set layouts for specific workspaces (default is currently dwindle)
|
||||
workspace = 1, layout:master
|
||||
|
||||
workspace = special:term, layout:master
|
||||
Reference in New Issue
Block a user