Skip to content

Instantly share code, notes, and snippets.

@egdoc
egdoc / gist:753d3c934f5892a32a29de916fbce8b1
Created May 3, 2024 20:38
Set user avatar using dbus
dbus-send --system --print-reply \
--dest=org.freedesktop.Accounts \
/org/freedesktop/Accounts/User1000 \
org.freedesktop.Accounts.User.SetIconFile string:/path/to/image.jpg
@egdoc
egdoc / textbox_shortcode.php
Last active July 8, 2024 08:44
Linuxconfig wordpress textbox shortcode
<?php
function linuxconfig_textbox( $atts, $content = null ) {
$defaults = array(
"title" => "This is the box title",
"type" => "warning"
);
$parsed_atts = shortcode_atts( $defaults, $atts );
if ( ! in_array( $parsed_atts['type'], array( "warning", "success", "danger" ) ) ) {