commit 4d26317358a8df3c72a3adedcd8c24505cd7dd68 Author: Mathias Scheider Date: Sat Feb 28 21:30:56 2026 +0100 initialer commit diff --git a/hypr/.config/hypr/hypridle.conf b/hypr/.config/hypr/hypridle.conf new file mode 100755 index 0000000..76a7e4f --- /dev/null +++ b/hypr/.config/hypr/hypridle.conf @@ -0,0 +1,34 @@ +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 = 300 # 5.0min. + 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 = 300 # 5.0min. + 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 = 900 # 15min + on-timeout = loginctl lock-session # lock screen when timeout has passed +} + +listener { + timeout = 1800 # 30min + on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed + on-resume = hyprctl dispatch dpms on && brightnessctl -r # screen on when activity is detected after timeout has fired. +} + +listener { + timeout = 2700 # 45min + on-timeout = systemctl suspend # suspend pc +} diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf new file mode 100755 index 0000000..7fc4192 --- /dev/null +++ b/hypr/.config/hypr/hyprland.conf @@ -0,0 +1,452 @@ +# ####################################################################################### +# AUTOGENERATED HYPRLAND CONFIG. +# EDIT THIS CONFIG ACCORDING TO THE WIKI INSTRUCTIONS. +# ####################################################################################### + + + +# This is an example Hyprland config file. +# Refer to the wiki for more information. +# https://wiki.hypr.land/Configuring/ + +# Please note not all available settings / options are set here. +# For a full list, see the wiki + +# You can split this configuration into multiple files +# Create your files separately and then link them to this file like this: +# source = ~/.config/hypr/myColors.conf + + +################ +### MONITORS ### +################ + +enable_color_management = true + +# See https://wiki.hypr.land/Configuring/Monitors/ +# monitor=,preferred,auto,auto + +# monitor = DP-2, highres highrr, 0x0, 1.5, bitdepth, 10, cm, hdr, sdrbrightness, 1.5, sdrsaturation, 1.00 +monitorv2 { + output = DP-2 + mode = highres highrr + position = 0x0 + scale = 1.5 + bitdepth = 12 + cm = hdr + supports_wide_color = 1 + supports_hdr = 1 + sdr_min_luminance = 0.005 + sdr_max_luminance = 200 + min_luminance = 0.002 + max_luminance = 200 + max_avg_luminance = 150 + } + +monitor = DP-3, 1920x1080@60, auto-right, 1 +# monitorv2 { +# output = DP-3 +# mode = highres highrr +# position = auto-right +# scale = 1.0 +# bitdepth = 12 +# cm = hdr +# supports_wide_color = 1 +# supports_hdr = 1 +# sdr_min_luminance = 0.002 +# sdr_max_luminance = 220 +# min_luminance = 0.005 +# max_luminance = 250 +# max_avg_luminance = 100 +# } + +# unscale XWayland +xwayland { + force_zero_scaling = true +} + + +################### +### MY PROGRAMS ### +################### + +# See https://wiki.hypr.land/Configuring/Keywords/ + +# Set programs that you use +$terminal = kitty +$fileManager = dolphin +#$menu = hyprlauncher +$menu = wofi --show drun + + +################# +### AUTOSTART ### +################# + +# Autostart necessary processes (like notifications daemons, status bars, etc.) +# Or execute your favorite apps at launch like this: + +# exec-once = $terminal +# exec-once = nm-applet & +# exec-once = waybar & hyprpaper & firefox +exec-once = waybar & wpaperd & swaync & hypridle # wpaperd # hyprpaper + + +############################# +### ENVIRONMENT VARIABLES ### +############################# + +# See https://wiki.hypr.land/Configuring/Environment-variables/ + +# env = GDK_SCALE,1.5 +# env = GDK_DPI_SCALE,0.75 +env = XCURSOR_SIZE,24 +env = HYPRCURSOR_SIZE,24 +# env = QT_AUTO_SCREEN_SCALE_FACTOR,0.75 +# env = QT_SCALE_FACTOR,0.75 +env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +# env = QT_QPA_PLATFORMTHEME,kde +# env = XDG_MENU_PREFIX,plasma- + +################### +### PERMISSIONS ### +################### + +# See https://wiki.hypr.land/Configuring/Permissions/ +# Please note permission changes here require a Hyprland restart and are not applied on-the-fly +# for security reasons + +# ecosystem { +# enforce_permissions = 1 +# } + +# permission = /usr/(bin|local/bin)/grim, screencopy, allow +# permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow +# permission = /usr/(bin|local/bin)/hyprpm, plugin, allow + + +##################### +### LOOK AND FEEL ### +##################### + +# Refer to https://wiki.hypr.land/Configuring/Variables/ + +# https://wiki.hypr.land/Configuring/Variables/#general +general { + gaps_in = 3 + gaps_out = 4 + + border_size = 2 + + # https://wiki.hypr.land/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 = true + + # Please see https://wiki.hypr.land/Configuring/Tearing/ before you turn this on + allow_tearing = false + + layout = dwindle +} + +# https://wiki.hypr.land/Configuring/Variables/#decoration +decoration { + rounding = 5 + rounding_power = 2 + + # Change transparency of focused and unfocused windows + active_opacity = 1.00 + inactive_opacity = 1.00 + + shadow { + enabled = true + range = 10 + render_power = 3 + color = rgba(1a1a1aee) + } + + # https://wiki.hypr.land/Configuring/Variables/#blur + blur { + enabled = true + size = 10 + passes = 2 + + vibrancy = 0.1696 + } +} + +# https://wiki.hypr.land/Configuring/Variables/#animations +animations { + enabled = yes, please :) + + # Default curves, see https://wiki.hypr.land/Configuring/Animations/#curves + # NAME, X0, Y0, X1, Y1 + 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 + bezier = quick, 0.15, 0, 0.1, 1 + + # Default animations, see https://wiki.hypr.land/Configuring/Animations/ + # NAME, ONOFF, SPEED, CURVE, [STYLE] + 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 + animation = zoomFactor, 1, 7, quick +} + +# Ref https://wiki.hypr.land/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 +windowrule { + name = no-gaps-wtv1 + match:float = false + match:workspace = w[tv1] + + border_size = 0 + rounding = 0 +} + +windowrule { + name = no-gaps-f1 + match:float = false + match:workspace = f[1] + + border_size = 0 + rounding = 0 +} + +# See https://wiki.hypr.land/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.hypr.land/Configuring/Master-Layout/ for more +master { + new_status = master +} + +# https://wiki.hypr.land/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. :( +} + + +############# +### INPUT ### +############# + +# https://wiki.hypr.land/Configuring/Variables/#input +input { + kb_layout = de + kb_variant = + kb_model = + kb_options = grp:alt_shift_toggle + kb_rules = + + follow_mouse = 1 + + numlock_by_default = true + + sensitivity = 0 # -1.0 - 1.0, 0 means no modification. + + touchpad { + natural_scroll = false + } +} + +# See https://wiki.hypr.land/Configuring/Gestures +gesture = 3, horizontal, workspace + +# Example per-device config +# See https://wiki.hypr.land/Configuring/Keywords/#per-device-input-configs for more +device { + name = epic-mouse-v1 + sensitivity = -0.5 +} + + +################### +### KEYBINDINGS ### +################### + +# See https://wiki.hypr.land/Configuring/Keywords/ +$mainMod = SUPER # Sets "Windows" key as main modifier + +# Example binds, see https://wiki.hypr.land/Configuring/Binds/ for more +bind = $mainMod, RETURN, exec, $terminal +bind = $mainMod, Q, killactive, +bind = $mainMod, ESCAPE, exec, hyprshutdown +bind = $mainMod SHIFT, ESCAPE, exec, command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch exit +bind = $mainMod, E, exec, $fileManager +bind = $mainMod, V, togglefloating, +bind = $mainMod, SPACE, exec, $menu +bind = $mainMod SHIFT, SPACE, exec, nwg-drawer +bind = $mainMod, P, pseudo, # dwindle +bind = $mainMod, J, togglesplit, # dwindle +bind = $mainMod, I, exec, firefox & + +# 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, a, movefocus, l +bind = $mainMod, d, movefocus, r +bind = $mainMod, w, movefocus, u +bind = $mainMod, s, movefocus, 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, 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 -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%- + +# Requires playerctl +bindl = , XF86AudioNext, exec, playerctl next +bindl = , XF86AudioPause, exec, playerctl play-pause +bindl = , XF86AudioPlay, exec, playerctl play-pause +bindl = , XF86AudioPrev, exec, playerctl previous + +# Screenshots +$screenshot_folder = ~/Bilder/Screenshots/ +bindl = , PRINT, exec, hyprshot -m region --output-folder $screenshot_folder +bindl = LCTRL, PRINT, exec, hyprshot -m window --output-folder $screenshot_folder +bindl = SHIFT, PRINT, exec, hyprshot -m active --output-folder $screenshot_folder + +# Screenlock +bindl = $mainMod, L, exec, hyprlock + +############################## +### WINDOWS AND WORKSPACES ### +############################## + +# See https://wiki.hypr.land/Configuring/Window-Rules/ for more +# See https://wiki.hypr.land/Configuring/Workspace-Rules/ for workspace rules + +# Example windowrules that are useful + +windowrule { + # Ignore maximize requests from all apps. You'll probably like this. + name = suppress-maximize-events + match:class = .* + + suppress_event = maximize +} + +windowrule { + # Fix some dragging issues with XWayland + name = fix-xwayland-drags + match:class = ^$ + match:title = ^$ + match:xwayland = true + match:float = true + match:fullscreen = false + match:pin = false + + no_focus = true +} + +# Hyprland-run windowrule +windowrule { + name = move-hyprland-run + + match:class = hyprland-run + + move = 20 monitor_h-120 + float = yes +} + +windowrule { + name = opacity-kitty-dolphin + match:class = .*(kitty|dolphin).* + opacity = 0.85 0.55 +} + +layerrule = blur on, ignore_alpha 0.30, match:namespace waybar +layerrule = blur_popups on, match:namespace waybar + +decoration { + blur { + size = 8 + passes = 2 + } +} + +windowrule { + name = no-rounding-fullscreen + match:fullscreen = 1 + rounding = 0 + border_size = 0 +} + +# windowrule { +# name = no-rounding-steam-games +# match:class = ^steam_app_.*$ +# rounding = 0 +# border_size = 0 +# } + +# windowrule { +# name = no-rounding-gamescope +# match:class = ^gamescope$ +# rounding = 0 +# border_size = 0 +# } diff --git a/hypr/.config/hypr/hyprlock.conf b/hypr/.config/hypr/hyprlock.conf new file mode 100755 index 0000000..94b887e --- /dev/null +++ b/hypr/.config/hypr/hyprlock.conf @@ -0,0 +1,106 @@ +# sample hyprlock.conf +# for more configuration options, refer https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock +# +# rendered text in all widgets supports pango markup (e.g. or tags) +# ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#general-remarks +# +# shortcuts to clear password buffer: ESC, Ctrl+U, Ctrl+Backspace +# +# you can get started by copying this config to ~/.config/hypr/hyprlock.conf +# + +$font = Monospace + +general { + hide_cursor = false +} + +# uncomment to enable fingerprint authentication +# auth { +# fingerprint { +# enabled = true +# ready_message = Scan fingerprint to unlock +# present_message = Scanning... +# retry_delay = 250 # in milliseconds +# } +# } + +animations { + enabled = true + bezier = linear, 1, 1, 0, 0 + animation = fadeIn, 1, 5, linear + animation = fadeOut, 1, 5, linear + animation = inputFieldDots, 1, 2, linear +} + +background { + monitor = + path = screenshot + blur_passes = 3 +} + +input-field { + monitor = + size = 20%, 5% + outline_thickness = 3 + inner_color = rgba(0, 0, 0, 0.0) # no fill + + outer_color = rgba(33ccffee) rgba(00ff99ee) 45deg + check_color = rgba(00ff99ee) rgba(ff6633ee) 120deg + fail_color = rgba(ff6633ee) rgba(ff0066ee) 40deg + + font_color = rgb(143, 143, 143) + fade_on_empty = false + rounding = 15 + + font_family = $font + placeholder_text = Input password... + fail_text = $PAMFAIL + + # uncomment to use a letter instead of a dot to indicate the typed password + # dots_text_format = * + # dots_size = 0.4 + dots_spacing = 0.3 + + # uncomment to use an input indicator that does not show the password length (similar to swaylock's input indicator) + # hide_input = true + + position = 0, -20 + halign = center + valign = center +} + +# TIME +label { + monitor = + text = $TIME # ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#variable-substitution + font_size = 90 + font_family = $font + + position = -30, 0 + halign = right + valign = top +} + +# DATE +label { + monitor = + text = cmd[update:60000] date +"%A, %d %B %Y" # update every 60 seconds + font_size = 25 + font_family = $font + + position = -30, -150 + halign = right + valign = top +} + +label { + monitor = + text = $LAYOUT[en,ru] + font_size = 24 + onclick = hyprctl switchxkblayout all next + + position = 250, -20 + halign = center + valign = center +} diff --git a/hypr/.config/waybar/config.jsonc b/hypr/.config/waybar/config.jsonc new file mode 100755 index 0000000..a17e1c8 --- /dev/null +++ b/hypr/.config/waybar/config.jsonc @@ -0,0 +1,222 @@ +// -*- mode: jsonc -*- +{ + // "layer": "top", // Waybar at top layer + "position": "bottom", // Waybar position (top|bottom|left|right) + "height": 30, // Waybar height (to be removed for auto height) + // "width": 800, // Waybar width + "spacing": 4, // Gaps between modules (4px) + // Choose the order of the modules + "modules-left": [ + "hyprland/workspaces" + //"hyprland/mode", + //"hyprland/scratchpad", + //"custom/media" + ], + "modules-center": [ + "hyprland/window" + ], + "modules-right": [ + "mpd", + "idle_inhibitor", + "pulseaudio", + //"network", + //"power-profiles-daemon", + "cpu", + "memory", + "temperature", + "backlight", + "keyboard-state", + //"hyprland/language", + //"battery", + //"battery#bat2", + "clock", + "tray", + "custom/power" + ], + // Modules configuration + "hyprland/workspaces": { + "disable-scroll": true, + "all-outputs": true, + "warp-on-scroll": true, + "format": "{name}: {icon}", + "format-icons": { + // "1": "", + // "2": "", + // "3": "", + // "4": "", + // "5": "", + // "urgent": "", + "active": "", + "default": "" + } + }, + "keyboard-state": { + "numlock": true, + "capslock": true, + "format": "{name} {icon}", + "format-icons": { + "locked": "", + "unlocked": "" + } + }, + "hyprland/mode": { + "format": "{}" + }, + "hyprland/scratchpad": { + "format": "{icon} {count}", + "show-empty": false, + "format-icons": ["", ""], + "tooltip": true, + "tooltip-format": "{app}: {title}" + }, + "mpd": { + "format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ", + "format-disconnected": "Disconnected ", + "format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ", + "unknown-tag": "N/A", + "interval": 5, + "consume-icons": { + "on": " " + }, + "random-icons": { + "off": " ", + "on": " " + }, + "repeat-icons": { + "on": " " + }, + "single-icons": { + "on": "1 " + }, + "state-icons": { + "paused": "", + "playing": "" + }, + "tooltip-format": "MPD (connected)", + "tooltip-format-disconnected": "MPD (disconnected)" + }, + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": "", + "deactivated": "" + } + }, + "tray": { + // "icon-size": 21, + "spacing": 10, + // "icons": { + // "blueman": "bluetooth", + // "TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png" + // } + }, + "clock": { + "format": "{:%Y-%m-%d %H:%M}", + "tooltip-format": "{:%Y %B}\n{calendar}", + "on-click": "~/.config/waybar/scripts/copy-date.sh" + //"format-alt": "{:%Y-%m-%d}" + }, + "cpu": { + "interval": 1, + "format": "cpu:{usage}% avg frq:{avg_frequency:2.2f}", + "tooltip": false + }, + "memory": { + "interval": 1, + "format": "mem:{}%" + }, + "temperature": { + // "thermal-zone": 2, + // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", + "critical-threshold": 80, + // "format-critical": "{temperatureC}°C {icon}", + "format": "{temperatureC}°C {icon}", + "format-icons": ["", "", ""] + }, + "backlight": { + // "device": "acpi_video1", + "format": "{percent}% {icon}", + "format-icons": ["", "", "", "", "", "", "", "", ""] + }, + "battery": { + "states": { + // "good": 95, + "warning": 30, + "critical": 15 + }, + "format": "{capacity}% {icon}", + "format-full": "{capacity}% {icon}", + "format-charging": "{capacity}% ", + "format-plugged": "{capacity}% ", + "format-alt": "{time} {icon}", + // "format-good": "", // An empty format will hide the module + // "format-full": "", + "format-icons": ["", "", "", "", ""] + }, + "battery#bat2": { + "bat": "BAT2" + }, + "power-profiles-daemon": { + "format": "{icon}", + "tooltip-format": "Power profile: {profile}\nDriver: {driver}", + "tooltip": true, + "format-icons": { + "default": "", + "performance": "", + "balanced": "", + "power-saver": "" + } + }, + "network": { + // "interface": "wlp2*", // (Optional) To force the use of this interface + "format-wifi": "{essid} ({signalStrength}%) ", + "format-ethernet": "{ipaddr}/{cidr} ", + "tooltip-format": "{ifname} via {gwaddr} ", + "format-linked": "{ifname} (No IP) ", + "format-disconnected": "Disconnected ⚠", + "format-alt": "{ifname}: {ipaddr}/{cidr}" + }, + "pulseaudio": { + // "scroll-step": 1, // %, can be a float + "format": "{volume}% {icon} {format_source}", + "format-bluetooth": "{volume}% {icon} {format_source}", + "format-bluetooth-muted": " {icon} {format_source}", + "format-muted": " {format_source}", + "format-source": "{volume}% ", + "format-source-muted": "", + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": ["", "", ""] + }, + "on-click": "pavucontrol" + }, + "custom/media": { + "format": "{icon} {text}", + "return-type": "json", + "max-length": 40, + "format-icons": { + "spotify": "", + "default": "🎜" + }, + "escape": true, + "exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder + // "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name + }, + "custom/power": { + "format" : "⏻ ", + "tooltip": false, + "menu": "on-click", + "menu-file": "$HOME/.config/waybar/power_menu.xml", // Menu file in resources folder + "menu-actions": { + "shutdown": "shutdown", + "reboot": "reboot", + "suspend": "systemctl suspend", + "hibernate": "systemctl hibernate" + } + } +} diff --git a/hypr/.config/waybar/scripts/copy-date.sh b/hypr/.config/waybar/scripts/copy-date.sh new file mode 100755 index 0000000..95c75e0 --- /dev/null +++ b/hypr/.config/waybar/scripts/copy-date.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +DATE=$(date +"%Y-%m-%d_%H%M") +echo -n "$DATE" | wl-copy +notify-send "Date copied" "$DATE" diff --git a/hypr/.config/waybar/style.css b/hypr/.config/waybar/style.css new file mode 100755 index 0000000..0fbfdf5 --- /dev/null +++ b/hypr/.config/waybar/style.css @@ -0,0 +1,236 @@ +/* ------------------------------------------------- + Calm Glass (Hyprland / Waybar) — GTK CSS safe +-------------------------------------------------- */ + +* { + font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; + font-size: 13px; +} + +/* ---------- GTK Color Definitions ---------- */ +@define-color fg rgba(235, 238, 242, 0.92); +@define-color fg-dim rgba(235, 238, 242, 0.72); +@define-color fg-muted rgba(235, 238, 242, 0.55); + +@define-color glass rgba(18, 22, 30, 0.55); +@define-color glass_2 rgba(18, 22, 30, 0.32); +@define-color glass_3 rgba(18, 22, 30, 0.22); + +@define-color stroke rgba(255, 255, 255, 0.12); +@define-color stroke_2 rgba(255, 255, 255, 0.07); + +/* ---------- Waybar Container ---------- */ +window#waybar { + background-color: @glass; + color: @fg; + border-bottom: 1px solid @stroke; + box-shadow: 0 10px 30px rgba(0,0,0,0.30); + + transition-property: background-color, opacity; + transition-duration: .5s; +} + +window#waybar.hidden { + opacity: 0.35; +} + +/* ---------- Buttons / Workspaces ---------- */ +button { + box-shadow: inset 0 -2px transparent; + border: none; + border-radius: 0; +} + +button:hover { + background: inherit; + box-shadow: inset 0 -2px rgba(255,255,255,0.18); +} + +#workspaces button { + padding: 0 8px; + margin: 4px 3px; + background-color: rgba(255,255,255,0.04); + color: @fg-dim; + border: 1px solid rgba(255,255,255,0.06); + border-radius: 10px; +} + +#workspaces button:hover { + background: rgba(255,255,255,0.07); + color: @fg; +} + +#workspaces button.focused, +#workspaces button.active { + background-color: rgba(255,255,255,0.10); + color: @fg; + border: 1px solid rgba(255,255,255,0.12); + box-shadow: inset 0 -2px rgba(255,255,255,0.18); +} + +#workspaces button.urgent { + background-color: rgba(190,110,120,0.35); + border-color: rgba(190,110,120,0.50); + color: @fg; +} + +#window, +#workspaces { + margin: 0 4px; +} + +.modules-left > widget:first-child > #workspaces { + margin-left: 0; +} + +.modules-right > widget:last-child > #workspaces { + margin-right: 0; +} + +/* ---------- Common “Chip” module style ---------- */ +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#network, +#pulseaudio, +#wireplumber, +#custom-media, +#tray, +#mode, +#idle_inhibitor, +#scratchpad, +#power-profiles-daemon, +#mpd, +#language, +#keyboard-state, +#privacy, +#privacy-item { + padding: 0 10px; + color: @fg; + background-color: @glass_2; + border: 1px solid @stroke_2; + border-radius: 10px; + margin: 4px 4px; +} + +#pulseaudio:hover, +#wireplumber:hover, +#network:hover, +#clock:hover { + background-color: @glass_3; +} + +#clock { + border-color: rgba(140, 170, 190, 0.25); +} + +/* Battery */ +#battery.charging, +#battery.plugged { + background-color: rgba(120,170,140,0.22); + border-color: rgba(120,170,140,0.34); +} + +@keyframes blink { + to { + background-color: rgba(190,110,120,0.18); + border-color: rgba(190,110,120,0.50); + } +} + +#battery.critical:not(.charging) { + background-color: rgba(190,110,120,0.35); + border-color: rgba(190,110,120,0.55); + color: @fg; + animation-name: blink; + animation-duration: 0.6s; + animation-timing-function: steps(10); + animation-iteration-count: infinite; + animation-direction: alternate; +} + +/* Network */ +#network.disconnected { + background-color: rgba(190,110,120,0.30); + border-color: rgba(190,110,120,0.45); +} + +/* Audio */ +#pulseaudio:hover { + background-color: rgba(190,160,110,0.20); + border-color: rgba(190,160,110,0.28); +} + +#pulseaudio.muted { + background-color: rgba(140,170,190,0.18); + border-color: rgba(140,170,190,0.26); + color: @fg-dim; +} + +#wireplumber.muted { + background-color: rgba(190,110,120,0.28); + border-color: rgba(190,110,120,0.40); +} + +/* Temperature */ +#temperature.critical { + background-color: rgba(190,110,120,0.30); + border-color: rgba(190,110,120,0.45); +} + +/* Tray */ +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; + background-color: rgba(190,110,120,0.30); + border-radius: 10px; +} + +/* Idle inhibitor */ +#idle_inhibitor.activated { + background-color: rgba(255,255,255,0.10); + border-color: rgba(255,255,255,0.14); + color: @fg; +} + +/* Scratchpad */ +#scratchpad { + background: rgba(255,255,255,0.05); +} + +#scratchpad.empty { + background-color: transparent; + border-color: transparent; +} + +/* Privacy */ +#privacy { + padding: 0; + background-color: transparent; + border-color: transparent; +} + +#privacy-item { + padding: 0 6px; + color: @fg; +} + +#privacy-item.screenshare { + background-color: rgba(190,160,110,0.30); + border-color: rgba(190,160,110,0.40); +} +#privacy-item.audio-in { + background-color: rgba(120,170,140,0.25); + border-color: rgba(120,170,140,0.36); +} +#privacy-item.audio-out { + background-color: rgba(140,170,190,0.25); + border-color: rgba(140,170,190,0.36); +} diff --git a/hypr/.config/waybar/style_backup2026-02-21.css b/hypr/.config/waybar/style_backup2026-02-21.css new file mode 100755 index 0000000..a7b7df2 --- /dev/null +++ b/hypr/.config/waybar/style_backup2026-02-21.css @@ -0,0 +1,327 @@ +* { + /* `otf-font-awesome` is required to be installed for icons */ + font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; + font-size: 13px; +} + +window#waybar { + background-color: rgba(43, 48, 59, 0.5); + border-bottom: 3px solid rgba(100, 114, 125, 0.5); + color: #ffffff; + transition-property: background-color; + transition-duration: .5s; +} + +window#waybar.hidden { + opacity: 0.2; +} + +/* +window#waybar.empty { + background-color: transparent; +} +window#waybar.solo { + background-color: #FFFFFF; +} +*/ + +window#waybar.termite { + background-color: #3F3F3F; +} + +window#waybar.chromium { + background-color: #000000; + border: none; +} + +button { + /* Use box-shadow instead of border so the text isn't offset */ + box-shadow: inset 0 -3px transparent; + /* Avoid rounded borders under each button name */ + border: none; + border-radius: 0; +} + +/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */ +button:hover { + background: inherit; + box-shadow: inset 0 -3px #ffffff; +} + +/* you can set a style on hover for any module like this */ +#pulseaudio:hover { + background-color: #a37800; +} + +#workspaces button { + padding: 0 5px; + background-color: transparent; + color: #ffffff; +} + +#workspaces button:hover { + background: rgba(0, 0, 0, 0.2); +} + +#workspaces button.focused, #workspaces button.active { + background-color: #64727D; + box-shadow: inset 0 -3px #ffffff; +} + +#workspaces button.urgent { + background-color: #eb4d4b; +} + +#mode { + background-color: #64727D; + box-shadow: inset 0 -3px #ffffff; +} + +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#network, +#pulseaudio, +#wireplumber, +#custom-media, +#tray, +#mode, +#idle_inhibitor, +#scratchpad, +#power-profiles-daemon, +#mpd { + padding: 0 10px; + color: #ffffff; +} + +#window, +#workspaces { + margin: 0 4px; +} + +/* If workspaces is the leftmost module, omit left margin */ +.modules-left > widget:first-child > #workspaces { + margin-left: 0; +} + +/* If workspaces is the rightmost module, omit right margin */ +.modules-right > widget:last-child > #workspaces { + margin-right: 0; +} + +#clock { + background-color: #64727D; +} + +#battery { + background-color: #ffffff; + color: #000000; +} + +#battery.charging, #battery.plugged { + color: #ffffff; + background-color: #26A65B; +} + +@keyframes blink { + to { + background-color: #ffffff; + color: #000000; + } +} + +/* Using steps() instead of linear as a timing function to limit cpu usage */ +#battery.critical:not(.charging) { + background-color: #f53c3c; + color: #ffffff; + animation-name: blink; + animation-duration: 0.5s; + animation-timing-function: steps(12); + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#power-profiles-daemon { + padding-right: 15px; +} + +#power-profiles-daemon.performance { + background-color: #f53c3c; + color: #C3D4D9; +} + +#power-profiles-daemon.balanced { + background-color: #2980b9; + color: #C3D4D9; +} + +#power-profiles-daemon.power-saver { + background-color: #2ecc71; + color: #C3D4D9; +} + +label:focus { + background-color: #000000; +} + +#cpu { + background-color: #2ecc71; + color: #C3D4D9; +} + +#memory { + background-color: #C3D4D9; +} + +#disk { + background-color: #C3D4D9; +} + +#backlight { + background-color: #90b1b1; +} + +#network { + background-color: #C3D4D9; +} + +#network.disconnected { + background-color: #f53c3c; +} + +#pulseaudio { + background-color: #f1c40f; + color: #C3D4D9; +} + +#pulseaudio.muted { + background-color: #90b1b1; + color: #C3D4D9; +} + +#wireplumber { + background-color: #fff0f5; + color: #000000; +} + +#wireplumber.muted { + background-color: #f53c3c; +} + +#custom-media { + background-color: #66cc99; + color: #C3D4D9; + min-width: 100px; +} + +#custom-media.custom-spotify { + background-color: #66cc99; +} + +#custom-media.custom-vlc { + background-color: #ffa000; +} + +#temperature { + background-color: #f0932b; +} + +#temperature.critical { + background-color: #eb4d4b; +} + +#tray { + background-color: #2980b9; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; + background-color: #eb4d4b; +} + +#idle_inhibitor { + background-color: #2d3436; +} + +#idle_inhibitor.activated { + background-color: #ecf0f1; + color: #2d3436; +} + +#mpd { + background-color: #66cc99; + color: #2a5c45; +} + +#mpd.disconnected { + background-color: #f53c3c; +} + +#mpd.stopped { + background-color: #90b1b1; +} + +#mpd.paused { + background-color: #51a37a; +} + +#language { + background: #00b093; + color: #740864; + padding: 0 5px; + margin: 0 5px; + min-width: 16px; +} + +#keyboard-state { + background: #97e1ad; + color: #000000; + padding: 0 0px; + margin: 0 5px; + min-width: 16px; +} + +#keyboard-state > label { + padding: 0 5px; +} + +#keyboard-state > label.locked { + background: rgba(0, 0, 0, 0.2); +} + +#scratchpad { + background: rgba(0, 0, 0, 0.2); +} + +#scratchpad.empty { + background-color: transparent; +} + +#privacy { + padding: 0; +} + +#privacy-item { + padding: 0 5px; + color: white; +} + +#privacy-item.screenshare { + background-color: #cf5700; +} + +#privacy-item.audio-in { + background-color: #1ca000; +} + +#privacy-item.audio-out { + background-color: #0069d4; +} diff --git a/hypr/.config/wpaperd/config.toml b/hypr/.config/wpaperd/config.toml new file mode 100755 index 0000000..0466634 --- /dev/null +++ b/hypr/.config/wpaperd/config.toml @@ -0,0 +1,6 @@ +[default] +path = "/home/mathias/nextcloud/Photos/Wallpapers/" +mode = "center" +#recursive = true +#sorting = "random" +#duration = "15m"