My NixOS configurations + dotfiles

fixxxxxxxxxxxxx

+5 -5
bun.lockb

This is a binary file and will not be displayed.

+3 -3
config/gtk-3.0/settings.ini
··· 1 1 [Settings] 2 - gtk-theme-name=catppuccin-mocha-blue-standard 3 - gtk-icon-theme-name=Adwaita 4 - gtk-font-name=SF Pro Display 2 + gtk-theme-name=catppuccin-mocha-blue-standard+default 3 + gtk-icon-theme-name=Arashi 4 + gtk-font-name=Noto Sans 11 5 5 gtk-cursor-theme-name=RalseiCursors 6 6 gtk-cursor-theme-size=24 7 7 gtk-toolbar-style=GTK_TOOLBAR_ICONS
+2 -2
scripts/lib/EZUploader.ts
··· 10 10 */ 11 11 export async function UploadToEZ(content: Buffer): Promise<string> { 12 12 if (!process.env.EZ_API_KEY) { 13 - throw new Error(`Missing \`EZ_API_KEY\`, make sure you're loading the env from \`${homedir()}/.ocbwoy3-dotfiles-SECRET-DO-NOT-TOUCH.env\`!`) 13 + throw new Error(`Missing EZ_API_KEY, make sure you're loading the env from ${homedir()}/.ocbwoy3-dotfiles-SECRET-DO-NOT-TOUCH.env!`) 14 14 } 15 15 16 16 if (!(content[0] === 0x89 && content[1] === 0x50 && content[2] === 0x4e)) { ··· 20 20 const form = new FormData(); 21 21 form.append( 22 22 "file", 23 - new Blob([content], { type: "image/png" }), 23 + new Blob([content as any], { type: "image/png" }), 24 24 "screenshot.png" 25 25 ); 26 26