mirror of
https://github.com/morgant/mlvwmrc.git
synced 2025-04-20 21:37:27 +00:00
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# mlvwm-restart - Restart MLVWM by sending it a restart key code
|
||
|
#
|
||
|
# Assumes that your ~/.mlvwmrc contains the following:
|
||
|
#
|
||
|
# ShortCut
|
||
|
# Escape M Restart mlvwm
|
||
|
# END
|
||
|
|
||
|
xdotool key --window root --clearmodifiers alt+Escape
|