updated hyprland config to use hypr panel and integrated uwsm better, also more unified look on qt and gtk
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
# HUD: CONFIRM SWITCHING WORKSPACES with mainMod + [0-9]
|
||||
bind = $mainMod, 1, exec, nwg-hud -i nwg-workspace -m "Workspace 1"
|
||||
bind = $mainMod, 2, exec, nwg-hud -i nwg-workspace -m "Workspace 2"
|
||||
bind = $mainMod, 3, exec, nwg-hud -i nwg-workspace -m "Workspace 3"
|
||||
bind = $mainMod, 4, exec, nwg-hud -i nwg-workspace -m "Workspace 4"
|
||||
bind = $mainMod, 5, exec, nwg-hud -i nwg-workspace -m "Workspace 5"
|
||||
bind = $mainMod, 6, exec, nwg-hud -i nwg-workspace -m "Workspace 6"
|
||||
bind = $mainMod, 7, exec, nwg-hud -i nwg-workspace -m "Workspace 7"
|
||||
bind = $mainMod, 8, exec, nwg-hud -i nwg-workspace -m "Workspace 8"
|
||||
bind = $mainMod, 9, exec, nwg-hud -i nwg-workspace -m "Workspace 9"
|
||||
bind = $mainMod, 0, exec, nwg-hud -i nwg-workspace -m "Workspace 10"
|
||||
|
||||
# HUD: CONFIRM MOVING ACTIVE WINDOW TO A WORKSPACE with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, exec, nwg-hud -i nwg-workspace -m "Workspace 1"
|
||||
bind = $mainMod SHIFT, 2, exec, nwg-hud -i nwg-workspace -m "Workspace 2"
|
||||
bind = $mainMod SHIFT, 3, exec, nwg-hud -i nwg-workspace -m "Workspace 3"
|
||||
bind = $mainMod SHIFT, 4, exec, nwg-hud -i nwg-workspace -m "Workspace 4"
|
||||
bind = $mainMod SHIFT, 5, exec, nwg-hud -i nwg-workspace -m "Workspace 5"
|
||||
bind = $mainMod SHIFT, 6, exec, nwg-hud -i nwg-workspace -m "Workspace 6"
|
||||
bind = $mainMod SHIFT, 7, exec, nwg-hud -i nwg-workspace -m "Workspace 7"
|
||||
bind = $mainMod SHIFT, 8, exec, nwg-hud -i nwg-workspace -m "Workspace 8"
|
||||
bind = $mainMod SHIFT, 9, exec, nwg-hud -i nwg-workspace -m "Workspace 9"
|
||||
bind = $mainMod SHIFT, 0, exec, nwg-hud -i nwg-workspace -m "Workspace 10"
|
||||
37
hypr/hypridle.conf
Normal file
37
hypr/hypridle.conf
Normal file
@@ -0,0 +1,37 @@
|
||||
### based on the example config from hyprland.org
|
||||
|
||||
general {
|
||||
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances.
|
||||
before_sleep_cmd = loginctl lock-session # lock before suspend.
|
||||
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
|
||||
}
|
||||
|
||||
|
||||
#listener {
|
||||
# timeout = 150 # 2.5min.
|
||||
# on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor.
|
||||
# on-resume = brightnessctl -r # monitor backlight restore.
|
||||
#}
|
||||
|
||||
# turn off keyboard backlight, comment out this section if you dont have a keyboard backlight.
|
||||
#listener {
|
||||
# timeout = 150 # 2.5min.
|
||||
# on-timeout = brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight.
|
||||
# on-resume = brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight.
|
||||
#}
|
||||
|
||||
listener {
|
||||
timeout = 300 # 5min
|
||||
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
||||
on-resume = hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired.
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 1800 # 30min
|
||||
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 3600 # 60min
|
||||
on-timeout = systemctl hybrid-sleep # hibernate and suspend pc
|
||||
}
|
||||
@@ -1,208 +1,198 @@
|
||||
# nwg-shell Hyprland config file
|
||||
#
|
||||
# The nwg-shell-config utility generates a part of settings for you:
|
||||
# General, Input devices, Touchpad, Dwindle layout, Master layout.
|
||||
# Decoration, animations, gestures and per-device config are left to be configured by yourself.
|
||||
# Refer to the Hyprland wiki at https://wiki.hyprland.org for more information.
|
||||
|
||||
#
|
||||
# Monitors & workspaces: nwg-displays generates 2 files, which we include here:
|
||||
#
|
||||
source = ~/.config/hypr/monitors.conf
|
||||
source = ~/.config/hypr/workspaces.conf
|
||||
################
|
||||
### MONITORS ###
|
||||
################
|
||||
|
||||
#
|
||||
# Autostart. Feel free to add your own entries.
|
||||
# Shell components will be started in the includes.conf file, which we include below.
|
||||
#
|
||||
exec = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||
exec-once = ~/.azotebg-hyprland # Wallpaper
|
||||
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
source = ~/.config/hypr/hyprland.d/monitors.conf
|
||||
source = ~/.config/hypr/hyprland.d/workspaces.conf
|
||||
|
||||
#
|
||||
# Include settings generated by nwg-shell-config
|
||||
#
|
||||
source = ~/.config/hypr/includes.conf
|
||||
#################
|
||||
### AUTOSTART ###
|
||||
#################
|
||||
|
||||
#
|
||||
# All the settings below are up to you. We don't touch them in the shell config utility.
|
||||
#
|
||||
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||
# Or execute your favorite apps at launch like this:
|
||||
|
||||
source = ~/.config/hypr/hyprland.d/autostart.conf
|
||||
|
||||
#############################
|
||||
### ENVIRONMENT VARIABLES ###
|
||||
#############################
|
||||
|
||||
# uwsm handles those
|
||||
|
||||
#####################
|
||||
### LOOK AND FEEL ###
|
||||
#####################
|
||||
|
||||
# Refer to https://wiki.hyprland.org/Configuring/Variables/
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#general
|
||||
general {
|
||||
gaps_in = 5
|
||||
gaps_out = 5
|
||||
|
||||
border_size = 1
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||
col.inactive_border = rgba(595959aa)
|
||||
|
||||
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
||||
resize_on_border = false
|
||||
|
||||
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||
allow_tearing = false
|
||||
|
||||
layout = dwindle
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#decoration
|
||||
decoration {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
rounding = 0
|
||||
rounding = 5
|
||||
|
||||
# Change transparency of focused and unfocused windows
|
||||
active_opacity = 1.0
|
||||
inactive_opacity = 1.0
|
||||
|
||||
# Dim inactive windows
|
||||
dim_inactive = true
|
||||
dim_strength = 0.2
|
||||
|
||||
shadow {
|
||||
enabled = false
|
||||
range = 4
|
||||
render_power = 3
|
||||
color = rgba(1a1a1aee)
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||
blur {
|
||||
enabled = true
|
||||
size = 3
|
||||
passes = 1
|
||||
new_optimizations = true
|
||||
enabled = true
|
||||
size = 3
|
||||
passes = 1
|
||||
|
||||
vibrancy = 0.1696
|
||||
}
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||
animations {
|
||||
enabled = true
|
||||
enabled = yes, please :)
|
||||
|
||||
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
||||
# Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||
|
||||
animation = windows, 1, 7, myBezier
|
||||
animation = windowsOut, 1, 7, default, popin 80%
|
||||
animation = border, 1, 10, default
|
||||
animation = borderangle, 1, 8, default
|
||||
animation = fade, 1, 7, default
|
||||
animation = workspaces, 1, 6, default
|
||||
bezier = easeOutQuint,0.23,1,0.32,1
|
||||
bezier = easeInOutCubic,0.65,0.05,0.36,1
|
||||
bezier = linear,0,0,1,1
|
||||
bezier = almostLinear,0.5,0.5,0.75,1.0
|
||||
bezier = quick,0.15,0,0.1,1
|
||||
|
||||
animation = global, 1, 10, default
|
||||
animation = border, 1, 5.39, easeOutQuint
|
||||
animation = windows, 1, 4.79, easeOutQuint
|
||||
animation = windowsIn, 1, 4.1, easeOutQuint, popin 87%
|
||||
animation = windowsOut, 1, 1.49, linear, popin 87%
|
||||
animation = fadeIn, 1, 1.73, almostLinear
|
||||
animation = fadeOut, 1, 1.46, almostLinear
|
||||
animation = fade, 1, 3.03, quick
|
||||
animation = layers, 1, 3.81, easeOutQuint
|
||||
animation = layersIn, 1, 4, easeOutQuint, fade
|
||||
animation = layersOut, 1, 1.5, linear, fade
|
||||
animation = fadeLayersIn, 1, 1.79, almostLinear
|
||||
animation = fadeLayersOut, 1, 1.39, almostLinear
|
||||
animation = workspaces, 1, 1.94, almostLinear, fade
|
||||
animation = workspacesIn, 1, 1.21, almostLinear, fade
|
||||
animation = workspacesOut, 1, 1.94, almostLinear, fade
|
||||
}
|
||||
|
||||
# Ref https://wiki.hyprland.org/Configuring/Workspace-Rules/
|
||||
# "Smart gaps" / "No gaps when only"
|
||||
# uncomment all if you wish to use that.
|
||||
# workspace = w[tv1], gapsout:0, gapsin:0
|
||||
# workspace = f[1], gapsout:0, gapsin:0
|
||||
# windowrulev2 = bordersize 0, floating:0, onworkspace:w[tv1]
|
||||
# windowrulev2 = rounding 0, floating:0, onworkspace:w[tv1]
|
||||
# windowrulev2 = bordersize 0, floating:0, onworkspace:f[1]
|
||||
# windowrulev2 = rounding 0, floating:0, onworkspace:f[1]
|
||||
|
||||
# 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
|
||||
preserve_split = true # You probably want this
|
||||
}
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||
master {
|
||||
new_status = master
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||
misc {
|
||||
force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers
|
||||
disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :(
|
||||
vrr = 2
|
||||
mouse_move_enables_dpms = true
|
||||
key_press_enables_dpms = true
|
||||
layers_hog_keyboard_focus = true
|
||||
mouse_move_focuses_monitor = true
|
||||
}
|
||||
|
||||
#############
|
||||
### INPUT ###
|
||||
#############
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#input
|
||||
input {
|
||||
kb_layout = eu
|
||||
kb_options = caps:escape_shifted_capslock, compose:102
|
||||
numlock_by_default = true
|
||||
repeat_rate = 25
|
||||
repeat_delay = 600
|
||||
follow_mouse = 1
|
||||
mouse_refocus = true
|
||||
float_switch_override_focus = 1
|
||||
touchpad {
|
||||
disable_while_typing = true
|
||||
scroll_factor = 1.0
|
||||
tap-to-click = true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||
gestures {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
workspace_swipe = false
|
||||
}
|
||||
|
||||
# Example per-device config
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/#executing for more
|
||||
# device:epic-mouse-v1 {
|
||||
# sensitivity = -0.5
|
||||
# }
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
||||
#device {
|
||||
# name = epic-mouse-v1
|
||||
# sensitivity = -0.5
|
||||
#}
|
||||
|
||||
###################
|
||||
### KEYBINDINGS ###
|
||||
###################
|
||||
|
||||
source = ~/.config/hypr/hyprland.d/keybinds.conf
|
||||
|
||||
##############################
|
||||
### WINDOWS AND WORKSPACES ###
|
||||
##############################
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
|
||||
|
||||
# Example windowrule v1
|
||||
windowrule = float, ^(galculator|azote)$
|
||||
windowrule = float,title:^(Postęp działań na plikach)$
|
||||
# windowrule = float, ^(kitty)$
|
||||
|
||||
# Example windowrule v2
|
||||
windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||
windowrulev2 = float,title:^(Potwierdzenie zastąpienia plików)$
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
$mainMod = SUPER
|
||||
# Ignore maximize requests from apps. You'll probably like this.
|
||||
windowrulev2 = suppressevent maximize, class:.*
|
||||
|
||||
$quicklaunch = walker
|
||||
|
||||
# KEY BINDINGS, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||
# If you happen to change some key bindings, you may also edit ~/.local/share/nwg-shell-config/help-hyprland.pango
|
||||
|
||||
# We've defined $term, $editor and so on in includes.conf.
|
||||
bind = $mainMod, E, exec, uwsm app -- $filemanager
|
||||
bind = $mainMod, W, exec, uwsm app -- $browser
|
||||
bind = $mainMod Shift, E, exec, uwsm app -- $editor
|
||||
bind = $mainMod, X, exec, uwsm app -- $quicklaunch
|
||||
bind = $mainMod Shift, X, exec, uwsm app -- $launcher
|
||||
bind = $mainMod, C, exec, uwsm app -- nwg-clipman
|
||||
bind = $mainMod, Return, exec, uwsm app -T
|
||||
bind = $mainMod, F2, exec, uwsm app -- $term
|
||||
|
||||
# Show/hide the dock, if started
|
||||
bind = ALT, D, exec, pkill -10 nwg-dock
|
||||
|
||||
bind = $mainMod, Escape, exec, nwg-lock # screen locker, according to shell settings
|
||||
bind = $mainMod, F1, exec, nwg-shell-help # help window
|
||||
|
||||
bind = $mainMod SHIFT, F, fullscreen
|
||||
bind = $mainMod, I, pin
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod SHIFT, Escape, exit,
|
||||
bind = $mainMod, Space, togglefloating,
|
||||
bind = $mainMod SHIFT, C, exec, hyprctl reload # reload Hyprland
|
||||
bind = $mainMod SHIFT, S, movetoworkspace, special # move to the special workspace
|
||||
bind = $mainMod, S, togglespecialworkspace # show/hide special workspace
|
||||
|
||||
bind = ALT, Tab, togglesplit, # (dwindle)
|
||||
bind = $mainMod, P, pseudo, # (dwindle)
|
||||
|
||||
# SCREENSHOT (/usr/local/bin/screenshot)
|
||||
bind = , Print, exec, screenshot fullscreen # full screen
|
||||
bind = CONTROL, Print, exec, screenshot display # focused display
|
||||
bind = $mainMod SHIFT+CONTROL, Print, exec, screenshot focused # focused window
|
||||
bind = SHIFT+CONTROL, Print, exec, screenshot swappy # selected region -> swappy
|
||||
# bind = SHIFT+CONTROL, Print, exec, screenshot region # or selected region w/o swappy
|
||||
|
||||
# MOVE FOCUS with mainMod + arrow keys
|
||||
bind = $mainMod, H, movefocus, l
|
||||
bind = $mainMod, L, movefocus, r
|
||||
bind = $mainMod, K, movefocus, u
|
||||
bind = $mainMod, J, movefocus, d
|
||||
|
||||
# MOVE WINDOW with mainMod SHIFT + arrow keys
|
||||
bind = $mainMod SHIFT, H, movewindow, l
|
||||
bind = $mainMod SHIFT, L, movewindow, r
|
||||
bind = $mainMod SHIFT, K, movewindow, u
|
||||
bind = $mainMod SHIFT, J, movewindow, d
|
||||
|
||||
# Resize window with mainMod + CTRL + vim keys
|
||||
bind = $mainMod CTRL, h, resizeactive,-25 0
|
||||
bind = $mainMod CTRL, l, resizeactive,25 0
|
||||
bind = $mainMod CTRL, k, resizeactive,0 -25
|
||||
bind = $mainMod CTRL, j, resizeactive,0 25
|
||||
|
||||
# SWITCH WORKSPACES with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod, 7, workspace, 7
|
||||
bind = $mainMod, 8, workspace, 8
|
||||
bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
# MOVE ACTIVE WINDOW TO A WORKSPACE with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
# SCROLL THROUGH EXISTING WORKSPACES with mainMod + scroll
|
||||
bind = $mainMod, mouse_down, workspace, e+1
|
||||
bind = $mainMod, mouse_up, workspace, e-1
|
||||
|
||||
# MOVE/RESIZE WINDOWS with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @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 s 10%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
||||
|
||||
# Requires playerctl
|
||||
bindl = , XF86AudioNext, exec, playerctl -a next
|
||||
bindl = , XF86AudioPause, exec, playerctl -a play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl -a play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl -a previous
|
||||
|
||||
# KEY BINDINGS SUBMAP TO RESIZE WINDOWS WITH ARROW KEYS
|
||||
# switch to a submap called resize
|
||||
bind = $mainMod, R, submap, resize
|
||||
|
||||
# start a submap called "resize"
|
||||
submap = resize
|
||||
|
||||
# set repeatable binds for resizing the active window
|
||||
binde = , H, resizeactive, 10 0
|
||||
binde = , L, resizeactive, -10 0
|
||||
binde = , K, resizeactive, 0 -10
|
||||
binde = , J, resizeactive, 0 10
|
||||
|
||||
# use reset to go back to the global submap
|
||||
bind = , escape, submap, reset
|
||||
|
||||
# will reset the submap, which will return to the global submap
|
||||
submap = reset
|
||||
# keybinds further down will be global again...
|
||||
|
||||
#
|
||||
# HUD MESSAGES (must be defined after primary bindings).
|
||||
# In case you find them annoying, delete the line below.
|
||||
# You can also delete the ~/.config/hypr/hud.conf file afterwards.
|
||||
#
|
||||
source = ~/.config/hypr/hud.conf
|
||||
# Fix some dragging issues with XWayland
|
||||
windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||
|
||||
9
hypr/hyprland.d/autostart.conf
Normal file
9
hypr/hyprland.d/autostart.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
# AUTOSTART
|
||||
# most apps are either started as systemd service like either directly like hyprpolkitagent or indirectly via uwsm
|
||||
# and ~/.config/autostart
|
||||
exec-once = uwsm app -- nm-applet --indicator
|
||||
exec-once = wl-paste --type text --watch cliphist store
|
||||
exec-once = wl-paste --type image --watch cliphist store
|
||||
exec-once = uwsm app -- nwg-screenshot-applet
|
||||
exec-once = uwsm app -- hyprpanel
|
||||
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||
103
hypr/hyprland.d/keybinds.conf
Normal file
103
hypr/hyprland.d/keybinds.conf
Normal file
@@ -0,0 +1,103 @@
|
||||
##############################################
|
||||
################## MY APPS ###################
|
||||
##############################################
|
||||
|
||||
# Set programs that you use
|
||||
$terminal = uwsm app -T
|
||||
$filemanager = uwsm app -- dolphin
|
||||
$launcher = uwsm app -- walker
|
||||
$clipboard = uwsm app -- nwg-clipman
|
||||
$browser = uwsm app -- firefox
|
||||
$editor = uwsm app -T -- vim
|
||||
$lockcmd = loginctl lock-session
|
||||
|
||||
##############################################
|
||||
################## KEYBINDS ##################
|
||||
##############################################
|
||||
|
||||
$mainMod = SUPER
|
||||
|
||||
bind = $mainMod, E, exec, $filemanager
|
||||
bind = $mainMod, W, exec, $browser
|
||||
bind = $mainMod Shift, E, exec, $editor
|
||||
bind = $mainMod, X, exec, $launcher
|
||||
bind = $mainMod, C, exec, uwsm app -- nwg-clipman
|
||||
bind = $mainMod, Return, exec, $terminal
|
||||
|
||||
bind = $mainMod SHIFT, C, exec, hyprctl reload # reload Hyprland
|
||||
bind = $mainMod SHIFT, Escape, exit,
|
||||
bind = $mainMod, Escape, exec, $lockcmd
|
||||
|
||||
bind = $mainMod, I, pin
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, Space, togglefloating,
|
||||
bind = $mainMod SHIFT, F, fullscreen
|
||||
|
||||
bind = $mainMod SHIFT, S, movetoworkspace, special # move to the special workspace
|
||||
bind = $mainMod, S, togglespecialworkspace # show/hide special workspace
|
||||
|
||||
#dwindle layout
|
||||
bind = $mainMod, Tab, swapsplit,
|
||||
bind = ALT, Tab, togglesplit,
|
||||
bind = CTRL, Tab, layoutmsg, movetoroot
|
||||
bind = $mainMod, P, pseudo,
|
||||
|
||||
# MOVE FOCUS with mainMod + vim keys
|
||||
bind = $mainMod, H, movefocus, l
|
||||
bind = $mainMod, L, movefocus, r
|
||||
bind = $mainMod, K, movefocus, u
|
||||
bind = $mainMod, J, movefocus, d
|
||||
|
||||
# MOVE WINDOW with mainMod SHIFT + vim keys
|
||||
bind = $mainMod SHIFT, H, movewindow, l
|
||||
bind = $mainMod SHIFT, L, movewindow, r
|
||||
bind = $mainMod SHIFT, K, movewindow, u
|
||||
bind = $mainMod SHIFT, J, movewindow, d
|
||||
|
||||
# Resize window with mainMod + CTRL + vim keys
|
||||
bind = $mainMod CTRL, h, resizeactive,-25 0
|
||||
bind = $mainMod CTRL, l, resizeactive,25 0
|
||||
bind = $mainMod CTRL, k, resizeactive,0 -25
|
||||
bind = $mainMod CTRL, j, resizeactive,0 25
|
||||
|
||||
# SWITCH WORKSPACES with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod, 7, workspace, 7
|
||||
bind = $mainMod, 8, workspace, 8
|
||||
bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
# MOVE ACTIVE WINDOW TO A WORKSPACE with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
# MOVE/RESIZE WINDOWS with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @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 s 10%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
||||
|
||||
# Requires playerctl
|
||||
bindl = , XF86AudioNext, exec, playerctl -a next
|
||||
bindl = , XF86AudioPause, exec, playerctl -a play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl -a play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl -a previous
|
||||
4
hypr/hyprland.d/monitors.conf
Normal file
4
hypr/hyprland.d/monitors.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
# Generated by nwg-displays on 2025-01-18 at 02:07:11. Do not edit manually.
|
||||
|
||||
monitor=DP-2,1920x1080@60.0,0x0,1.0
|
||||
monitor=DP-3,1920x1080@144.0,1920x0,1.0
|
||||
12
hypr/hyprland.d/workspaces.conf
Normal file
12
hypr/hyprland.d/workspaces.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
# Generated by nwg-displays on 2025-01-03 at 03:55:55. Do not edit manually.
|
||||
|
||||
workspace=1,monitor:DP-2,default:true
|
||||
workspace=2,monitor:DP-2
|
||||
workspace=3,monitor:DP-2
|
||||
workspace=4,monitor:DP-2
|
||||
workspace=5,monitor:DP-2
|
||||
workspace=6,monitor:DP-3,default:true
|
||||
workspace=7,monitor:DP-3
|
||||
workspace=8,monitor:DP-3
|
||||
workspace=9,monitor:DP-3
|
||||
workspace=10,monitor:DP-3
|
||||
66
hypr/hyprlock.conf
Normal file
66
hypr/hyprlock.conf
Normal file
@@ -0,0 +1,66 @@
|
||||
general {
|
||||
hide_cursor = true
|
||||
ignore_empty_input = true
|
||||
}
|
||||
|
||||
#auth {
|
||||
# just leave the defaults
|
||||
#}
|
||||
|
||||
##################
|
||||
### BACKGROUND ###
|
||||
##################
|
||||
background {
|
||||
monitor =
|
||||
path = /home/mpuchstein/Pictures/wallpaper/1920x1080/widescreen/208 - Dv9LXh1.jpg
|
||||
}
|
||||
|
||||
#############
|
||||
### INPUT ###
|
||||
#############
|
||||
input-field {
|
||||
size = 250, 60
|
||||
outline_thickness = 2
|
||||
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
|
||||
dots_spacing = 0.35 # Scale of dots' absolute size, 0.0 - 1.0
|
||||
dots_center = true
|
||||
outer_color = rgba(0, 0, 0, 0)
|
||||
inner_color = rgba(0, 0, 0, 0.2)
|
||||
font_color = rgba(255, 0, 132, 0.8)
|
||||
fade_on_empty = false
|
||||
rounding = -1
|
||||
check_color = rgb(204, 136, 34)
|
||||
placeholder_text =
|
||||
hide_input = false
|
||||
position = 0, -200
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
|
||||
############
|
||||
### DATA ###
|
||||
############
|
||||
label {
|
||||
monitor =
|
||||
text = cmd[update:1000] echo "$(date +"%A, %B %d")"
|
||||
color = rgba(242, 243, 244, 0.75)
|
||||
font_size = 22
|
||||
font_family = Inconsolata Nerd Font Mono
|
||||
position = 0, 300
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
|
||||
############
|
||||
### TIME ###
|
||||
############
|
||||
label {
|
||||
monitor =
|
||||
text = cmd[update:1000] echo "$(date +"%-I:%M")"
|
||||
color = rgba(242, 243, 244, 0.75)
|
||||
font_size = 95
|
||||
font_family = Inconsolata Nerd Font Mono Bold
|
||||
position = 0, 200
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
9
hypr/hyprpaper.conf
Normal file
9
hypr/hyprpaper.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
splash = true
|
||||
splash_color = d202fcff
|
||||
splash_offset = 2.0
|
||||
ipc = true
|
||||
|
||||
preload = /home/mpuchstein/Pictures/wallpaper/1920x1080/widescreen/138 - 1jb5suO.jpg
|
||||
wallpaper = DP-2, /home/mpuchstein/Pictures/wallpaper/1920x1080/widescreen/138 - 1jb5suO.jpg
|
||||
preload = /home/mpuchstein/Pictures/wallpaper/1920x1080/widescreen/97 - YDJuRTa.jpg
|
||||
wallpaper = DP-3, /home/mpuchstein/Pictures/wallpaper/1920x1080/widescreen/97 - YDJuRTa.jpg
|
||||
@@ -1,89 +0,0 @@
|
||||
# This content was generated by nwg-shell-config. Do not modify it manually.
|
||||
|
||||
# VARIABLES
|
||||
$term = alacritty
|
||||
$browser = MOZ_ENABLE_WAYLAND=1 firefox
|
||||
$filemanager = thunar
|
||||
$editor = mousepad
|
||||
$launcher = nwg-drawer
|
||||
$exit = $launcher
|
||||
|
||||
# AUTOSTART
|
||||
exec-once = wlsunset -t 3500 -T 6500 -l 49.6113 -L 6.1298 -g 1.0
|
||||
exec-once = swaync -c /home/mpuchstein/.config/swaync/hyprland.json -s /home/mpuchstein/.config/swaync/hyprland-1.css
|
||||
exec-once = nm-applet --indicator
|
||||
exec-once = wl-paste --type text --watch cliphist store
|
||||
exec-once = wl-paste --type image --watch cliphist store
|
||||
exec = nwg-drawer -r -c 6 -is 64 -fscol 2 -s hyprland-1.css -term alacritty -ft -pbexit 'nwg-dialog -p exit-hyprland -c "hyprctl dispatch exit"' -pblock 'nwg-lock' -pbpoweroff 'nwg-dialog -p poweroff -c "systemctl -i poweroff"' -pbreboot 'nwg-dialog -p reboot -c "systemctl reboot"' -pbsleep 'nwg-dialog -p sleep -c "systemctl suspend"' -pbsize 48
|
||||
exec = nwg-panel -c hyprland-1 -s hyprland-1.css
|
||||
exec = swayidle timeout 1800 nwg-lock timeout 3600 'systemctl suspend'
|
||||
exec-once = nwg-update-indicator
|
||||
exec = nwg-screenshot-applet
|
||||
|
||||
# GENERAL SETTINGS
|
||||
general {
|
||||
border_size = 1
|
||||
no_border_on_floating = false
|
||||
gaps_in = 3
|
||||
gaps_out = 3
|
||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||
col.inactive_border = rgba(595959aa)
|
||||
layout = dwindle
|
||||
extend_border_grab_area = true
|
||||
hover_icon_on_border = true
|
||||
}
|
||||
|
||||
# DWINDLE LAYOUT
|
||||
dwindle {
|
||||
pseudotile = true
|
||||
force_split = 0
|
||||
preserve_split = true
|
||||
smart_split = false
|
||||
smart_resizing = true
|
||||
special_scale_factor = 0.8
|
||||
split_width_multiplier = 1.0
|
||||
use_active_for_splits = true
|
||||
default_split_ratio = 1.0
|
||||
}
|
||||
|
||||
# MASTER LAYOUT
|
||||
master {
|
||||
allow_small_split = false
|
||||
special_scale_factor = 0.8
|
||||
mfact = 0.55
|
||||
new_on_top = false
|
||||
orientation = left
|
||||
inherit_fullscreen = true
|
||||
always_center_master = false
|
||||
}
|
||||
|
||||
# INPUT DEVICES
|
||||
input {
|
||||
kb_layout = eu
|
||||
kb_options = caps:escape_shifted_capslock, compose:102
|
||||
numlock_by_default = true
|
||||
repeat_rate = 25
|
||||
repeat_delay = 600
|
||||
follow_mouse = 1
|
||||
mouse_refocus = true
|
||||
float_switch_override_focus = 1
|
||||
touchpad {
|
||||
disable_while_typing = true
|
||||
scroll_factor = 1.0
|
||||
tap-to-click = true
|
||||
}
|
||||
}
|
||||
|
||||
# MISC SETTINGS
|
||||
misc {
|
||||
disable_hyprland_logo = false
|
||||
disable_splash_rendering = false
|
||||
vrr = 2
|
||||
mouse_move_enables_dpms = true
|
||||
key_press_enables_dpms = true
|
||||
layers_hog_keyboard_focus = true
|
||||
focus_on_activate = false
|
||||
mouse_move_focuses_monitor = true
|
||||
}
|
||||
|
||||
# LAYER RULES
|
||||
@@ -1,4 +0,0 @@
|
||||
# Generated by nwg-displays on 2025-01-03 at 03:56:12. Do not edit manually.
|
||||
|
||||
monitor=DP-2,1920x1080@60.0,0x0,1.0
|
||||
monitor=DP-3,1920x1080@144.0,1920x0,1.0
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
# Generated by nwg-displays on 2025-01-03 at 03:55:55. Do not edit manually.
|
||||
|
||||
workspace=1,monitor:DP-2,default:true
|
||||
workspace=2,monitor:DP-2
|
||||
workspace=3,monitor:DP-2
|
||||
workspace=4,monitor:DP-2
|
||||
workspace=5,monitor:DP-2
|
||||
workspace=6,monitor:DP-3,default:true
|
||||
workspace=7,monitor:DP-3
|
||||
workspace=8,monitor:DP-3
|
||||
workspace=9,monitor:DP-3
|
||||
workspace=10,monitor:DP-3
|
||||
|
||||
Reference in New Issue
Block a user