docker ps -a -q | xargs -n 1 -P 8 -I {} docker stop {}
docker ps -a -q | xargs -n 1 -P 8 -I {} docker rm {}
docker system prune -a && docker system prune -a --volumes
| #!/bin/bash | |
| # Removes old revisions of snaps | |
| # CLOSE ALL SNAPS BEFORE RUNNING THIS | |
| set -eu | |
| LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' | | |
| while read snapname revision; do | |
| snap remove "$snapname" --revision="$revision" | |
| done |
| foreground #e1e1e6 | |
| background #191622 | |
| selection_foreground #44475a | |
| selection_background #f8f8f2 | |
| url_color #ffb86c | |
| # black | |
| color0 #000000 | |
| color8 #4d4d4d |
| # vim:fileencoding=utf-8:ft=conf:foldmethod=marker | |
| #: Fonts {{{ | |
| #: kitty has very powerful font management. You can configure | |
| #: individual font faces and even specify special fonts for particular | |
| #: characters. | |
| font_family Fira Code | |
| # bold_font auto |
| git config credential.helper store |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export ANDROID_HOME=~/Android/Sdk | |
| export PATH="$PATH:$ANDROID_HOME/tools" | |
| export PATH="$PATH:$ANDROID_HOME/platform-tools" | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/home/sidneyspe/.oh-my-zsh" |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations] | |
| ".tif"="PhotoViewer.FileAssoc.Tiff" | |
| ".tiff"="PhotoViewer.FileAssoc.Tiff" | |
| ".bmp"="PhotoViewer.FileAssoc.Tiff" | |
| ".gif"="PhotoViewer.FileAssoc.Tiff" | |
| ".jpeg"="PhotoViewer.FileAssoc.Tiff" | |
| ".jpg"="PhotoViewer.FileAssoc.Tiff" | |
| ".png"="PhotoViewer.FileAssoc.Tiff" |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
| @="Open Cmder Here" | |
| "Icon"="\"%CMDER_ROOT%\\icons\\cmder.ico\",0" | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder\command] | |
| @="\"%CMDER_ROOT%\\Cmder.exe\" /START \"%v\"" |
| <?xml version="1.0" encoding="utf-8"?> | |
| <key name="Software"> | |
| <key name="ConEmu"> | |
| <key name=".Vanilla" modified="2021-10-04 11:30:41" build="210912"> | |
| <value name="Language" type="string" data="en"/> | |
| <value name="StartType" type="hex" data="02"/> | |
| <value name="CmdLine" type="string" data=""/> | |
| <value name="StartTasksFile" type="string" data=""/> | |
| <value name="StartTasksName" type="string" data="{git bash}"/> | |
| <value name="StartFarFolders" type="hex" data="00"/> |