Bash
1. Arguments
2. Some Scripts
2.1. Modify the brightness of Arch Linux
Put a number into /sys/class/backlight/intel_backlight/brightness
represent
the brightness. The max number of brightness is denoted in file
/sys/class/backlight/intel_backlight/max_brightness
.
1 | #!/bin/bash |
2.2. run tmux only open a terminal
Add this to the .bashrc
.
1 | # Note: the spaces after the [ and before the ] are necessary. |
Gitalking ...