feat: Added keymap

This commit is contained in:
uttarayan21
2025-10-13 03:30:46 +05:30
parent 8718c4af7d
commit 8052adf8a6
2 changed files with 41 additions and 25 deletions

16
script.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
SOURCE_DIR="."
DEST_DIR="/run/media/servius/NICENANO"
copy_file() {
local file=$1
cp "$SOURCE_DIR/$file" "$DEST_DIR"
echo "$file has been copied to $DEST_DIR"
}
read -p "Press Enter to copy corne-rs-central.uf2..." _
copy_file "corne-rs-central.uf2"
read -p "Press Enter to copy corne-rs-peripheral.uf2..." _
copy_file "corne-rs-peripheral.uf2"