This Guide is from ARCH WIKI Bullet_Proof_Arch_Install
DRIVE=/dev/DRIVEID
sgdisk --zap-all $DRIVE
sgdisk --clear \
--new=1:0:+550MiB --typecode=1:ef00 --change-name=1:EFI \
| { | |
| "$schema": "vscode://schemas/color-theme", | |
| "type": "dark", | |
| "colors": { | |
| "activityBar.background": "#1f2330", | |
| "activityBar.border": "#0f1320", | |
| "activityBar.dropBackground": "#0f1320", | |
| "activityBar.foreground": "#f6f0ff", | |
| "activityBar.inactiveForeground": "#919cb9", | |
| "activityBarBadge.background": "#ff4081", |
| <?php | |
| namespace Tests; | |
| trait GraphQLAPI | |
| { | |
| /** | |
| * @param string $query | |
| * @return mixed | |
| */ |
This Guide is from ARCH WIKI Bullet_Proof_Arch_Install
DRIVE=/dev/DRIVEID
sgdisk --zap-all $DRIVE
sgdisk --clear \
--new=1:0:+550MiB --typecode=1:ef00 --change-name=1:EFI \
| #!/bin/bash | |
| bootstrapper_dialog() { | |
| DIALOG_RESULT=$(dialog --clear --stdout --backtitle "Arch bootstrapper" --no-shadow "$@" 2>/dev/null) | |
| } | |
| ################# | |
| #### Welcome #### | |
| ################# | |
| bootstrapper_dialog --title "Welcome" --msgbox "Welcome to Kenny's Arch Linux bootstrapper.\n" 6 60 |
| M01e55c4b-c05f-1e97-59fb-537fdb94de64&uaid=d6201353bf744c988cd9d9c72949c207 |
| PAYMONGO_EMAIL= | |
| PAYMONGO_PASS= | |
| PAYMONGO_LIVEMODE= | |
| PAYMONGO_TOKEN= | |
| SES_ACCESS_KEY= | |
| SES_SECRET_KEY= | |
| GOOGLE_SERVICE_ACCOUNT= | |
| GOOGLE_SERVICE_ACCOUNT_EMAIL= | |
| GOOGLE_SPREADSHEET_ID_FROM_URL= | |
| GOOGLE_PRIVATE_KEY= |
| C:\Windows | |
| C:\Windows\System32 | |
| C:\Windows\System32\WindowsPowershell\v1.0\ | |
| C:\Windows\System32\OpenSSH | |
| C:\ProgramData\chocolatey\bin | |
| C:\ProgramData\scoop\shims | |
| C:\Program Files\Powershell\7 | |
| C:\Program files (x86)\gnupg\bin | |
| ${PC.userDirectory}\scoop\shims | |
| ${PC.userDirectory}\.local\bin |
| # can you alias this to one letter alias ie. `v` | |
| # alias v=nvims | |
| nvims() { | |
| # Set the default XDG_CONFIG_HOME if it's not already set | |
| XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" | |
| # Get the path argument or default to the current directory | |
| target_path="${1:-.}" |
I want to open PDF files with Zathura on Mac. Problem is - Zathura does not have a proper App Bundle. So you cannot go in Finder to a pdf file, navigate to ‘Get Info’ and set pdf files to be opened with Zathura.
Luckily, you can create a custom App Bundle that wraps up a script that does that
But that is not as straightforward as you think it is, you can’t just execute a shell script. What if the file already opened with one of the instances of zathura process? Since Zathura is not a native OSX app, it will create a new process instance every time you open it.
The following script opens a file in Zathura, and if it was already opened, it would only activate the right window.