- Window 1: 46 3/4 inches
- Window 2: 46 3/4 inches
- Window 3: 46 3/4 inches
- Window 4: 40 3/4 inches (tall behind desk)
- Window 5: 41 inches (short behind desk)
- Door blind: 26 1/4 inches
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
| # Old color configuration | |
| # set-option -g default-terminal 'tmux-256color' | |
| # set-option -sa terminal-overrides ',xterm*:Tc' | |
| # Modern color configuration for tmux 3.2+ | |
| set-option -g default-terminal 'tmux-256color' | |
| set-option -g allow-passthrough on | |
| set-option -ga terminal-features "*:RGB" | |
| set-option -g status-position top |
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
| general: | |
| # Commands to run when the WM has started. This is useful for running a | |
| # script or launching another application. | |
| # Example: The below command launches Zebar. | |
| # startup_commands: ['shell-exec zebar'] | |
| # Commands to run just before the WM is shutdown. | |
| # Example: The below command kills Zebar. | |
| # shutdown_commands: ['shell-exec taskkill /IM zebar.exe /F'] | |
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
| [ | |
| // --- | |
| // October 9, 2024 | |
| // Indent and outdent lines | |
| { "key": "ctrl+u" , "command": "" }, | |
| { "key": "ctrl+u" , "when": "editorFocus", "command": "editor.action.outdentLines" }, | |
| { "key": "ctrl+i" , "command": "" }, | |
| { "key": "ctrl+i" , "when": "editorFocus", "command": "editor.action.indentLines" }, |
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
| { | |
| // ----------------------- | |
| // System & Security | |
| // ----------------------- | |
| "remote.autoForwardPortsSource": "process", // Only forwards ports for actual listening processes, not terminal output | |
| "security.allowedUNCHosts": ["wsl.localhost"], // Allows WSL file access without warnings | |
| "security.workspace.trust.enabled": false, | |
| "window.commandCenter": false, | |
| "window.customTitleBarVisibility": "never", | |
| "window.menuBarVisibility": "toggle", |
logout- i3 logout script (i3-msg exit) (~/.local/bin/logout)audio-switcher- Rofi-based audio output device switcher using pactl (~/.local/bin/audio-switcher)kill-app- Rofi-based GUI application killer (uses wmctrl via nix-shell for fast window detection) (~/.local/bin/kill-app)wallpaper-picker- Rofi-based wallpaper selector using feh (~/.local/bin/wallpaper-picker)gpick-toggle- Smart gpick launcher with optimized scratchpad behavior (~/.local/bin/gpick-toggle)- Toggles scratchpad visibility for instant show/hide
- Prevents duplicate instances
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
| #include QMK_KEYBOARD_H | |
| #if __has_include("keymap.h") | |
| # include "keymap.h" | |
| #endif | |
| #define ___ KC_TRNS | |
| enum { | |
| TD_CTRL_ALT, | |
| TD_MO3_MO4, |
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 Counter and Timer | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://chat.openai.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com | |
| // @grant GM_addStyle | |
| // ==/UserScript== |
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
| import * as crypto from 'node:crypto' | |
| import pako from 'pako' | |
| import basex from 'base-x' | |
| const base16 = basex('0123456789abcdef') | |
| const base62 = basex('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz') | |
| let header = JSON.stringify({ alg: 'HS256', typ: 'JWT' }) |
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
Show hidden characters
| { | |
| "breadcrumbs.enabled": false, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": true | |
| }, | |
| "editor.cursorBlinking": "phase", | |
| "editor.folding": false, | |
| "editor.fontFamily": "Source Code Pro", | |
| "editor.fontSize": 13, |
NewerOlder