This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Add this change to the end of "workbench.desktop.main.css" | |
In MacOS it located at "/Applications/Visual Studio Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.css" | |
ATTENTION: Remove all these comments before adding the change to the file. This means you must remove all the code blocks like "/*...*/". | |
*/ | |
/* | |
Set the width to 1000px. Feel free to change it to any width. | |
Set the font-size to 13px. Feel free to remove "font-size:13px !important;" if don't want to change the font-size. | |
*/ | |
.quick-input-widget{position:absolute;width:1000px !important;left: calc(50% - 200px) !important;font-size:13px !important;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const path = require('path') | |
// Function to get all .ts files recursively | |
const getAllTsFiles = (dir, fileList = []) => { | |
const files = fs.readdirSync(dir) | |
files.forEach((file) => { | |
const filePath = path.join(dir, file) | |
if (fs.statSync(filePath).isDirectory()) { | |
fileList = getAllTsFiles(filePath, fileList) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Splunk expands | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include *://*.domain.se/* | |
// @include *://domain.com/* | |
// @include https://domain.se/* |