Skip to content

Instantly share code, notes, and snippets.

Goal: find a Linux alternative to FancyZones for Windows

Name Recommended Type Supports main colum Supports layouts Multiple windows in same tile Windows can span multiple zones Notes
gSnap 👍👍 Gnome extension yes yes yes yes Can be configured almost just like FancyZones; in the settings:
  • disable Show tabs
  • enable Hold CTRL to snap windows
gTile Gnome extension no?
Tiling Assistant 👍 Gnome extension yes yes yes yes Layout support is "experimental" and the UX is a bit unintuitive; after enabling layouts, you have to click the star icon beside a layout to mark it as a favourite before you can then hold Alt while dragging
@maxmorozoff
maxmorozoff / .eslintrc
Created May 30, 2023 18:19 — forked from CryogenicPlanet/.eslintrc
Typescript Mono Repo Guide
// .eslintrc
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"react-app",
"plugin:react/recommended",
@maxmorozoff
maxmorozoff / dood.sh
Created August 2, 2022 22:37 — forked from leoluz/dood.sh
docker-out-of-docker (DooD)
# Starts a docker container with the hosts docker daemon for doing docker tests
# https://asciinema.org/a/137139
docker run --rm --privileged -v /var/run/docker.sock:/var/run/docker.sock -it docker /bin/sh
@maxmorozoff
maxmorozoff / google-chrome-enable-dark-mode.sh
Created January 31, 2022 14:34
Enable dark mode in google chrome.
#!/bin/bash
# Enable dark mode in google chrome
sudo sed '/^Exec=/ s/$/ --enable-features=WebUIDarkMode --force-dark-mode/' -i \
/usr/share/applications/google-chrome.desktop