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
# This file is generated from information provided by the datasource. Changes | |
# to it will not persist across an instance reboot. To disable cloud-init's | |
# network configuration capabilities, write a file | |
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: | |
# network: {config: disabled} | |
network: | |
ethernets: | |
eth0: | |
dhcp4: true | |
optional: true |
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
[pi4] | |
max_framebuffers=2 | |
[all] | |
kernel=vmlinuz | |
cmdline=cmdline.txt | |
initramfs initrd.img followkernel | |
# Enable the audio output, I2C and SPI interfaces on the GPIO header | |
dtparam=audio=on |
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
flatpak override --user --socket=wayland --env=MOZ_ENABLE_WAYLAND=1 org.mozilla.firefox |
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
#! /bin/bash | |
# Refer to https://www.reddit.com/r/linuxquestions/comments/pyjh19/keyboard_layout_problem_kde_plasma_steam/ | |
# Layout is 0-indexed, so Layout 1 is the second layout configured in KDE Settings keyboard layout list | |
sleep 5 | |
qdbus org.kde.keyboard /Layouts setLayout 1 |
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
#! /bin/bash | |
# Run this inside an existing Toolbox container to retrieve list of manually installed packages. Edit list to contain what you want installed by default in the new Toolbox. | |
dnf repoquery --userinstalled --disableexcludes=all --queryformat "%{name}" > packages.list |
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
[sambashare] | |
comment = Samba on Ubuntu | |
path = /home/username/sambashare | |
read only = no | |
browsable = yes |
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
; | |
; Netatalk 3.x configuration file | |
; http://netatalk.sourceforge.net/3.0/htmldocs/afp.conf.5.html | |
; | |
[Global] | |
; Global server settings | |
log file = /var/log/netatalk.log | |
; Raspberry Pi OS netatalk package doesn't come with uams_dhx.so, which is required for OS 9. Using Ubuntu Server's package. | |
uam list = uams_dhx.so,uams_dhx2.so |