mirror of
https://github.com/Davilarek/Vencord.git
synced 2025-05-10 17:35:41 +02:00
7 lines
235 B
Bash
7 lines
235 B
Bash
#!/bin/bash
|
|
|
|
destination_folder="$HOME/.config/ArmCord/plugins/1loader/dist"
|
|
source_folder="./dist"
|
|
|
|
cp -f "$source_folder/browser.js" "$destination_folder/bundle.js"
|
|
cp -f "$source_folder/browser.css" "$destination_folder/bundle.css"
|