This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MY VARS | |
| set my_confdir = ~/.config/neomutt | |
| set my_cachedir = ~/.cache/neomutt | |
| set my_mailcache = ~/mail | |
| # GLOBAL / GENERAL | |
| set mailcap_path = $my_confdir/mailcap | |
| alternative_order text/enriched text/plain text | |
| auto_view text/html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| distro="$1" | |
| arch="$2" | |
| image="$3" | |
| config="$4" | |
| output=$(mktemp -d) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "2", | |
| "pipelines": [ | |
| { | |
| "runner": "org.osbuild.fedora38", | |
| "name": "build", | |
| "source-epoch": 1659397331, | |
| "stages": [ | |
| { | |
| "type": "org.osbuild.rpm", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 15:34:04 DEBUG init earlyinit:init_log:287 Log initialized. | |
| 15:34:04 DEBUG init machinery:init:299 Qt wrapper info: | |
| PyQt6: success | |
| PyQt5: not imported | |
| -> selected: PyQt6 (via autoselect) | |
| 15:34:04 DEBUG init earlyinit:init_qtlog:298 Qt log initialized. | |
| 15:34:04 DEBUG init app:run:70 Main process PID: 121412 | |
| 15:34:04 DEBUG init app:run:72 Initializing directories... | |
| 15:34:04 DEBUG init standarddir:init:341 Base directory: /tmp/qutebrowser-basedir-pt6mp347 | |
| 15:34:04 DEBUG init app:run:76 Initializing config... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PID: 30683 (qutebrowser) | |
| UID: 1000 (achilleas) | |
| GID: 1000 (achilleas) | |
| Signal: 11 (SEGV) | |
| Timestamp: Thu 2023-10-12 13:47:04 CEST (1h 42min ago) | |
| Command Line: /usr/bin/python3 /usr/bin/qutebrowser | |
| Executable: /usr/bin/python3.11 | |
| Control Group: /user.slice/user-1000.slice/[email protected]/app.slice/[email protected] | |
| Unit: [email protected] | |
| User Unit: [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "distro": "rhel-8", | |
| "arch": "x86_64", | |
| "image-type": "qcow2", | |
| "blueprint": { | |
| "name": "minej", | |
| "description": "My test blueprint", | |
| "version": "0.0.1", | |
| "modules": [], | |
| "groups": [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Image: mnt/images/pxeboot/initrd.img: 84M | |
| ======================================================================== | |
| Version: dracut-055-30.git20220216.el9 | |
| Arguments: --no-hostonly --kver '5.14.0-75.el9.x86_64' --force -v --show-modules --no-early-microcode --reproducible --modules 'bash systemd fips systemd-initrd modsign nss-softokn i18n convertfs network-manager network ifcfg url-lib drm plymouth prefixdevname prefixdevname-tools crypt dm dmsquash-live kernel-modules kernel-modules-extra kernel-network-modules livenet lvm mdraid qemu qemu-net resume rootfs-block terminfo udev-rules dracut-systemd pollcdrom usrmount base fs-lib img-lib shutdown uefi-lib biosdevname coreos-installer fdo' --install '/.buildstamp' | |
| dracut modules: | |
| bash | |
| systemd | |
| fips |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| checknargs() { | |
| if (( $1 != $2 )); then | |
| usage | |
| exit 1 | |
| fi | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| checkout() { | |
| git fetch -fu "${2:-origin}" "refs/pull/$1/head:pr/$1" | |
| git checkout "pr/$1" | |
| } | |
| fetch() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set -g default-terminal "tmux-256color" | |
| set -ga terminal-overrides ",*256col*:Tc" | |
| set -ga terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[5 q' | |
| # Start windows and panes at 1, not 0 | |
| set -g base-index 1 | |
| set -g pane-base-index 1 |