This commit is contained in:
parent
47a4b22755
commit
0a27b47f07
|
|
@ -13,7 +13,7 @@ linux-headers
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
usbutils
|
usbutils
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
--END OF MINIMAL INSTALL--
|
### old end of minimal
|
||||||
avahi
|
avahi
|
||||||
# alsa-plugins
|
# alsa-plugins
|
||||||
# alsa-utils
|
# alsa-utils
|
||||||
|
|
@ -111,6 +111,7 @@ zip
|
||||||
##########################################
|
##########################################
|
||||||
### MY PACKAGES
|
### MY PACKAGES
|
||||||
##########################################
|
##########################################
|
||||||
|
--END OF MINIMAL INSTALL--
|
||||||
gst-plugin-pipewire
|
gst-plugin-pipewire
|
||||||
pipewire
|
pipewire
|
||||||
pipewire-alsa
|
pipewire-alsa
|
||||||
|
|
@ -123,7 +124,6 @@ flatpak
|
||||||
grep
|
grep
|
||||||
gscan2pdf
|
gscan2pdf
|
||||||
guake
|
guake
|
||||||
htop
|
|
||||||
openconnect
|
openconnect
|
||||||
openvpn
|
openvpn
|
||||||
networkmanager
|
networkmanager
|
||||||
|
|
|
||||||
|
|
@ -60,8 +60,8 @@ echo -ne "
|
||||||
sed -i 's/^#de_CH.UTF-8 UTF-8/de_CH.UTF-8 UTF-8/' /etc/locale.gen
|
sed -i 's/^#de_CH.UTF-8 UTF-8/de_CH.UTF-8 UTF-8/' /etc/locale.gen
|
||||||
locale-gen
|
locale-gen
|
||||||
touch /etc/locale.conf
|
touch /etc/locale.conf
|
||||||
cat "LANG=en_US.UTF-8" | tee -a /etc/locale.conf
|
echo "LANG=en_US.UTF-8" | tee -a /etc/locale.conf
|
||||||
cat "LC_TIME=de_CH.UTF-8" | tee -a /etc/locale.conf
|
echo "LC_TIME=de_CH.UTF-8" | tee -a /etc/locale.conf
|
||||||
timedatectl --no-ask-password set-timezone ${TIMEZONE}
|
timedatectl --no-ask-password set-timezone ${TIMEZONE}
|
||||||
timedatectl --no-ask-password set-ntp 1
|
timedatectl --no-ask-password set-ntp 1
|
||||||
# localectl --no-ask-password set-locale LANG="en_US.UTF-8" LC_TIME="en_US.UTF-8"
|
# localectl --no-ask-password set-locale LANG="en_US.UTF-8" LC_TIME="en_US.UTF-8"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
GNOME_SHELL_VERSION=`gnome-shell --version`
|
||||||
|
echo $GNOME_SHELL_VERSION #| cut -d " " -f $2
|
||||||
|
|
||||||
|
yay -S gnome-shell-extension-installer
|
||||||
|
EXT_NAME=Material
|
||||||
|
# get search output (to find current ID)
|
||||||
|
MY_TEMP="`printf 'q' | gnome-shell-extension-installer $EXT_NAME`"
|
||||||
|
EXTENSION_ID=...??? # filter version
|
||||||
|
gnome-shell-extension-installer $EXTENSION_ID
|
||||||
Loading…
Reference in New Issue