Skip to content

Instantly share code, notes, and snippets.

View MashukeAlam's full-sized avatar
🌳
Trying to do somethong BiGG

Mashuke Alam Jim MashukeAlam

🌳
Trying to do somethong BiGG
View GitHub Profile
@MashukeAlam
MashukeAlam / set_me_up.sh
Last active October 24, 2023 06:46
setup ubuntu
echo "Welcome! Let's set this baby up for your pleasure..."
echo "Remember that this process will require sudo permission."
echo "What is your Full name?"
read git_config_user_name
echo "What is your Github username?"
read username
echo "What email do you want to use to log into Github?"
@MashukeAlam
MashukeAlam / .bash_history
Created November 22, 2023 09:32
setup oracle linux for rubyonrils+oracledb project
sudo dnf update
sudo yum groupinstall 'Development Tools'
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
source .bashrc
nvm install 14.21
npm i -g yarn
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
#!/bin/bash
# Function to get the current GNOME theme name
get_current_theme() {
gsettings get org.gnome.desktop.interface gtk-theme | awk -F\' '{print $2}'
}
# Function to toggle between light and dark themes
toggle_theme() {
current_theme=$(get_current_theme)