mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
13 lines
189 B
Bash
Executable File
13 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo $(dirname $(readlink -f "$0"))
|
|
|
|
i3bar_update=$(dirname $(readlink -f "$0"))/load-i3-bars.sh
|
|
|
|
xrandr "$@"
|
|
|
|
if [ -f $i3bar_update ]; then
|
|
sleep 1
|
|
$i3bar_update
|
|
fi
|