mirror of
https://github.com/aljazceru/omakub.git
synced 2026-02-23 13:14:20 +01:00
Merge branch 'basecamp:master' into check-version
This commit is contained in:
@@ -2,21 +2,23 @@ CHOICES=(
|
||||
"Dev Language Install programming language environment"
|
||||
"Dev Database Install development database in Docker"
|
||||
"1password Manage your passwords securely across devices"
|
||||
"Audacity Record and edit audio"
|
||||
"Brave Chrome-based browser with built-in ad blocking"
|
||||
"Doom Emacs Emacs framework with curated list of packages"
|
||||
"Dropbox Sync files across computers with ease"
|
||||
"OBS Studio Record screencasts with inputs from both display + webcam"
|
||||
"Audacity Record and edit audio"
|
||||
"Ollama Run LLMs, like Meta's Llama3, locally"
|
||||
"RubyMine IntelliJ's commercial Ruby editor"
|
||||
"Spotify Stream music from the world's most popular service"
|
||||
"Steam Play games from Valve's store"
|
||||
"Zoom Attend and host video chat meetings"
|
||||
"VirtualBox Virtual machines to run Windows/Linux"
|
||||
"Zed Fast all-purpose editor"
|
||||
"Zoom Attend and host video chat meetings"
|
||||
"> All Re-run any of the default installers"
|
||||
"<< Back "
|
||||
)
|
||||
|
||||
CHOICE=$(gum choose "${CHOICES[@]}" --height 17 --header "Install application")
|
||||
CHOICE=$(gum choose "${CHOICES[@]}" --height 19 --header "Install application")
|
||||
|
||||
if [[ "$CHOICE" == "<< Back"* ]] || [[ -z "$CHOICE" ]]; then
|
||||
# Don't install anything
|
||||
|
||||
3
install/desktop/optional/app-doom-emacs.sh
Normal file
3
install/desktop/optional/app-doom-emacs.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
sudo apt install -y emacs
|
||||
git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.config/emacs
|
||||
~/.config/emacs/bin/doom install
|
||||
1
install/desktop/optional/app-zed.sh
Normal file
1
install/desktop/optional/app-zed.sh
Normal file
@@ -0,0 +1 @@
|
||||
curl https://zed.dev/install.sh | sh
|
||||
@@ -1,9 +1,9 @@
|
||||
return {
|
||||
{ "shaunsingh/nord.nvim" },
|
||||
{ "EdenEast/nightfox.nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "nord",
|
||||
colorscheme = "nordfox",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
4
uninstall/app-doom-emacs.sh
Normal file
4
uninstall/app-doom-emacs.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
sudo apt remove --purge -y emacs emacs-gtk
|
||||
sudo rm -rf ~/.config/emacs
|
||||
sudo rm -rf ~/.emacs.d
|
||||
sudo rm -rf ~/.config/doom
|
||||
4
uninstall/app-zed.sh
Normal file
4
uninstall/app-zed.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
rm -rf ~/.local/zed.app
|
||||
rm -rf ~/.local/bin/zed
|
||||
rm .rf ~/.local/share/applications/dev.zed.Zed.desktop
|
||||
rm -rf ~/.config/zed
|
||||
Reference in New Issue
Block a user