This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "generic/arch" | |
| config.vm.provider "hyperv" do |hv| | |
| hv.cpus = 6 | |
| hv.maxmemory = 8192 | |
| hv.memory = 1024 |
This file contains hidden or 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
| #!/bin/bash | |
| # Requirements | |
| # - TigerVNC (Client and Server) | |
| # - OpenBox | |
| # - WebStorm | |
| export DISPLAY=:10 # Change if display :10 is already in use | |
| Xvnc -SecurityTypes=None +extension RANDR +extension GLX +extension COMPOSITE -SetPrimary=0 -SendPrimary=0 -depth 24 "$DISPLAY" & |
This file contains hidden or 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
| #!/bin/bash | |
| ## $HOME/.bashrc | |
| DEFAULT='\e[39m' | |
| LIGHT_RED='\e[91m' | |
| LIGHT_GREEN='\e[92m' | |
| LIGHT_YELLOW='\e[93m' | |
| _color() { |