Skip to content

Instantly share code, notes, and snippets.

View Klubuntu's full-sized avatar
💡
Thinking about Your future OS

Kamil Klubuntu Klubuntu

💡
Thinking about Your future OS
View GitHub Profile
@Klubuntu
Klubuntu / build.sh
Last active September 22, 2023 17:27 — forked from DemwE/build.sh
Build release for Tauri Apps support Windows, Linux, MacOS
#!/bin/bash
if [ ! -f build.conf ]; then
echo "File build.conf does not exist, creating it."
echo "UpdateRustTargets=true" >>build.conf
echo "BuildWindows=true" >>build.conf
echo "BuildLinux=true" >>build.conf
echo "BuildMac=true" >>build.conf
exit 0
fi
@Klubuntu
Klubuntu / index.html
Created May 13, 2021 20:42
No flash on page load Jquery
<html style="display:none;">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div id="bg">No flash page load :)</div>
</body>
<script>