nct6687d-dkms-git
- for motherboard sensors
zenstats-dkms
- slightly more temperature info for Zen 4+ CPUs than k10temp
diff --git a/types/wlr_color_management_v1.c b/types/wlr_color_management_v1.c | |
index 3af0b51e..c4addf1b 100644 | |
--- a/types/wlr_color_management_v1.c | |
+++ b/types/wlr_color_management_v1.c | |
@@ -868,9 +868,12 @@ static void manager_handle_create_parametric_creator(struct wl_client *client, | |
static void manager_handle_create_windows_scrgb(struct wl_client *client, | |
struct wl_resource *manager_resource, uint32_t id) { | |
- wl_resource_post_error(manager_resource, | |
- WP_COLOR_MANAGER_V1_ERROR_UNSUPPORTED_FEATURE, |
From de29251a8c899dd0522c63c5b55b677e52f9c449 Mon Sep 17 00:00:00 2001 | |
From: Christopher Snowhill <[email protected]> | |
Date: Thu, 19 Jun 2025 04:33:24 -0700 | |
Subject: [PATCH] drm/amdgpu: Enable async flip for cursor planes | |
amdgpu apparently fudges atomic flips if some software is also tweaking | |
the cursor planes during flips, which results in lovely fallback to non- | |
atomic flips. | |
Fixes: 41129e236f14 ("drm/amdgpu: Enable async flip on overlay planes") |
--enable-features=VaapiVideoDecoder,VaapiVideoEncoder,UseMultiPlaneFormatForHardwareVideo,VaapiIgnoreDriverChecks,Vulkan,DefaultANGLEVulkan,VulkanFromANGLE | |
--use-angle=vulkan | |
--ozone-platform-hint=auto |
diff --git a/src/core/core-impl.hpp b/src/core/core-impl.hpp | |
index 8c31dfe6..1b4a6212 100644 | |
--- a/src/core/core-impl.hpp | |
+++ b/src/core/core-impl.hpp | |
@@ -38,6 +38,8 @@ class compositor_core_impl_t : public compositor_core_t | |
void disconnect_signals(); | |
void fini(); | |
+ void reconfigure_outputs(); | |
+ |
[Unit] | |
Description=Wayfire Panel service | |
Documentation=https://github.com/WayfireWM/wf-shell/wiki | |
# order startup after WM | |
After=graphical-session.target | |
[Service] | |
ExecStart=/usr/bin/wf-panel | |
ExecReload=kill -SIGUSR2 $MAINPID | |
Restart=on-failure |
diff --git a/lib/libzsync/zsync.c b/lib/libzsync/zsync.c | |
index b425db9..02c47ad 100644 | |
--- a/lib/libzsync/zsync.c | |
+++ b/lib/libzsync/zsync.c | |
@@ -40,6 +40,8 @@ | |
#include <unistd.h> | |
#include <string.h> | |
#include <ctype.h> | |
+ | |
+#define __USE_XOPEN 1 |
From patchwork Mon Apr 1 18:58:06 2024 | |
Content-Type: text/plain; charset="utf-8" | |
MIME-Version: 1.0 | |
Content-Transfer-Encoding: 7bit | |
X-Patchwork-Submitter: Luiz Augusto von Dentz <[email protected]> | |
X-Patchwork-Id: 13612954 | |
Received: from mail-yw1-f179.google.com (mail-yw1-f179.google.com | |
[209.85.128.179]) | |
(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) | |
(No client certificate requested) |
#!/bin/sh | |
# systemd example: https://stackoverflow.com/a/50321912 | |
# cron example: | |
# 0 * * * * ~/.config/sway/scripts/bing_wallpaper.sh | |
# exit on error | |
set -e | |
if [ -z "$WAYLAND_DISPLAY" ]; then |
diff --git a/src/vulkan/runtime/vk_log.c b/src/vulkan/runtime/vk_log.c | |
index dfd4a2e5172..0335c1446e2 100644 | |
--- a/src/vulkan/runtime/vk_log.c | |
+++ b/src/vulkan/runtime/vk_log.c | |
@@ -111,7 +111,7 @@ __vk_log_impl(VkDebugUtilsMessageSeverityFlagBitsEXT severity, | |
} | |
} | |
-#ifndef DEBUG | |
+#if 0 |