Created
April 13, 2018 06:17
-
-
Save abdiasriver/094491349011fadd8a4d25db5efe7186 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#INSTALACION ARCHLINUX GNOME-SHELL EFI | |
sudo pacman -S mesa | |
sudo pacman -S libinput | |
sudo pacman -S xorg-server xorg-apps xorg-xinit xorg-twm xorg-xclock xterm | |
sudo pacman -S gnome-shell gdm | |
sudo systemctl enable gdm.service | |
#Configuracion de fecha y hora en archinux | |
Checar el status del horario | |
timedatectl status | |
## Hacer un listado de zonas, busca la tuya, en mi caso America/Mexico_City | |
timedatectl list-timezones | |
## Para establecer el horario en la terminal ejecutamos | |
timedatectl set-timezone America/Mexico_City | |
Error al iniciar linux sistema systemctl daemon, en mi caso mi id es enp7s0 | |
systemctl status [email protected] | |
systemctl stop [email protected] | |
systemctl disable [email protected] | |
## POSTINSTALACION ARCHLINUX GNOME-SHELL | |
#instalacion pacaur por medio de script | |
sudo pacman -S git | |
git clone https://github.com/abdiasriver/avilinux | |
cd avilinux | |
chmod +x *.sh | |
./pacaur.sh | |
pacaur -S gnome-tweak-tool gnome-shell-extensions gnome-shell-extension-dash-to-dock gtk-engine-murrine gtk-engines gnome-terminal xdg-user-dirs-gtk gnome file-roller unzip zip p7zip unrar ntfs-3g ntfsprogs sublime-text-dev chromium-widevine nautilus gnome-control-center | |
pacaur -Rs xterm | |
Descargar el tema gtk y ejecutar | |
gsettings set org.gnome.desktop.interface gtk-theme "Flat-Remix-GTK" | |
## Ocultar iconos aplicaciones en gnome-shell | |
sudo su | |
cd /usr/share/applications | |
ls | |
## Editaremos la aplicacion que queremos ocultar con nano u otro editor como gedit | |
nano qv4l2.desktop | |
## colocaremos al final | |
NoDisplay=true | |
## Guardamos y cerramos, despues checamos el menu para corroborar que se oculto el icono |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment