Skip to content

Instantly share code, notes, and snippets.

@FriendlyNeighborhoodShane
FriendlyNeighborhoodShane / kiss-rmdeps
Last active October 18, 2022 01:25
Recursive package dependency removal tool for kisslinux
#!/bin/sh -e
# Interactively and recursively remove packages with dependencies
# Check if terminal is interactive
[ -t 1 ] || {
echo "error: launched in non-interactive environment";
exit 1;
}
# Check if all given packages are installed
@agarie
agarie / xmonad.md
Last active September 23, 2021 09:05
XMonad cheatsheet, resources, etc.

xmonad

Shortcuts

  • Mod + Shift + Enter -> Open console
  • Mod + Space -> Change tiling mode
  • Mod + j & Mod + k -> Move focus between windows
  • Mod + Shift + c -> Close the focused window
  • Mod + . & Mod + , -> Control the number of windows displayed in the master pane on the left
  • Mod + Enter -> Move the focused window to the master pane on the left