Skip to content

Instantly share code, notes, and snippets.

View diffficult's full-sized avatar
💽
the big switcharoo

reese diffficult

💽
the big switcharoo
View GitHub Profile
@diffficult
diffficult / addthisto_i3config.conf
Last active September 4, 2021 00:01
i3 scrot menu
# Screenshot Menu
set $maimode "[S]crot . scrot&[U]pload . scrot2[C]lipboard . scrot[A]rea"
bindsym $mod+Shift+Print mode $maimode
mode $maimode {
bindsym s exec --no-startup-id "mkdir -p ~/Pictures/Screenshots && maim -m 10 ~/Pictures/Screenshots/scrot-$(date +%Y-%m-%d_%H-%M-%S).png", mode "default"
bindsym u exec --no-startup-id "mkdir -p ~/Pictures/Screenshots && maim -m 10 -s ~/Pictures/Screenshots/upload.png && imgur ~/Pictures/Screenshots/upload.png", mode "default"
bindsym c exec --no-startup-id "mkdir -p ~/Pictures/Screenshots && maim -m 10 -s | xclip -selection clipboard -t", mode "default"
bindsym a exec --no-startup-id "mkdir -p ~/Pictures/Screenshots && maim | maim -m 10 -s ~/Pictures/Screenshots/cropped-$(date +%Y-%m-%d_%H-%M-%S).png", mode "default"
bindsym Return mode "default"
bindsym Escape mode "default"
@diffficult
diffficult / installing_virt_manager.md
Last active March 23, 2025 10:51
Easy instructions to get virt-manager qemuv/kvm running on Arch

Easy instructions to get QEMU/KVM and virt-manager up and running on Arch

  1. Make sure your cpu support kvm with below command:

     grep -E "(vmx|svm)" --color=always /proc/cpuinfo
    
  2. Make sure BIOS have enable “Virtualization Technology”.

  3. User access to /dev/kvm so add your account into kvm(78) group:

@diffficult
diffficult / gist:ac00c706dda17f114a1f243af4667700
Created April 4, 2018 23:21 — forked from fabiofl/gist:5873100
Clear Mac OS X's icon cache.
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \;
@diffficult
diffficult / statusgit
Created May 16, 2018 02:19 — forked from armeenm/statusgit
Update all git repositories recursively.
#!/bin/bash
declare -a COLORS
j=0
# Default colors are light for dark terminals.
# Use '-l' option for normal (darker) text.
# Red, green, yellow, blue, magenta, cyan.
for i in {91..96}; do COLORS[$j]=$i; let "j++"; done
usage() {
@diffficult
diffficult / tweaks_x220.md
Last active January 8, 2024 22:10
Thinkpad x220 General Tweaks

Thinkpad x220 general

Power settings (powertop+tlp)

powertop setup

  1. Install powertop
sudo pacman -S powertop
@diffficult
diffficult / try_to_fix_[drm_kms_helper]_in_english.md
Created October 30, 2018 15:55 — forked from i0z0m/[drm_kms_helper]-flip_done-timed-out.md
[drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [CRTC:37:pipe A] flip_done timed out.

a symptom

I am the Japanese and not good at writng English. I'm sorry to my language ability for you.
I sometimes get the following error when logging out of Xorg. It's a little different to [xf86-video-intel] flip_done timed out, but it's similar.
[drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] ERROR [CRTC:37:pipe A] flip_done timed out.

Using the video=SVIDEO-1:d kernel parameter doesn't work for me.
I'm running Arch Linux (4.17.2-1) on my laptop ThinkPad X220 with xf86-video-intel (my CPU is an i5-2540M).

$ dmesg
$ hwinfo

@diffficult
diffficult / hikvision_rtsp.md
Last active December 22, 2021 22:24
Hik Vision RTSP feeds

Live View URL

rtsp://<address>:<port>/Streaming/Channels/<id>/

rtsp://<username>:<password>@<address>:<port>/Streaming/Channels/<id>/

Where <address> is the IP address of your camera, <port> is the RTSP port of the camera, and <username> and <password> refer to the login credentials of your camera.

@diffficult
diffficult / raspberrypi0_headless_setup.md
Last active March 25, 2025 22:20
Get your Pi 0 W up and running headless with Arch Linux

Installing Arch Linux ARM on a SD card for Raspberry Pi 0 W and loading wifi credentials for headless usage


Advice

Before starting I highly suggest you create a new directory on your /home/user directory with an appropiate name for this task like rpi0alarm so you can change directory to /home/user/rpi0alarm and go through the following steps.

As I wrote this guide after collecting info from different sources (listed at the end) be mindful of your current path and the commands you are running to not damage your current installation on the host computer you are creating the SD Card.


@diffficult
diffficult / docker-cleanup-resources.md
Created February 18, 2019 15:34 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm

@diffficult
diffficult / move_install_to_encrypted_disk.md
Created April 21, 2019 00:47
Move Arch install to Encrypted Disk

Hi, guys.

Thanks to this guide and Arch Wiki I was able to move my existing Arch installation to an encrypted SDD.

Step 1: Preparing new disk drive (UEFI/GPT)

parted /dev/sdX

To create a new EFI System Partition, use the following commands (a size of 512MiB is suggested):