From: Andre Ramnitz Date: Sun, 7 Jan 2024 11:33:26 +0000 (+0100) Subject: hypr: 10 bit colors by default, vrr only fullscreen X-Git-Tag: v0.2~246 X-Git-Url: https://git.ramnitz.eu/?a=commitdiff_plain;h=63ef577e9bbb46826451510205d8a3804d3b9db0;p=dotfiles.git hypr: 10 bit colors by default, vrr only fullscreen --- diff --git a/config/hypr/hyprland.conf b/config/hypr/hyprland.conf index b79425f6..2c1cd7b0 100644 --- a/config/hypr/hyprland.conf +++ b/config/hypr/hyprland.conf @@ -6,7 +6,7 @@ autogenerated = 0 # remove this line to remove the warning # See https://wiki.hyprland.org/Configuring/Monitors/ #monitor=DP-3,preferred,auto,1,vrr,2 -monitor=DP-3,preferred,auto,1,vrr,1,bitdepth,10 +monitor=DP-3,preferred,auto,1,vrr,2,bitdepth,10 # unscale XWayland xwayland { @@ -29,13 +29,16 @@ env = GDK_BACKEND,wayland,x11 #env = GDK_SCALE=1 # scaling XWayland clients env = GTK_USE_PORTAL,1 -env = XCURSOR_SIZE,28 -env = XCURSOR_THEME,BreezeX-Dark env = MOZ_ENABLE_WAYLAND,1 # use older kernel DRM API (allow-tearing) env = WLR_DRM_NO_ATOMIC,1 +# set cursor +env = XCURSOR_THEME,breeze_cursors +env = XCURSOR_SIZE,28 +exec-once = hyprctl setcursor breeze_cursors 28 + # Execute your favorite apps at launch exec-once = ~/.config/hypr/scripts/startup.sh exec-once = ~/.config/hypr/scripts/sleep.sh diff --git a/config/hypr/scripts/daemons.sh b/config/hypr/scripts/daemons.sh deleted file mode 100755 index 6da4067a..00000000 --- a/config/hypr/scripts/daemons.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env bash -logger '==============================' -logger 'userland daemons startup begin' - - -if [[ ! $(pidof mpd) ]]; then - mpd & - logger 'mpd started' -fi - -if [[ ! $(pidof swww-daemon) ]]; then - swww init & - logger 'swww-daemon started' - swww img ~/Bilder/Wallpapers/default.jpg & -fi - -if [[ ! $(pidof wl-gammarelay-rs) ]]; then - "$HOME"/.cargo/bin/wl-gammarelay-rs > /dev/null 2>&1 & - logger 'gammarelay started' - "$HOME"/.config/hypr/scripts/gammarelay-autotemp.py & - logger 'gammarelay-autotemp started' -fi - -openrgb -p simple.orp & -kcr create -c main -s default & # kakoune default server - -wl-paste --type text --watch cliphist store & -wl-paste --type image --watch cliphist store & - -sleep 2 && logger 'userland daemons startup begin' && logger '=============================='