Compare commits
No commits in common. "eeb882b3aef23ca76d537e975dd57f1200dbb418" and "30f9fed77a40922ed8d353045f8dc270d00461b0" have entirely different histories.
eeb882b3ae
...
30f9fed77a
@ -54,6 +54,6 @@ gext enable dash-to-dock@micxgx.gmail.com user-theme@gnome-shell-extensions.gcam
|
||||
|
||||
|
||||
|
||||
bash gnome-keybinds.sh
|
||||
bash gnome-custom-keybinds.sh
|
||||
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@ keybindings=(
|
||||
"Terminal|kitty|<Super>Return"
|
||||
"wallpaper|~/utils/gnome-wallpaper/wallpaper.sh|Launch7"
|
||||
"wallpaper2|~/utils/gnome-wallpaper/my_wallpaper.sh|<Control>Launch7"
|
||||
"browser|librewolf|<Super>Shift"
|
||||
)
|
||||
|
||||
# Get the current list of custom keybindings
|
||||
25
options/lavanda-gtk-theme.sh
Executable file
25
options/lavanda-gtk-theme.sh
Executable file
@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
# credit: https://github.com/drewgrif/bookworm-scripts
|
||||
|
||||
# Function to check if a directory exists
|
||||
check_directory() {
|
||||
if [ -d "$1" ]; then
|
||||
return 0 # Directory exists
|
||||
else
|
||||
return 1 # Directory does not exist
|
||||
fi
|
||||
}
|
||||
|
||||
# Check if Lavanda-gtk-theme is installed
|
||||
if check_directory "$HOME/.themes/Lavanda-Dark"; then
|
||||
echo "Lavanda gtk theme is already installed."
|
||||
else
|
||||
echo "Installing Lavanda-gtk-theme..."
|
||||
DOWNLOAD_DIR="${XDG_DOWNLOAD_DIR:-$(xdg-user-dir DOWNLOAD)}"
|
||||
cd $DOWNLOAD_DIR || exit
|
||||
git clone https://github.com/vinceliuice/Lavanda-gtk-theme
|
||||
cd Lavanda-gtk-theme
|
||||
bash install.sh
|
||||
rm -rf $DOWNLOAD_DIR/Lavanda-gtk-theme
|
||||
echo "Finished installing Lavanda-gtk-theme"
|
||||
fi
|
||||
Loading…
x
Reference in New Issue
Block a user