Streamline minegrub-theme installation

This commit is contained in:
Manuel Thalmann 2024-07-16 23:11:27 +02:00
parent 49502a7055
commit a2cf20b9ff
3 changed files with 27 additions and 0 deletions

View file

@ -45,6 +45,9 @@ begin
source "$dir/../Software/vim/main.fish"
source "$dir/../Software/git/main.fish"
source "$dir/../Software/zoxide/main.fish"
# GRUB Shenanigans - if that's not an essential I don't know what is!
source "$dir/../Software/minegrub-theme/main.fish";
end
if collectionActive common

View file

@ -0,0 +1,13 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
source "$dir/../../../Common/Software/minegrub-theme/main.fish"
function installSW
yayinst grub-theme-minegrub-git
configureSW
end
runInstaller $argv
end

View file

@ -0,0 +1,11 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function configureSW -V dir
source "$dir/../GRUB/main.fish" configure
end
runInstaller $argv
end