mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-20 19:14:20 +00:00
9 lines
212 B
Bash
Executable File
9 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
dir="$(dirname "$(realpath "$0")")"
|
|
if [[ ! -f ~/.config/emacs/init.el ]]
|
|
then
|
|
mkdir -p ~/.config/emacs
|
|
cp "$dir/init"* ~/.config/emacs
|
|
fi
|
|
cat "$dir/packages.txt" | xargs guix package --install
|