├── .gitignore ├── README.md ├── bazel.lisp ├── commands.lisp ├── edgar.lisp ├── fare-scripts.asd ├── git.lisp ├── gutenberg.lisp ├── languages.lisp ├── make-multi.sh ├── network.lisp ├── obsolete-shell-aliases.lisp ├── random.lisp ├── repl.lisp ├── rescript.lisp ├── shell-aliases.lisp ├── toggle-touchpad.lisp ├── typographie.lisp ├── unmime.lisp ├── vicode-test.lisp ├── vicode.lisp ├── viet-practice.lisp └── xrandr.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | *.fasl 2 | *.*fsl 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/README.md -------------------------------------------------------------------------------- /bazel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/bazel.lisp -------------------------------------------------------------------------------- /commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/commands.lisp -------------------------------------------------------------------------------- /edgar.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/edgar.lisp -------------------------------------------------------------------------------- /fare-scripts.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/fare-scripts.asd -------------------------------------------------------------------------------- /git.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/git.lisp -------------------------------------------------------------------------------- /gutenberg.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/gutenberg.lisp -------------------------------------------------------------------------------- /languages.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/languages.lisp -------------------------------------------------------------------------------- /make-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/make-multi.sh -------------------------------------------------------------------------------- /network.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/network.lisp -------------------------------------------------------------------------------- /obsolete-shell-aliases.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/obsolete-shell-aliases.lisp -------------------------------------------------------------------------------- /random.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/random.lisp -------------------------------------------------------------------------------- /repl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/repl.lisp -------------------------------------------------------------------------------- /rescript.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/rescript.lisp -------------------------------------------------------------------------------- /shell-aliases.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/shell-aliases.lisp -------------------------------------------------------------------------------- /toggle-touchpad.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/toggle-touchpad.lisp -------------------------------------------------------------------------------- /typographie.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/typographie.lisp -------------------------------------------------------------------------------- /unmime.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/unmime.lisp -------------------------------------------------------------------------------- /vicode-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/vicode-test.lisp -------------------------------------------------------------------------------- /vicode.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/vicode.lisp -------------------------------------------------------------------------------- /viet-practice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/viet-practice.lisp -------------------------------------------------------------------------------- /xrandr.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fare/fare-scripts/HEAD/xrandr.lisp --------------------------------------------------------------------------------