diff options
author | fenze <contact@fenze.dev> | 2022-12-18 16:27:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-18 16:27:54 +0000 |
commit | 3325e17195a7d825d8456a2641029673a532fb7d (patch) | |
tree | 6f26b4e1c67c2557d3e848b6626088e1570877f2 /user-scripts | |
parent | b16665809c82cd3e7f7a5c839a492d70f60e3335 (diff) | |
parent | 7ad3e023f8278c7e6803184ca760a3c181c3daa9 (diff) |
Merge pull request #32 from NunoSempere/ubuntu-20.04-scripts
tweak: add user scripts to get this running on ubuntu 20.04
Diffstat (limited to 'user-scripts')
-rw-r--r-- | user-scripts/ubuntu-20.04/install-with-dependencies.sh | 23 | ||||
-rw-r--r-- | user-scripts/ubuntu-20.04/rose-images/rose-1.png | bin | 0 -> 640116 bytes | |||
-rw-r--r-- | user-scripts/ubuntu-20.04/rose-images/rose-2.png | bin | 0 -> 485022 bytes | |||
-rw-r--r-- | user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png | bin | 0 -> 756923 bytes | |||
-rw-r--r-- | user-scripts/ubuntu-20.04/rose-images/rose-homepage.png | bin | 0 -> 485022 bytes | |||
-rw-r--r-- | user-scripts/ubuntu-20.04/rose-images/rose-src.txt | 1 | ||||
-rwxr-xr-x | user-scripts/ubuntu-20.04/rose.desktop | 9 |
7 files changed, 33 insertions, 0 deletions
diff --git a/user-scripts/ubuntu-20.04/install-with-dependencies.sh b/user-scripts/ubuntu-20.04/install-with-dependencies.sh new file mode 100644 index 0000000..b4ce72d --- /dev/null +++ b/user-scripts/ubuntu-20.04/install-with-dependencies.sh @@ -0,0 +1,23 @@ +# Dependencies +sudo apt install libwebkit2gtk-4.0-dev +sudo apt install clang +# sudo apt instal sudo apt install gstreamer1.0-plugins-good gstreamer1.0-libav + +# Adblock +git clone https://github.com/jun7/wyebadblock +cd wyebadblock +make +sudo make install +cd .. + +# Rose config +user=$(whoami) +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 + +# Ubuntu desktop icon +chmod +x rose.desktop +sudo cp rose.desktop /usr/share/applications diff --git a/user-scripts/ubuntu-20.04/rose-images/rose-1.png b/user-scripts/ubuntu-20.04/rose-images/rose-1.png Binary files differnew file mode 100644 index 0000000..f2c546a --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose-images/rose-1.png diff --git a/user-scripts/ubuntu-20.04/rose-images/rose-2.png b/user-scripts/ubuntu-20.04/rose-images/rose-2.png Binary files differnew file mode 100644 index 0000000..9944beb --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose-images/rose-2.png diff --git a/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png b/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png Binary files differnew file mode 100644 index 0000000..163494f --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png diff --git a/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png b/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png Binary files differnew file mode 100644 index 0000000..9944beb --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png diff --git a/user-scripts/ubuntu-20.04/rose-images/rose-src.txt b/user-scripts/ubuntu-20.04/rose-images/rose-src.txt new file mode 100644 index 0000000..30650de --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose-images/rose-src.txt @@ -0,0 +1 @@ +<https://www.onlygfx.com/red-rose-png-image-transparent/> diff --git a/user-scripts/ubuntu-20.04/rose.desktop b/user-scripts/ubuntu-20.04/rose.desktop new file mode 100755 index 0000000..42e7f43 --- /dev/null +++ b/user-scripts/ubuntu-20.04/rose.desktop @@ -0,0 +1,9 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec= /usr/bin/rose +Name=Rose +Comment=Minimalistic browser +Icon=/home/loki/Documents/core/software/fresh/C/rose-browser/rose-bud-personal/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png |