bump up to 1.0.3

This commit is contained in:
Rudra Bali 2023-01-19 14:31:12 +05:30
parent e2eee152ac
commit 6eff7a1c09
13 changed files with 139 additions and 29 deletions

10
pkgmanagers/apt Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="sudo apt $@" blend enter ubuntu-22.10 --distro ubuntu-22.10
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Ubuntu-22.10 terminal (or running `blend enter -cn ubuntu-22.10`)\033[0m'
exit $ret

10
pkgmanagers/apt-get Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="sudo apt-get $@" blend enter ubuntu-22.10 --distro ubuntu-22.10
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Ubuntu-22.10 terminal (or running `blend enter -cn ubuntu-22.10`)\033[0m'
exit $ret

10
pkgmanagers/dnf Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="sudo dnf $@" blend enter fedora-rawhide --distro fedora-rawhide
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Fedora-rawhide terminal (or running `blend enter -cn fedora-rawhide`)\033[0m'
exit $ret

10
pkgmanagers/pacman Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="sudo pacman $@" blend enter arch
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Arch terminal (or running `blend enter -cn arch`)\033[0m'
exit $ret

10
pkgmanagers/yay Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="yay $@" blend enter arch
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Arch terminal (or running `blend enter -cn arch`)\033[0m'
exit $ret

10
pkgmanagers/yum Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
BLEND_COMMAND="sudo yum $@" blend enter fedora-rawhide --distro fedora-rawhide
ret=$?
echo
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mapps installed this way will need to be exported manually using `blend export [pkg]`,\033[0m'
echo -e '\033[01m\033[36m>> i: \033[0m\033[01mor you can run them by opening the Fedora-rawhide terminal (or running `blend enter -cn fedora-rawhide`)\033[0m'
exit $ret