Skip to content

Instantly share code, notes, and snippets.

View Its4Nik's full-sized avatar
:octocat:
I hate Frontend development 😭

ItsNik Its4Nik

:octocat:
I hate Frontend development 😭
View GitHub Profile
@Its4Nik
Its4Nik / system-info.sh
Created July 18, 2025 12:39
This is a simple bash script that will gather system boot info and general hardware info. (Only tested on Arch!)
#!/bin/bash
set -euo pipefail
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
BOLD='\033[1m'
NC='\033[0m'
@Its4Nik
Its4Nik / Audio-check.sh
Created March 23, 2025 17:51
A simple audio Diagnostic script for usage on Linux devices
#!/bin/bash
# Color codes
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Initialize variables
declare -A STATUS
@Its4Nik
Its4Nik / audio_converter.sh
Created March 3, 2025 18:56
Convert audio Files using `ffmpeg`, `fzf` and `charmbracelet/gum`
#!/usr/bin/env bash
trap 'exit 1' SIGINT
# Configuration
INDENT=" "
PRESETS_FILE="${HOME}/.config/audio_presets.json"
SYSTEM_PRESETS_DIR="/etc/audio_presets.d"
DEFAULT_PRESETS='{
"presets": [
{