- maim
- xclip
Set this on your i3 config file ~/.i3/config
# Screenshots
#!/bin/bash | |
# 0 - SSH | |
# This isn't necessary but if you ssh into the computer all the other steps are copy and paste | |
# Set a password for root | |
passwd | |
# Get network access | |
iwctl | |
""" |
<?php | |
use Doctrine\DBAL\Connection; | |
use Doctrine\DBAL\Platforms\AbstractPlatform; | |
function truncateTable( | |
Connection $connection, | |
AbstractPlatform $databasePlatform, | |
string $entityName | |
): void |
<?php | |
use App\Kernel; | |
require __DIR__.'/vendor/autoload_runtime.php'; | |
use Symfony\Component\Console\Output\StreamOutput; | |
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; |
#!/bin/bash | |
# 0 - SSH | |
# This isn't necessary but if you ssh into the computer all the other steps are copy and paste | |
# Set a password for root | |
passwd | |
# Get network access | |
iwctl | |
""" |