tweak: cleanup.

This commit is contained in:
NunoSempere 2022-12-14 17:02:52 +00:00
parent 246128e0c9
commit f27979ab6f
6 changed files with 9 additions and 7 deletions

View File

@ -16,8 +16,10 @@ This is my personal version. Contribute upstream to [github.com/mini-rose/rose](
### To do
- [ ] String substitution on uri in order to redirect to better frontends.
- [x] String substitution on uri in order to redirect to better frontends.
- [x] Present "standard" browser keybindings as an alternative.
- [x] Fix zoom in new tab
- [ ] Make tab bar slightly prettier.
- [x] Reader mode
- [ ] Add reader mode to config.def.
- [x] Make tab bar slightly prettier.
- [ ] Find out what each of the css elements refers to.

View File

@ -9,5 +9,5 @@ LIBS=`pkg-config --libs ${DEPS[@]}`
# Optional adblocking depends on https://github.com/jun7/wyebadblock
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
echo $CC $INCS $LIBS $SRC $REQS $WYEBAB -o rose
# echo $CC $INCS $LIBS $SRC $REQS $WYEBAB -o rose
$CC $INCS $LIBS $SRC $REQS $WYEBAB -o rose

View File

@ -29,7 +29,7 @@
#define BG_COLOR "#1E1E2E" /* or "#FEFEFE" if you are not using the dark theme. */
#define WIDTH 500
#define HEIGHT 400
#define DEBUG true
#define DEBUG false
typedef enum {
goback,

View File

@ -30,7 +30,7 @@
#define ZOOM 1.4 /* Starting zoom level.*/
#define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */
#define BG_COLOR "#FEFEFE" /*"#1E1E2E" */
#define DEBUG true
#define DEBUG false
typedef enum {
goback,

View File

@ -3,7 +3,7 @@
#include <stdio.h>
#include <stdbool.h>
#define LIBRE_N 19
#define DEBUG true
#define DEBUG false
/* Inspired by https://libredirect.github.io/, but in C. */

View File

@ -1,7 +1,7 @@
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
#define DEBUG true
#define DEBUG false
/*
See also: