Update install.sh
This commit is contained in:
parent
be7331e140
commit
0d1a69d3b7
8 changed files with 23 additions and 13 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
# links
|
# Ignore repositories
|
||||||
mc-share/skins/dracula.ini
|
jstmbash
|
||||||
mc-share/skins/dracula256.ini
|
dracula-mc
|
||||||
|
|
7
.gitmodules
vendored
7
.gitmodules
vendored
|
@ -1,7 +0,0 @@
|
||||||
[submodule "dracula-mc"]
|
|
||||||
path = dracula-mc
|
|
||||||
url = https://github.com/dracula/midnight-commander.git
|
|
||||||
[submodule "jstmbash"]
|
|
||||||
path = jstmbash
|
|
||||||
url = https://git.staropensource.de/JeremyStarTM/jstmbash
|
|
||||||
branch = develop
|
|
1
btop/.gitignore
vendored
1
btop/.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
|
# Ignore log
|
||||||
btop.log
|
btop.log
|
||||||
|
|
1
copyq/.gitignore
vendored
1
copyq/.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
# Ignore files that probably shouldn't be in a repository
|
||||||
copyq.pub
|
copyq.pub
|
||||||
copyq_geometry.ini
|
copyq_geometry.ini
|
||||||
copyq_tabs.ini
|
copyq_tabs.ini
|
||||||
|
|
17
install.sh
17
install.sh
|
@ -11,8 +11,21 @@ function link() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# update submodules
|
# update/clone repositories
|
||||||
git submodule update --init --recursive
|
if [ ! -d "dracula-mc" ]; then
|
||||||
|
git clone "https://github.com/dracula/midnight-commander.git" dracula-mc
|
||||||
|
else
|
||||||
|
cd dracula-mc
|
||||||
|
git pull
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
if [ ! -d "jstmbash" ]; then
|
||||||
|
git clone "https://git.staropensource.de/JeremyStarTM/jstmbash.git" jstmbash
|
||||||
|
else
|
||||||
|
cd jstmbash
|
||||||
|
git pull
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
|
||||||
# create directories
|
# create directories
|
||||||
mkdir -p "${HOME}/.config" "${HOME}/.local/share/mc/skins" "${HOME}/.local/bin"
|
mkdir -p "${HOME}/.config" "${HOME}/.local/share/mc/skins" "${HOME}/.local/bin"
|
||||||
|
|
2
jstmbash
2
jstmbash
|
@ -1 +1 @@
|
||||||
Subproject commit 93f8cc06d15511df99f526e156fd229303382c15
|
Subproject commit 54e2228857350b3b0cc67b9a0254426a47709e3e
|
1
mc-share/skins/dracula.ini
Symbolic link
1
mc-share/skins/dracula.ini
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/jeremystartm/Code/JeremyStarTM/punktdateien/dracula-mc/skins/dracula.ini
|
1
mc-share/skins/dracula256.ini
Symbolic link
1
mc-share/skins/dracula256.ini
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/jeremystartm/Code/JeremyStarTM/punktdateien/dracula-mc/skins/dracula256.ini
|
Loading…
Reference in a new issue