This commit is contained in:
parent
3e30f6ec7b
commit
368220405a
|
|
@ -122,6 +122,7 @@ networkmanager-openconnect
|
|||
networkmanager-openvpn
|
||||
python
|
||||
firefox
|
||||
iwctl
|
||||
--END OF MINIMAL INSTALL--
|
||||
adobe-source-code-pro-fonts
|
||||
obs-studio
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ echo -ne "
|
|||
./dotfiles-openbox/install-titus.sh
|
||||
elif [[ $DESKTOP_ENV == "gnome" ]]; then
|
||||
echo "Setting up my gnome things: "
|
||||
# bash ~/ArchTitus/scripts/my_gnome_setup.sh
|
||||
bash ~/ArchTitus/scripts/4-gnome-setup.sh
|
||||
fi
|
||||
# fi
|
||||
|
||||
|
|
|
|||
|
|
@ -34,26 +34,3 @@ printf "$GNOME_VERSION\nq" | gnome-shell-extension-installer 1112 # screenshot t
|
|||
printf "$GNOME_VERSION\nq" | gnome-shell-extension-installer 3088 # Extension list
|
||||
printf "$GNOME_VERSION\nq" | gnome-shell-extension-installer 906 # Sound output chooser
|
||||
|
||||
killall -HUP gnome-shell # kill (hopfully restart) gnome-shell
|
||||
init-extension () {
|
||||
# enables extensions and links to gsettings
|
||||
gnome-extensions enable $1 || echo "could not enable $1"
|
||||
files=`ls ~/.local/share/gnome-shell/extensions/$1/schemas/`
|
||||
for file in $files; do
|
||||
if [[ $file == *.xml ]]; then
|
||||
echo "$file"
|
||||
sudo cp ~/.local/share/gnome-shell/extensions/$1/schemas/$file /usr/share/glib-2.0/schemas/
|
||||
fi
|
||||
done;
|
||||
}
|
||||
init-extension clipboard-indicator@tudmotu.com
|
||||
init-extension impatience@gfxmonk.net
|
||||
init-extension material-shell@papyelgringo
|
||||
init-extension Vitals@CoreCoding.com
|
||||
init-extension unite@hardpixel.eu
|
||||
init-extension extension-list@tu.berry
|
||||
init-extension sound-output-device-chooser@kgshank.net
|
||||
init-extension gnome-shell-screenshot@ttll.de
|
||||
|
||||
# compile schemas (which are linked)
|
||||
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# get internet connection
|
||||
printf 'station wlan0 connect "Krosse Krabbe 5GHz"\nsehrkomplex\nquit\n' | iwctl
|
||||
|
||||
# init extensions
|
||||
init-extension () {
|
||||
# enables extensions and links to gsettings
|
||||
gnome-extensions enable $1 || echo "could not enable $1"
|
||||
files=`ls ~/.local/share/gnome-shell/extensions/$1/schemas/`
|
||||
for file in $files; do
|
||||
if [[ $file == *.xml ]]; then
|
||||
echo "$file"
|
||||
sudo cp ~/.local/share/gnome-shell/extensions/$1/schemas/$file /usr/share/glib-2.0/schemas/
|
||||
fi
|
||||
done;
|
||||
}
|
||||
init-extension clipboard-indicator@tudmotu.com
|
||||
init-extension impatience@gfxmonk.net
|
||||
init-extension material-shell@papyelgringo
|
||||
init-extension Vitals@CoreCoding.com
|
||||
init-extension unite@hardpixel.eu
|
||||
init-extension extension-list@tu.berry
|
||||
init-extension sound-output-device-chooser@kgshank.net
|
||||
init-extension gnome-shell-screenshot@ttll.de
|
||||
|
||||
# compile schemas (which are linked)
|
||||
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
|
||||
Loading…
Reference in New Issue