39 lines
563 B
Bash
Executable File
39 lines
563 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CURRENT_MONITOR_CONFIG=${1:-7}
|
|
|
|
case "${CURRENT_MONITOR_CONFIG}" in
|
|
1)
|
|
echo "1"
|
|
$HOME/.screenlayout/one.sh
|
|
;;
|
|
2)
|
|
echo "2"
|
|
$HOME/.screenlayout/two.sh
|
|
;;
|
|
3)
|
|
echo "3"
|
|
$HOME/.screenlayout/three.sh
|
|
;;
|
|
4)
|
|
echo "4"
|
|
$HOME/.screenlayout/four.sh
|
|
;;
|
|
5)
|
|
echo "5"
|
|
$HOME/.screenlayout/five.sh
|
|
;;
|
|
6)
|
|
echo "6"
|
|
$HOME/.screenlayout/six.sh
|
|
;;
|
|
7)
|
|
echo "7"
|
|
$HOME/.screenlayout/seven.sh
|
|
;;
|
|
esac
|
|
|
|
$HOME/.config/picom/launch.sh
|
|
$HOME/.config/bspwm/bspwmrc $CURRENT_MONITOR_CONFIG
|
|
$HOME/.config/nitrogen/randomize-wallpaper.sh
|