Skip to content

Instantly share code, notes, and snippets.

View byBretema's full-sized avatar
🪩
Making the pixels dance.

Daniel Brétema byBretema

🪩
Making the pixels dance.
View GitHub Profile
{
"Components@@tab-autohide": true,
"Components@@status-bar-autohide": true,
"Components@@Ribbon-autohide": true,
"Components@@nav-header-autohide": true,
"Components@@tab-title-bar-autohide": true,
"Components@@vault-profile-autohide": true,
"Appearance-dark@@card-layout-open-dark": true,
"Appearance-dark@@theme-dark-style-select": "theme-dark-background-default",
"Appearance-dark@@card-highlight-dark": true,
@byBretema
byBretema / linux_args_example.sh
Last active February 8, 2025 18:49
linux args example
# v1 ------------------------------------------
cleanup=0
build_type="Debug"
cmake_gen="Ninja"
pos_args=()
show_usage() {
echo "Usage: build.sh [-c (Cleanup)] [-r (Release)] [-g (Generator xxx)]"
}
while [[ $# -gt 0 ]]; do