Skip to content

Instantly share code, notes, and snippets.

@kb05
kb05 / karabiner.json
Last active February 4, 2021 22:10
Ubuntu like keyboard config
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": false,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
@kb05
kb05 / StopAllDocker.sh
Last active October 6, 2019 18:05
StopAllDocker
#!/bin/bash
sudo docker ps | cut -f 1 -d " " |tail -n +2 | xargs sudo docker stop
#sudo docker ps Get running docker containers
#Select only the id
#Ignore the first line ("Container")
#Pass to stop command each container