Skip to content

Instantly share code, notes, and snippets.

View philippgerard's full-sized avatar
🎯
Focusing

Philipp C. Gérard philippgerard

🎯
Focusing
  • Berlin, Germany
View GitHub Profile
@NuxRo
NuxRo / msteams.lua
Created March 13, 2020 13:46
Apply Windows Decorations to Microsoft Teams
-- MS Teams on Linux doesn't show the window decorations, let's fix that
-- drop this in your devilspie2 folder, typically ~/.config/devilspie2 and start devilspie2
if string.match(get_window_name(), "Microsoft Teams") then
decorate_window();
end
@JeffBelback
JeffBelback / docker-destroy-all.sh
Last active May 25, 2024 20:19
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