diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-01-03 13:37:14 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-01-03 13:37:14 +0100 |
commit | b7d783b2ba582e46e8c9f54f345b73aa9ebd9b35 (patch) | |
tree | 6da30ec6b7760fcc1f57a58dde8ed43c0e976b6a /bin | |
parent | 2bcc14f9a064583fb6a7a3c057b3fe7a52ef38e8 (diff) |
split intro into launcher and actual sequence script
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/wmintro | 20 | ||||
-rwxr-xr-x | bin/wmsequence | 10 |
2 files changed, 12 insertions, 18 deletions
diff --git a/bin/wmintro b/bin/wmintro index ccae719..5039df3 100755 --- a/bin/wmintro +++ b/bin/wmintro @@ -1,29 +1,13 @@ #! /bin/bash -#### bspc monitor 1 -f sleep 1 -#### -WINIT_X11_SCALE_FACTOR=1.0 alacritty & -sleep 1 -WINIT_X11_SCALE_FACTOR=1.0 alacritty -e tty-clock -srDB & -sleep 1 -WINIT_X11_SCALE_FACTOR=1.0 alacritty -e sh -c 'cava | lolcat' & -sleep 1 +~/bin/wmsequence -#### bspc monitor 2 -f sleep 1 -#### -WINIT_X11_SCALE_FACTOR=1.0 alacritty & -sleep 1 -WINIT_X11_SCALE_FACTOR=1.0 alacritty -e tty-clock -srDB & -sleep 1 -WINIT_X11_SCALE_FACTOR=1.0 alacritty -e sh -c 'cava | lolcat' & -sleep 1 +~/bin/wmsequence -#### cvlc ~/.wmintro_audio -#### diff --git a/bin/wmsequence b/bin/wmsequence new file mode 100755 index 0000000..f4790d3 --- /dev/null +++ b/bin/wmsequence @@ -0,0 +1,10 @@ +#! /bin/bash + +WINIT_X11_SCALE_FACTOR=1.0 alacritty & +sleep 1 + +WINIT_X11_SCALE_FACTOR=1.0 alacritty -e tty-clock -srDB & +sleep 1 + +WINIT_X11_SCALE_FACTOR=1.0 alacritty -e sh -c 'cava | lolcat' & +sleep 1 |