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
<script lang="ts" setup> | |
// use the directive with: v-tooltip | |
</script> | |
<template> | |
<button class="border" v-tooltip="{text: 'some text', color: 'red-200'}"> | |
<span>{{ text }}</span> | |
</button> | |
</template> |
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
#! /bin/env bash | |
# I use the default microphone, | |
# but at the end of the script, the default microphone will change (at least on my end) | |
# to the virt microphone for some reason that I may fix oneday | |
REAL_MIC=$(pactl get-default-source) | |
MIX_MIC="mix_mic" | |
VIRT_MIC_NAME="virt_mic" | |
VIRT_MIC_PATH="/tmp/$VIRT_MIC_NAME" |
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
#!/bin/env bash | |
# Please note that, this script is a bit useless | |
# As you could simply install godot with packet manager | |
# This script: | |
# 1) Find the lastest stable version for linux of godot from the github repository | |
# 2) Check if it has already been downloaded | |
# 3) If not, it download and extract it | |
# 4) Update the godot desktop, i have crafted mine so it's something one exept not to have. |