Setup Script - Inital Commit
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "73Linux"]
|
||||||
|
path = 73Linux
|
||||||
|
url = https://github.com/km4ack/73Linux.git
|
||||||
4
73-pull.sh
Normal file
4
73-pull.sh
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
sudo apt install git
|
||||||
|
cd ~/BlueHam/
|
||||||
|
git submodule update --init --recursive
|
||||||
3
73-run.sh
Normal file
3
73-run.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
bash 73Linux/73.sh
|
||||||
|
sudo apt --fix-broken install
|
||||||
1
73Linux
Submodule
1
73Linux
Submodule
Submodule 73Linux added at 73a9e74ffd
4
export.sh
Normal file
4
export.sh
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
for item in /usr/local/share/applications/*.desktop; do
|
||||||
|
distrobox-export -a $item
|
||||||
|
done
|
||||||
20
justfile
Normal file
20
justfile
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
fix-permissions:
|
||||||
|
sudo usermod -a -G dialout $USER
|
||||||
|
echo "Please reboot to finish process"
|
||||||
|
|
||||||
|
setup-distrobox:
|
||||||
|
distrobox-create --name HamBox --image ubuntu:24.04
|
||||||
|
|
||||||
|
done-goofed:
|
||||||
|
distrobox-rm HamBox
|
||||||
|
|
||||||
|
73Linux: 73Linux-Pull
|
||||||
|
distrobox-enter --name HamBox -- 73-run.sh
|
||||||
|
|
||||||
|
73Linux-Pull:
|
||||||
|
distrobox-enter --name HamBox -- bash 73-pull.sh
|
||||||
|
|
||||||
|
export-apps:
|
||||||
|
distrobox-enter --name HamBox -- bash export.sh
|
||||||
|
|
||||||
|
setup: setup-distrobox 73Linux export-apps fix-permissions
|
||||||
Reference in New Issue
Block a user