I started a really long process and would like to check it occasionally how it goes, but want to avoid interrupt it by mistake. Is there a way to set only this window "read only" ?
Asked
Active
Viewed 1,627 times
6
-
Not that I know of. You can always just minimize it. – Cole Tobin Aug 18 '12 at 06:13
1 Answers
10
The chacl command may be useful here: you need to remove write permission for all users at a window number N (0 in the example below):
<Ctrl-A>:chacl * -w 0<Enter>
where * means "for all connected users", -w for "remove write permission", 0 is the number of window being locked.
To restore write permissions:
<Ctrl-A>:chacl * +w 0<Enter>
Dmytro Sirenko
- 366