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 | |
# 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 |
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
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 |