This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:6CF8BBBD93FD0A4A748495A12D8ADFDD01E76FAC]
| #!/usr/bin/env bash | |
| if [ -z "$1" ] | |
| then | |
| echo "No app given" | |
| exit | |
| else | |
| echo "Building and running: $1" | |
| fi |
| #!/bin/bash | |
| kdesrc-build breeze | |
| source ~/Repositories/kde/build/breeze/prefix.sh | |
| dbus-run-session kwin_wayland systemsettings |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:6CF8BBBD93FD0A4A748495A12D8ADFDD01E76FAC]
| --- | |
| BasedOnStyle: LLVM | |
| AlignAfterOpenBracket: AlwaysBreak | |
| AlignConsecutiveMacros: 'true' | |
| AlignConsecutiveAssignments: 'true' | |
| AlignConsecutiveDeclarations: 'false' | |
| AlignEscapedNewlines: Right | |
| AlignTrailingComments: 'true' | |
| AlignAfterOpenBracket: 'true' | |
| AllowShortBlocksOnASingleLine: 'false' |
| #!/bin/bash | |
| #Not my script! Found it when searching the web for this kind of option. | |
| #Saved for future reference | |
| #Run with "bash restrictmouse.sh 0 0 1919 1080" to restrict the mouse to your first monitor | |
| #Run inside terminal so it's easier to close the script when done | |
| #Needs xdotool to work | |
| borderxl=$1 | |
| borderyu=$2 |