Your Rift. On your own terms.
With OcuTweaks, you can install a variety of community-made plugins & themes into the Oculus PC app to customize, tweak, and simplify how you experience VR. Stop waiting, start playing.
Requires Windows 10, and a Rift/Rift S or Quest/Quest 2 connected via Link.

A community of customizations
Keep Air Link turned on, add a splash of color, or remove unnecessary features. OcuTweaks has a community of people like you who aim to make their Oculus experience better.
-
Plugins
- Create plugins to change how the Oculus app feels and behaves. Add custom buttons and interfaces, quickly and easily.
-
Themes
- Put a fresh coat of paint on the boring and dull grey background. Themes are made in CSS and are loaded via plugins.
Plugins as easy as making userscripts
Know JavaScript? Easily create plugins just like userscripts on the web. OcuTweaks comes with several libraries to interact with the Oculus app, and you can also bundle modules from npm in your plugin.
oc-tipTool\plugin.js
1const sidebar = require("../../libraries/sidebar");
2const { shell } = require('electron');
3
4module.exports = {
5 id: "oc-tipTool",
6 name: "Adds tip to Burrito button",
7 init() {
8 var tipButton = sidebar.add('Send a Tip', 'oc-sendTip');
9 tipButton.onclick = function() {
10 shell.openExternal("https://streamelements.com/tip/burritosoft");
11 }
12 console.log('[tipTool] Tip button injected!')
13 },
14 uninit() {
15 document.getElementById('oc-sendTip').remove();
16 console.log('[tipTool] Tip button uninjected!')
17 }
18}
