This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <sys/ioctl.h> | |
#include <linux/input.h> | |
#include <string.h> | |
// Function to check if the input device is a keyboard | |
int is_keyboard(const char *device_path) { |
This file contains hidden or 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
-- Lua script for verifying Ikemen's game assets | |
-- [email protected] | |
-- 20.10 Selasa, 01 Oktober 2024 | |
path_sep = '/' | |
local f_validation = io.open("validation"..os.date("%Y%m%d_%H%M%S")..".txt", "w") | |
if f_validation == nil then | |
print("Error: Can not create validation.txt") | |
return | |
end |
This file contains hidden or 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
wget https://go.dev/dl/go1.24.1.linux-arm64.tar.gz | |
sudo tar -C /usr/local -xzf go1.24.1.linux-arm64.tar.gz | |
sudo apt install apt-file fd-find scite | |
sudo apt-file update | |
# for building Ikemen | |
sudo apt install libwayland-dev libxkbcommon-dev libasound2-dev libssl-dev | |
sudo apt install fd-find |
This file contains hidden or 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
font.base=$(font.monospace) | |
font.small=$(font.monospace) | |
font.comment=$(font.monospace) | |
font.text=$(font.monospace) | |
font.text.comment=$(font.monospace) | |
font.embedded.base=$(font.monospace) | |
font.embedded.comment=$(font.monospace) | |
font.vbs=$(font.monospace) | |
wrap=0 |
OlderNewer