Add Hyprland, Walker & Waybar configurations

- Import Hyprland config directory (conf.d splits, themes, scripts, hypridle/lock/paper)
- Add hyprfetch.sh startup script
- Add Walker vikingowl theme and updated style.css
- Add Waybar config.jsonc and style.css with “midnight-ocean” palette
- Organize wallpaper and lockscreen images for multi-monitor setup
This commit is contained in:
2025-07-09 15:21:38 +02:00
parent 233d61faac
commit 1e6ef2cd31
22 changed files with 1436 additions and 327 deletions

View File

@@ -0,0 +1,130 @@
#####################
### LOOK AND FEEL ###
#####################
# Refer to https://wiki.hyprland.org/Configuring/Variables/
# https://wiki.hyprland.org/Configuring/Variables/#general
general {
layout = dwindle
gaps_in = 3
gaps_out = 0 2 2 2
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)
col.active_border = rgba(79,132,204,0.8)
col.inactive_border = rgba(21,40,64,0.5)
# 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
layerrule = blur, waybar # Add blur to waybar
layerrule = blurpopups, waybar # Blur waybar popups too!
layerrule = ignorealpha 0.2, waybar # Make it so transparent parts are ignored
# give kitty that frosted-glass effect
layerrule = blur, kitty
layerrule = ignorealpha 0.1, kitty
}
group {
#col.border_active = rgba(33ccffee) rgba(00ff99ee) 45deg
#col.border_inactive = 0x66777700
col.border_active = rgba(79,132,204,0.8)
col.border_inactive = rgba(21,40,64,0.4)
col.border_locked_active = 0xfc6a0300
col.border_locked_inactive = 0x66775500
groupbar {
font_size = 12
height = 18
gradients = true
#col.active = rgb(293B6E)
#col.inactive = rgba(595959aa)
col.active = rgb(79,132,204)
col.inactive = rgba(21,40,64,0.3)
}
}
# https://wiki.hyprland.org/Configuring/Variables/#decoration
decoration {
rounding = 5
rounding_power = 4.0
# Change transparency of focused and unfocused windows
active_opacity = 1
inactive_opacity = 1
fullscreen_opacity = 1
dim_inactive = false
dim_strength = 0.2
dim_around = 1.0
# https://wiki.hyprland.org/Configuring/Variables/#blur
blur {
enabled = true
size = 2
passes = 3
xray = true
#vibrancy = 0.1696
vibrancy = 0.18
}
# https://wiki.hyprland.org/Configuring/Variables/#shadow
shadow {
enabled = true
range = 6
render_power = 2
sharp = false
ignore_window = true
#color = 0xee1a1a1a
color = 0xdd0b1b2b
#color_inactive = unset
#offset = [ 0, 0 ]
scale = 1.0
}
}
# https://wiki.hyprland.org/Configuring/Variables/#animations
animations {
enabled = true
# Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
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
}
# 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. :(
}
xwayland {
force_zero_scaling = true
}

View File

@@ -0,0 +1,6 @@
# Generated by nwg-displays on 2025-03-08 at 15:08:59. Do not edit manually.
monitor=DP-1,3440x1440@100.0,0x144,1.0
monitor=DP-2,2560x1440@99.95,3440x480,1.0
monitor=HDMI-A-2,1920x1080@60.0,6000x0,1.0
monitor=HDMI-A-2,transform,1

View File

@@ -0,0 +1,12 @@
# Generated by nwg-displays on 2025-03-08 at 15:11:02. Do not edit manually.
workspace=1,monitor:DP-2,persistent:true,default:true
workspace=2,monitor:DP-2,persistent:true
workspace=3,monitor:DP-2,persistent:true
workspace=4,monitor:DP-2,persistent:true
workspace=5,monitor:DP-2,persistent:true
workspace=6,monitor:DP-1,persistent:true,default:true
workspace=7,monitor:DP-1,persistent:true
workspace=8,monitor:DP-1,persistent:true
workspace=9,monitor:DP-1,persistent:true
workspace=10,monitor:HDMI-A-2,persistent:true,default:true

View File

@@ -0,0 +1,137 @@
##############
### KEYMAP ###
##############
input {
kb_layout = eu
#kb_layout = us
#kb_variant = altgr-intl
#kb_options = lv3:ralt_switch
}
###################
### KEYBINDINGS ###
###################
# See https://wiki.hyprland.org/Configuring/Keywords/
$mainMod = SUPER # Sets "Windows" key as main modifier
# Apps
$terminal = uwsm app -- kitty
$fileManager = uwsm app -- nautilus
$launcher = uwsm app -- walker
$uuctl = uwsm app -- uuctl walker -d
$emote = uwsm app -- emote
$notcenter = uwsm app -- swaync-client -t -sw
$notdnd = uwsm app -- swaync-client -d
$nothide = uwsm app -- swaync-client --hide-latest
$notclose = uwsm app -- swaync-client --close-latest
$notcloseall = uwsm app -- swaync-client --close-all
$lockcmd = hyprlock
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
# Layout Binds
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle
bind = $mainMod SHIFT, J, swapsplit, # dwindle
bind = $mainMod SHIFT, T, togglegroup, # tabbed i3 like
bind = $mainMod, T, changegroupactive, # tabbed change active
bind = $mainMod, F, fullscreen,
bind = $mainMod, V, togglefloating,
bind = $mainMod ALT_L, H, movewindoworgroup, l
bind = $mainMod ALT_L, J, movewindoworgroup, d
bind = $mainMod ALT_L, K, movewindoworgroup, u
bind = $mainMod ALT_L, L, movewindoworgroup, r
# Usability
bind = $mainMod SHIFT, Q, killactive,
bind = $mainMod, L, exec, $lockcmd
bind = $mainMod, M, exit,
# App Binds
bind = $mainMod, return, exec, $terminal
bind = $mainMod, E, exec, $fileManager
bind = $mainMod, D, exec, $launcher
bind = $mainMod SHIFT, D, exec, $uuctl
bind = $mainMod, PERIOD, exec, $emote
# swaync Binds
bind = $mainMod, Grave, exec, $notcenter
bind = $mainMod SHIFT, Grave, exec, $notdnd
bind = $mainMod, A, exec, $nothide
bind = $mainMod SHIFT, A, exec, $notclose
bind = $mainMod CTRL, A, exec, $notcloseall
# Screenshot
bind = ALT SHIFT, 3, exec, GRIMBLAST_EDITOR="satty -f" grimblast --notify edit output
bind = ALT SHIFT, 4, exec, GRIMBLAST_EDITOR="satty -f" grimblast --notify edit area
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u
bind = $mainMod, down, movefocus, d
bind = $mainMod SHIFT, left, movewindow, l
bind = $mainMod SHIFT, right, movewindow, r
bind = $mainMod SHIFT, up, movewindow, u
bind = $mainMod SHIFT, down, movewindow, d
# 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
# Example special workspace (scratchpad)
bind = $mainMod, S, togglespecialworkspace, magic
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
# Scroll through existing workspaces with mainMod + scroll
bind = $mainMod SHIFT, mouse_down, workspace, e+1
bind = $mainMod SHIFT, mouse_up, workspace, e-1
# Move/resize windows with mainMod + LMB/RMB and dragging
bindm = $mainMod SHIFT, mouse:272, movewindow # LMB
bindm = $mainMod SHIFT, mouse:273, resizewindow # RMB
# Media
bindl = , XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
bindl = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bindl = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
# Requires playerctl
bindl = , XF86AudioPlay, exec, playerctl play-pause
bindl = , XF86AudioPrev, exec, playerctl previous
bindl = , XF86AudioNext, exec, playerctl next
# SwayOSD
# Sink volume change
bindel = , XF86AudioRaiseVolume, exec, swayosd-client --output-volume raise
bindel = , XF86AudioLowerVolume, exec, swayosd-client --output-volume lower
# Sink volume toggle mute
bindel = , XF86AudioMute, exec, swayosd-client --output-volume mute-toggle
# Source volume toggle mute
bindel = , XF86AudioMicMute, exec, swayosd-client --input-volume mute-toggle
# Brightness change
bindel = , XF86MonBrightnessUp, exec, swayosd-client --brightness raise
bindel = , XF86MonBrightnessDown, exec, swayosd-client --brightness lower

View File

@@ -0,0 +1,5 @@
exec-once = swaync
exec-once = waybar
exec = swayosd-server

View File

@@ -0,0 +1,68 @@
###############################
### WINDOWS AND WORKSPACES ###
###############################
# https://wiki.hyprland.org/Configuring/Window-Rules/
# https://wiki.hyprland.org/Configuring/Workspace-Rules/
## ========== Communication ==========
# Mumble & Discord & TeamSpeak
windowrule = workspace 9, class:^(info\.mumble\.Mumble|discord|TeamSpeak|vesktop)$
# Signal & Telegram
windowrule = workspace 8, class:^(Element|signal|Signal|org\.telegram\.desktop)$
## ========== Multimedia ==========
windowrule = workspace 7, class:Spotify
## ========== Development ==========
windowrule = float, class:jetbrains-webstorm, title:Welcome to WebStorm
windowrule = size 1080 720, class:jetbrains-webstorm, title:Welcome to WebStorm
## ========== Games ==========
# World of Warcraft (Classic & Retail)
windowrule = workspace 1,force, class:^(wowclassic|wow)\.exe$, title:World of Warcraft
windowrule = fullscreen, class:^(wowclassic|wow)\.exe$, title:World of Warcraft
## ========== Launcher ==========
# Steam & Battle.net & Lutris
windowrule = workspace 2, class:^(steam|battle\.net\.exe|net\.lutris\.Lutris)$
windowrule = center 1, class:^(battle\.net\.exe|net\.lutris\.Lutris)$
windowrule = float, class:^(battle\.net\.exe|net\.lutris\.Lutris)$
windowrule = float, class:steam, title:Friends List
windowrule = workspace 1, class:steam, title:Launching...
# Lutris
windowrule = size 1600 1000, class:net.lutris.Lutris
windowrule = float, class:net.lutris.Lutris, title:^Configure.*$
windowrule = size 1080 720, class:net.lutris.Lutris, title:^Configure.*$
# Battle.net Systray
windowrule = workspace 2, class:explorer.exe
windowrule = move onscreen 1725 1869, class:explorer.exe
# ProtonUp-Qt
windowrule = float, class:net.davidotek.pupgui2
windowrule = size 869 642, class:net.davidotek.pupgui2
## ========== 3D Slicer & Printing ==========
windowrule = workspace 3, class:BambuStudio
#windowrule = float, class:BambuStudio
windowrule = workspace 3, class:OrcaSlicer
windowrule = float, class:OrcaSlicer
## ========== System ==========
windowrule = float, class:org.keepassxc.KeePassXC
windowrule = float, class:org.kde.dolphin
windowrule = float, class:com.saivert.pwvucontrol
windowrule = float, class:org.gnome.Nautilus
windowrule = float, class:org.gnome.NautilusPreviewer
windowrule = float, class:org.gnome.FileRoller
## ========== Screenshot ==========
windowrule = float, class:com.gabm.satty
windowrule = size >700 >400, class:com.gabm.satty
## ========== Misc ==========
windowrule = focusonactivate, class:zen