aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-11-20 00:50:27 +0000
committerNunoSempere <nuno.sempere@protonmail.com>2023-11-20 00:50:27 +0000
commitf280b6f0f8def3f0c39642570371e3cca379ef20 (patch)
treeb0dc15a04e72704fabcb4b8eb9e669c2480ff016
parentca5f7319123ea9cb53348be0706e513dae93e382 (diff)
more twitter style tweaks
-rw-r--r--makefile1
-rw-r--r--plugins/style/style.c2
-rw-r--r--plugins/style/style.h2
-rw-r--r--plugins/style/style.js27
-rwxr-xr-xrosebin43280 -> 43280 bytes
5 files changed, 30 insertions, 2 deletions
diff --git a/makefile b/makefile
index fe849f3..b30c3ce 100644
--- a/makefile
+++ b/makefile
@@ -84,6 +84,7 @@ install: rose
mkdir -p /usr/share/themes/rose
cp style.css /usr/share/themes/rose/
cp rose-mklink /usr/bin
+ sudo cp rose /usr/bin/rose-browser/twitter # custom twitter tweaks
uninstall:
rm -r /usr/share/themes/rose
diff --git a/plugins/style/style.c b/plugins/style/style.c
index 88c82a7..8fb0b08 100644
--- a/plugins/style/style.c
+++ b/plugins/style/style.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#define STYLE_N 6073 + 100
+#define STYLE_N 6512 + 100
void read_style_js(char* string)
{
diff --git a/plugins/style/style.h b/plugins/style/style.h
index 18175c4..df0408e 100644
--- a/plugins/style/style.h
+++ b/plugins/style/style.h
@@ -1,7 +1,7 @@
#ifndef STYLE
#define STYLE
-#define STYLE_N 6073 + 100
+#define STYLE_N 6512 + 100
void read_style_js(char* string);
diff --git a/plugins/style/style.js b/plugins/style/style.js
index f8827ef..6c9e652 100644
--- a/plugins/style/style.js
+++ b/plugins/style/style.js
@@ -78,13 +78,40 @@ if (document.domain == "twitter.com") {
[data-testid^="sidebarColumn"] {
display: none;
}
+
+ /* Hide DMs v2 */
[data-testid^="DMDrawerHeader"] {
display: none;
}
+
+ /* Tweak main column */
[data-testid^="primaryColumn"] {
min-width: 900px;
max-width: 900px;
+ }
+
+ /* Delete a few unused or annoying elements */
+ [aria-label^="Verified Orgs"] {
+ display: none;
+ }
+ [aria-label^="Lists"] {
+ display: none;
+ }
+ [aria-label^="Communities"] {
+ display: none;
+ }
+ [aria-label^="Primary"] {
+ margin-top: 50px;
+ }
+ [role^="progressbar"]{
+ display: none;
+ }
+ .r-1h8ys4a {
+ display: none;
+ }
+ .r-ymttw5 {
+ display: none;
}
/* hide video */
diff --git a/rose b/rose
index 9e1d36d..2bf85fe 100755
--- a/rose
+++ b/rose
Binary files differ