mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-16 09:02:42 +00:00
8 lines
215 B
Bash
Executable File
8 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
grep --recursive --no-filename '^;;guix:' . |
|
|
sed --regexp-extended 's/^;;guix:(.*)/"\1"/g' |
|
|
xargs guix install emacs-pgtk
|
|
|
|
[[ ! -e ~/.config/emacs/init.el ]] && cp --recursive . ~/.config/emacs
|