Skip to content

Instantly share code, notes, and snippets.

@wojtekadams
wojtekadams / stop-all-docker.md
Created September 12, 2025 11:25 — forked from atomkirk/stop-all-docker.md
Stop all Docker containers

I will often run this command to make sure all my docker containers are stopped and removed before running docker-compose up. Sometimes when you restart your system, old containers will start back up automatically in the background.

docker stop $(docker ps -aq) && docker rm $(docker ps -aq)
@wojtekadams
wojtekadams / kde-konsole-tab-colours.css
Last active February 13, 2018 11:46 — forked from codemedic/konsole-with-palette-colours.css
CSS for KDE Konsole minimal, lighter, dark tabs
QTabBar,
QTabBar::tab
{
/* font-size: 11px;*/
/* height: 16px; */
padding: 2px;
border: 0px;
border-bottom: 3px solid palette(dark);
background-color: palette(dark);
color: palette(text);