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

View File

@@ -0,0 +1,44 @@
### 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.
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
ignore_systemd_inhibit = false # whether to ignore systemd-inhibit --what=idle inhibitors
on_lock_cmd = dbus-send --session --dest=org.freedesktop.secrets \
--type=method_call \
/org/freedesktop/secrets \
org.freedesktop.Secret.Service.Lock \
array:objpath:/org/freedesktop/secrets/collection/login
}
#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 hibernate # hibernate and suspend pc
}

View File

@@ -0,0 +1,2 @@
# ~/.config/hyprland/hyprland.conf
source = ~/.config/hypr/conf.d/*.conf

View File

@@ -0,0 +1,85 @@
# ~/.config/hypr/hyprlock.conf
general {
hide_cursor = true
ignore_empty_input = true
}
##################
### BACKGROUND ###
##################
background {
monitor = DP-1
path = $HOME/.config/hypr/images/ultrawide.jpg
}
background {
monitor = DP-2
path = $HOME/.config/hypr/images/standard.jpg
}
background {
monitor = HDMI-A-2
path = $HOME/.config/hypr/images/vertical.jpg
}
#############
### INPUT ###
#############
input-field {
size = 250, 60
outline_thickness= 2
dots_size = 0.2 # you control the look of the dots manually
dots_spacing = 0.35
dots_center = true
# Outer ring transparent, inner pill matches Waybar bg
outer_color = rgba(11, 27, 43, 0) # bg_main fully transparent
inner_color = rgba(11, 27, 43, 0.85) # bg_main at 85% opacity
font_color = rgba(202, 211, 232, 0.8) # content_main at 80%
fade_on_empty = false
rounding = 20 # nice pill shape
check_color = #4F84CC # Abyss Accent
placeholder_text =
hide_input = false
position = 0, -200
halign = center
valign = center
}
############
### DATE ###
############
label {
monitor =
text = cmd[update:1000] echo "$(date +"%A, %B %d")"
color = rgba(202, 211, 232, 0.75) # Sea Foam a bit lighter
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(202, 211, 232, 0.75)
font_size = 95
font_family = Inconsolata Nerd Font Mono Bold
position = 0, 200
halign = center
valign = center
}

View File

@@ -0,0 +1,15 @@
# ~/.config/hypr/hyprpaper.conf
#splash = true
splash_color = 4F84CCFF # Abyss Accent w/ full opacity
splash_offset = 2.0
ipc = true
# Preload your ultrawide as a quick fallback
preload = $HOME/.config/hypr/images/standard.jpg
# Per-monitor wallpaper assignments
wallpaper = DP-1, $HOME/.config/hypr/images/ultrawide.jpg
wallpaper = DP-2, $HOME/.config/hypr/images/standard.jpg
wallpaper = HDMI-A-2,$HOME/.config/hypr/images/vertical.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@@ -0,0 +1,38 @@
#!/usr/bin/env bash
# hyprfetch.sh — a little fetch for your Hyprland setup
# colours (true-color ANSI)
ACCENT='\033[38;2;79;132;204m' # #4F84CC
FOREGROUND='\033[38;2;202;211;232m' # #CAD3E8
RESET='\033[0m'
# helper to print a labeled field
print_field() {
printf "${ACCENT}%-10s${FOREGROUND}%s${RESET}\n" "$1:" "$2"
}
# ASCII Art Hyprland logo (simplified)
printf "${ACCENT}"
cat <<'EOF'
__ __
| \/ |__ _ _ _ ___
| |\/| / _` | '_/ -_)
|_| |_\__,_|_| \___|
EOF
printf "${RESET}\n"
# now the fields
print_field "OS" "$(grep '^PRETTY_NAME=' /etc/os-release | cut -d= -f2 | tr -d '"')"
print_field "Kernel" "$(uname -r)"
print_field "Uptime" "$(uptime -p)"
print_field "Shell" "$(basename "$SHELL")"
print_field "WM" "Hyprland $(hyprctl version | grep -oP '\d+\.\d+\.\d+')"
# hardware
print_field "CPU" "$(grep -m1 'model name' /proc/cpuinfo | cut -d: -f2 | sed 's/^ //')"
print_field "RAM" "$(free -h | awk '/^Mem:/ {print $3 \" / \" $2}')"
if command -v acpi &>/dev/null; then
print_field "Battery" "$(acpi -b | awk -F', ' '{print $2 \" — \" $3}')"
fi