Skip to content

Instantly share code, notes, and snippets.

@sergiohidalgo
Last active July 28, 2017 16:14
Show Gist options
  • Save sergiohidalgo/d4d41f0517342027984b87ce656cebe7 to your computer and use it in GitHub Desktop.
Save sergiohidalgo/d4d41f0517342027984b87ce656cebe7 to your computer and use it in GitHub Desktop.
Windows 10 + ubuntu - Customización

Agregar oh my zsh

Instalar dependencias para oh my zsh

sudo apt-get install curl git zsh

Descargar script de instalación

curl -L https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | bash

Configurar la ejecución zsh

nano ~/.bashrc

agregar: bash -c zsh

Re instalar ubuntu (limpio)

Desinstalar

lxrun /uninstall /full

Instalar

lxrun /install

Configurar bash en /%User%/.hyper.js cambiar o agregar:

{
...
shell: 'C:\\Windows\\System32\\bash.exe',
plugins: ['hyper-material-theme'],
MaterialTheme: {
        // Set the theme variant,
        // OPTIONS: 'Darker', 'Palenight', ''
        theme: '',

        // [Optional] Set the rgba() app background opacity, useful when enableVibrance is true
        // OPTIONS: From 0.1 to 1
        backgroundOpacity: '1',

        // [Optional] Set the accent color for the current active tab
        accentColor: '#64FFDA',

        // [Optional] Mac Only. Need restart. Enable the vibrance and blurred background
        // OPTIONS: 'dark', 'ultra-dark', 'bright'
        // NOTE: The backgroundOpacity should be between 0.1 and 0.9 to see the effect.
        vibrancy: 'dark'
    }
    ...
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment