Last active
March 6, 2023 19:06
-
-
Save ademar111190/e219e954924a2caaede121906f804297 to your computer and use it in GitHub Desktop.
Just a container to use on distrobox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# podman build -f Containerfile -t radebarao | |
FROM registry.opensuse.org/opensuse/tumbleweed:latest | |
# distrobox stuff | |
RUN zypper -n install bash bc curl diffutils findutils gnupg less libvte-2* libvulkan1 libvulkan_intel libvulkan_radeon lsof Mesa-dri ncurses pinentry procps shadow sudo systemd time util-linux util-linux-systemd wget | |
# my stuff | |
RUN zypper -n install bat exa git neofetch neovim zsh | |
RUN echo "#!/usr/bin/env bash" > /bin/init-radebarao | |
RUN echo "cd ~" >> /bin/init-radebarao | |
RUN echo "sh -c \"\$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"" >> /bin/init-radebarao | |
RUN echo "git clone --depth=1 https://github.com/romkatv/powerlevel10k.git \${ZSH_CUSTOM:-\$HOME/.oh-my-zsh/custom}/themes/powerlevel10k" >> /bin/init-radebarao | |
RUN echo "wget https://gist.githubusercontent.com/ademar111190/54e5e0a986a6ee9062dcd6c411f840e4/raw/9bec6576ae3ad96fc07efebe22f56407a0e07136/.zshrc" >> /bin/init-radebarao | |
RUN echo "wget https://gist.githubusercontent.com/ademar111190/af5c02ee631b09e549a69a89de48fa8f/raw/004e851febac9a098cfa73b610c3e268a817139a/.p10k.zsh" >> /bin/init-radebarao | |
RUN echo "chsh \$(which zsh)" >> /bin/init-radebarao |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment