start new:
tmux
start new with session name:
tmux new -s myname
| <key type="b" name="disable-suspend-button"> | |
| <default>false</default> | |
| <summary>Disable suspend button</summary> | |
| <description>Disable suspend button.</description> | |
| </key> |
| let disableSuspendButtonFrame = new AM.FrameBox(); | |
| let disableSuspendButtonRow = new AM.FrameBoxRow(); | |
| let disableSuspendButtonLabel = new Gtk.Label({ | |
| label: _("Disable activities hot corner"), | |
| use_markup: true, | |
| xalign: 0, | |
| hexpand: true | |
| }); | |
| let disableSuspendButtonSwitch = new Gtk.Switch({ halign: Gtk.Align.END }); | |
| disableSuspendButtonSwitch.set_active(this.settings.get_boolean('disable-suspend-button')); |
| { | |
| "key": "value" | |
| } |
| dconf write /org/gnome/desktop/input-sources/xkb-options "['caps:escape']" |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/artful64" | |
| config.vm.provider 'virtualbox' do |v| | |
| v.gui = true | |
| end | |
| config.vm.provision "shell", inline: <<-SHELL | |
| apt-get update -y | |
| apt-get dist-upgrade -y | |
| apt-get install -y git make |
| # Ubuntu 14.04 LTS Upgrade zu Ubuntu 16.04.5 LTS | |
| ``` | |
| sudo apt update | |
| sudo apt upgrade | |
| sudo apt install update-manager-core | |
| sudo do-release-upgrade | |
| ``` | |
| ## Nachdem Upgrade auf Ubuntu 16.04 LTS |
| git clone https://github.com/rubocop-hq/ruby-style-guide | |
| cd ruby-style-guide | |
| pandoc README.md -o ruby-code-style-guide.html |