nct6687d-dkms-git
- for motherboard sensors
zenstats-dkms
- slightly more temperature info for Zen 4+ CPUs than k10temp
--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 |
/home/chris/.cache/paru/clone/tenacity-git/src/tenacity/libraries/lib-audio-devices/AudioIOBase.cpp:709:6: error: use of overloaded operator '<<' is ambiguous (with operand types 'std::ostringstream' (aka 'basic_ostringstream<char>') and 'const char[33]') | |
s << "EXPERIMENTAL_MIDI_OUT is enabled" << std::endl; | |
~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/chris/.cache/paru/clone/tenacity-git/src/tenacity/libraries/lib-strings/TranslatableString.h:320:14: note: candidate function [with Sink = std::basic_ostringstream<char>] | |
inline Sink &operator <<( Sink &sink, const TranslatableString &str ) | |
^ | |
/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/13.1.1/../../../../include/c++/13.1.1/ostream:662:5: note: candidate function [with _Traits = std::char_traits<char>] | |
operator<<(basic_ostream<char, _Traits>& __out, const char* __s) | |
^ | |
/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/13.1.1/../../../../include/c++/13.1.1/ostream:645:5: note: candidate function [with _CharT = char, _Traits = std::char_traits<cha |
#include <math.h> | |
#include <float.h> | |
static inline float f_max(float v1,float v2) | |
{ | |
return v1>v2 ? v1 : v2; | |
} | |
static const float limiter_max = (float)0.9999; |