Skip to content

Instantly share code, notes, and snippets.

@srithon
srithon / kde-qdbus.org
Last active June 30, 2024 21:48
A list of all the KDE-related DBus commands on my machine

This document was generated by running the following script

#!/bin/fish

for service in (qdbus "org.kde.*")
  echo "* $service"

  for path in (qdbus "$service")
    echo "** $path"
@weex
weex / mastodon-docker-setup.md
Last active November 5, 2023 20:39 — forked from aeble/mastodon-docker-setup.md
Ecko Docker Setup

Ecko Docker Setup

Setting up

Clone Ecko's repository.

# Clone Ecko to ~/ecko directory
git clone https://github.com/magicstone-dev/ecko.git
# Change directory to ~/ecko

cd ~/ecko

@digitalsignalperson
digitalsignalperson / lxd-common
Created September 12, 2023 00:32
arch linux LXD stuff
_source() {
source ${BASE_DIR}/lxd/lxd-common
}
#======================
# General VM functions
vm_bash() {
lxc exec "$VMNAME" -- bash "$@"