OSDN Git Service

move themes over to instantos
authorpaperbenni <paperbenni@gmail.com>
Fri, 10 Jan 2020 23:21:48 +0000 (00:21 +0100)
committerpaperbenni <paperbenni@gmail.com>
Fri, 10 Jan 2020 23:21:48 +0000 (00:21 +0100)
install.sh
themes/arc.sh [deleted file]
themes/dracula.sh [deleted file]
themes/mac.sh [deleted file]
themes/manjaro.sh [deleted file]

index 13e61c0..28cef39 100755 (executable)
@@ -260,7 +260,7 @@ fi
 
 # install things like fonts or gtk theme
 echo "installing theme"
-curl -s "https://raw.githubusercontent.com/instant-os/instant-THEMES/master/$THEME.sh" | bash
+curl -s "https://raw.githubusercontent.com/instantos/instantTHEMES/master/$THEME.sh" | bash
 
 # fix java gui appearing empty on dwm
 if ! grep -q 'dwm' </etc/profile; then
diff --git a/themes/arc.sh b/themes/arc.sh
deleted file mode 100755 (executable)
index 3a82ddc..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-source <(curl -Ls https://git.io/JerLG)
-pb git
-pb config
-pb gtk
-
-# gtk theme
-if ! themeexists Arc &>/dev/null; then
-    command -v pacman && sudo pacman -S --noconfirm arc-gtk-theme
-    command -v apt-get && sudo apt-get install -y arc-theme
-fi
-gtktheme Arc
-
-# gtk icons
-if ! icons_exist Papirus &>/dev/null; then
-    pushd .
-    cd
-    gitclone PapirusDevelopmentTeam/papirus-icon-theme
-    cd papirus-icon-theme
-    ./install.sh
-    cd ..
-    rm -rf papirus-icon-theme
-    popd
-fi
-
-gtkicons Papirus
-setcursor elementary
-
-rofitheme arc
-dunsttheme arc
-
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/sourcecodepro.sh" | bash
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/roboto.sh" | bash
-echo "done installing arc theme"
diff --git a/themes/dracula.sh b/themes/dracula.sh
deleted file mode 100755 (executable)
index c445945..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-source <(curl -Ls https://git.io/JerLG)
-pb git
-pb gtk
-
-# gtk theme
-if themeexists materiacula &>/dev/null && icons_exist materiacula &>/dev/null; then
-    echo "gtk theme dracula found"
-else
-    gitclone materiacula
-    cd materiacula
-    bash install.sh
-    cd ..
-    rm -rf materiacula
-fi
-
-gtktheme materiacula
-gtkicons materiacula
-gtkfont "Roboto 10"
-
-setcursor paper
-
-rofitheme dracula
-dunsttheme dracula
-
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/monaco.sh" | bash
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/roboto.sh" | bash
diff --git a/themes/mac.sh b/themes/mac.sh
deleted file mode 100755 (executable)
index 07e48aa..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-source <(curl -Ls https://git.io/JerLG)
-pb git
-pb gtk
-pb unpack
-
-mkdir -p ~/.cache/mactheme
-cd ~/.cache/mactheme
-
-# gtk theme
-if ! themeexists Mojave-light &> /dev/null; then
-    gitclone vinceliuice/Mojave-gtk-theme
-    cd Mojave-gtk-theme
-    ./install.sh
-    cd ..
-fi
-
-gtktheme Mojave-light
-
-# gtk icons
-if ! icons_exist McMojave-circle &> /dev/null; then
-    gitclone vinceliuice/McMojave-circle
-    cd McMojave-circle
-    ./install.sh
-    cd ..
-fi
-gtkicons McMojave-circle
-
-setcursor osx
-
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/sfpro.sh" | bash
-
-rofitheme mac
-dunsttheme mac
-
-gtkfont 'SF Pro Display 10'
-gtkdocumentfont 'SF Pro Text 10'
diff --git a/themes/manjaro.sh b/themes/manjaro.sh
deleted file mode 100755 (executable)
index a8e770d..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-# manjaro like style
-
-source <(curl -Ls https://git.io/JerLG)
-pb git
-pb gtk
-pb unpack
-
-mkdir /tmp/manjarotheme
-cd /tmp/manjarotheme
-
-if ! themeexists matcha &> /dev/null; then
-    git clone --depth=1 https://github.com/vinceliuice/matcha.git
-    cd matcha
-    ./Install
-    cd ..
-    rm -rf matcha
-fi
-gtktheme "Matcha-sea"
-
-if ! icons_exist "Papirus-Maia" &> /dev/null; then
-    git clone --depth=1 https://github.com/Ste74/papirus-maia-icon-theme.git
-    cd papirus-maia-icon-theme
-    mkdir ~/.icons &>/dev/null
-    mv Papirus* ~/.icons
-    cd ..
-    rm -rf papirus-maia-icon-theme
-fi
-
-gtkicons "Papirus-Maia"
-
-# rofi setup
-mkdir -p ~/.config/rofi &>/dev/null
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/rofi/manjaro.rasi" >~/.config/rofi/arc.rasi
-echo 'rofi.theme: ~/.config/rofi/manjaro.rasi' >~/.config/rofi/config
-
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/sourcecodepro.sh" | bash
-curl -s "https://raw.githubusercontent.com/paperbenni/dotfiles/master/fonts/roboto.sh" | bash
-
-if ! [ -e ~/.icons/Breeze ]; then
-    mkdir ~/.icons &>/dev/null
-    cd ~/.icons
-    svn export "https://github.com/KDE/breeze.git/trunk/cursors/Breeze/Breeze"
-fi
-
-rofitheme manjaro
-dunsttheme manjaro
-
-setcursor Breeze
-
-echo "done installing manjaro theme"