diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-03-28 11:16:51 -0600 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-03-28 11:16:51 -0600 |
commit | cc959fda4fac18f1c429158d1ffea24692276310 (patch) | |
tree | 375468f139ee1032626969d9965cd18eaaec50e8 /user-scripts | |
parent | 18f4e3e3cb544fc26312ce8b3e5f9fbc57ba5884 (diff) |
chore: more simplifications
Diffstat (limited to 'user-scripts')
-rw-r--r-- | user-scripts/ubuntu-20.04/install-with-dependencies.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/user-scripts/ubuntu-20.04/install-with-dependencies.sh b/user-scripts/ubuntu-20.04/install-with-dependencies.sh index b4ce72d..940abe1 100644 --- a/user-scripts/ubuntu-20.04/install-with-dependencies.sh +++ b/user-scripts/ubuntu-20.04/install-with-dependencies.sh @@ -16,8 +16,12 @@ mkdir -p /home/$user/.cache/rose cp ../../config.def.h ../../config.h # you should also probably customize this yourself. sed "s/fenze/$user/g" ../../config.h -sudo bash ../../install.sh +# sudo bash ../../install.sh +cd ../.. +make build # or just make +sudo make install +cd - # Ubuntu desktop icon chmod +x rose.desktop sudo cp rose.desktop /usr/share/applications |