This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Hotkeys Hax | |
# | |
# I'm still figuring out how to add HID drivers for this keyboard. | |
# I'm not sure if it's possible given that most of the keys that I care about | |
# (brightness controls, airplane mode, fan toggle) don't seem to register | |
# key releases; only key presses. The keyboard seems to be using a custom | |
# implementation for these keys, the codes don't follow the HID standard. | |
# I will document this behavior further in the README. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/clutter/clutter/clutter-main.c b/clutter/clutter/clutter-main.c | |
index 1753048f8..74a191c66 100644 | |
--- a/clutter/clutter/clutter-main.c | |
+++ b/clutter/clutter/clutter-main.c | |
@@ -96,7 +96,7 @@ static gboolean clutter_use_fuzzy_picking = FALSE; | |
static gboolean clutter_enable_accessibility = TRUE; | |
static gboolean clutter_sync_to_vblank = TRUE; | |
-static guint clutter_default_fps = 60; | |
+static guint clutter_default_fps = 144; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <vector> | |
#include <cstddef> | |
/** | |
* Generic Callback Manager | |
* | |
* @tparam ...cb_args Types of callback arguments (aside from userdata) | |
*/ |