diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-02-08 14:29:36 +0100 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-02-08 14:29:36 +0100 |
commit | c10b7632ebcedff280c4be1357977ae26eff4eaa (patch) | |
tree | be358891123250b81faa644d81f348233b4937de /user-scripts | |
parent | 2db650d7cc0600a0ccdc5ba31ad3a97b3b74a6ea (diff) |
feat: add possibility of launching many tabs at once.
also, personalize this:
- enable extensions
- change to my css
- change relative paths.
fix various bugs:
- set the zoom level in notebook_append, not in notebook_init
- have a handly debug option for valgrind
Diffstat (limited to 'user-scripts')
-rwxr-xr-x | user-scripts/ubuntu-20.04/rose.desktop | 2 | ||||
-rw-r--r-- | user-scripts/valgrind-notes.md | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/user-scripts/ubuntu-20.04/rose.desktop b/user-scripts/ubuntu-20.04/rose.desktop index 42e7f43..213beb8 100755 --- a/user-scripts/ubuntu-20.04/rose.desktop +++ b/user-scripts/ubuntu-20.04/rose.desktop @@ -6,4 +6,4 @@ 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 +Icon=/home/loki/Documents/core/software/fresh/C/rose-browser/rose-browser/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png diff --git a/user-scripts/valgrind-notes.md b/user-scripts/valgrind-notes.md new file mode 100644 index 0000000..1fa2e1d --- /dev/null +++ b/user-scripts/valgrind-notes.md @@ -0,0 +1,9 @@ +In case you arrive at a segmentation fault when working on rose, you can use valgrind. + +To do this, you can compile rose with the `DEBUG` value in `build.sh` set to `-g` + +and then: + +``` +valgrind --track-origins=yes ./rose +``` |