summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xX11/xinit1
-rw-r--r--chrome-theme/manifest.json26
2 files changed, 27 insertions, 0 deletions
diff --git a/X11/xinit b/X11/xinit
index 0c3d77f..6c87ddc 100755
--- a/X11/xinit
+++ b/X11/xinit
@@ -11,6 +11,7 @@ xrandr --output HDMI-1-0 --mode 1920x1080 -r 240 &
xrandr -s 1920x1080 -r 144 & # target screen resolution
xset r rate 300 30 & # key repeat delay and speed
+xset b off # disable bell
xrdb merge ~/.Xresources # asset resources
picom --backend glx & # compositor
diff --git a/chrome-theme/manifest.json b/chrome-theme/manifest.json
new file mode 100644
index 0000000..dfff751
--- /dev/null
+++ b/chrome-theme/manifest.json
@@ -0,0 +1,26 @@
+{
+ "manifest_version": 3,
+ "name": "Alphara's Dark Theme",
+ "version": "1.0.0",
+ "description": "A custom dark theme using blue and purple colors.",
+ "theme": {
+ "colors": {
+ "background_tab": [ 10, 0, 31 ],
+ "background_tab_inactive": [ 10, 0, 31 ],
+ "bookmark_text": [ 172, 230, 240 ],
+ "frame": [ 0, 0, 0 ],
+ "frame_inactive": [ 0, 0, 0 ],
+ "ntp_background": [ 10, 0, 31 ],
+ "ntp_link": [ 172, 230, 240 ],
+ "ntp_text": [ 172, 230, 240 ],
+ "omnibox_background": [ 10, 0, 31 ],
+ "omnibox_text": [ 172, 230, 240 ],
+ "tab_background_text": [ 129, 142, 248 ],
+ "tab_background_text_inactive": [ 172, 230, 240 ],
+ "tab_text": [ 172, 230, 240 ],
+ "toolbar": [ 10, 0, 31 ],
+ "toolbar_button_icon": [ 172, 230, 240 ],
+ "toolbar_text": [ 172, 230, 240 ]
+ }
+ }
+}