Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate getting color schemes for geany #200

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions extra/geany/Vertex-Dark/get-color-schemes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
mkdir -p ~/.config/geany/colorschemes
cd /tmp
wget https://github.com/geany/geany-themes/releases/download/1.24/geany-themes-1.24.tar.bz2
tar -xvf geany-themes-1.24.tar.bz2
mv geany-themes-1.24/colorschemes/* ~/.config/geany/colorschemes
rm -rf geany-themes-1.24 geany-themes-1.24.tar.bz2
cd -
echo "Go to Geany > View > Editor > Color Schemes..."
echo "or add 'color_scheme=kugel.conf' to the [geany] section of '~/.config/geany/geany.conf'."