mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-16 09:02:42 +00:00
11 lines
319 B
Bash
Executable File
11 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-FileCopyrightText: 2026 Hilton Chain <hako@ultrarare.space>
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
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
|