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
| #!/usr/bin/env bun | |
| import { stat, readdir } from "fs/promises"; | |
| import { join } from "path"; | |
| const root = process.cwd(); | |
| async function html(target, baseDir) { | |
| const entries = await readdir(target); | |
| return new Response( |
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
| /* ~/.config/gtk-3.0/gtk.css */ | |
| @import 'colors.css'; | |
| .xfce4-panel { | |
| background: rgba(255, 255, 255, 0.1); | |
| border: none; | |
| border-radius: 4px; | |
| } | |
| .tasklist button { |
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
| call plug#begin('~/.vim/plugged') | |
| Plug 'cj-praveen/vim-code-dark' | |
| call plug#end() | |
| colorscheme codedark | |
| set number | |
| syntax on | |
| set showmode | |
| set nobackup |