(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
# Make sure you have enabled "Expose hardware assisted virtualization to the guest OS" for the VMWare CPU | |
Write-Host "##############################`nInstalling features: Containers, Hyper-V, Hyper-V-PowerShell`n##############################`n" | |
Install-WindowsFeature Containers | |
Install-WindowsFeature Hyper-V | |
Install-WindowsFeature Hyper-V-PowerShell | |
Write-Host "##############################`nDisabling firewall`n##############################`n" | |
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False |
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
from PyQt5.QtCore import Qt | |
from PyQt5.QtGui import QImage, QPixmap, QPalette, QPainter | |
from PyQt5.QtPrintSupport import QPrintDialog, QPrinter | |
from PyQt5.QtWidgets import QLabel, QSizePolicy, QScrollArea, QMessageBox, QMainWindow, QMenu, QAction, \ | |
qApp, QFileDialog |