Skip to content

Instantly share code, notes, and snippets.

View julienchastang's full-sized avatar
🦉

Julien Chastang julienchastang

🦉
View GitHub Profile
@JeffBelback
JeffBelback / docker-destroy-all.sh
Last active December 12, 2023 17:47
Destroy all Docker Containers and Images
#!/bin/bash
# Stop all containers
containers=`docker ps -a -q`
if [ -n "$containers" ] ; then
docker stop $containers
fi
# Delete all containers
containers=`docker ps -a -q`
if [ -n "$containers" ]; then
docker rm -f -v $containers
using XQuartz (2.6.0), you have to clear Mod1 in order for the Super and Alt keys to take effect. This configuration requires that "Option keys send Alt_L and Alt_R" checkbox is set in Preferences.
clear Mod1
clear Mod4
clear Mod2
keycode 66 = Alt_L
keycode 63 = Super_L
add Mod2 = Alt_L
add Mod4 = Super_L