- 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |