Articles
- Disable GNU Screen Flash

The feature is called “visual bell”. Create or edit a ~/.screenrc file. vbell_msg “bell: window ~%” – Message for visual bell vbellwait 2 – Seconds to pause the screen for visual bell vbell off – Turns visual bell off The settings will take place as soon as you detach/reattach your session, providing it’s in the [...]

No comments

- Inject things into a screen session

Say you have a screen session running and you want to have a bash script access and run a command, you can do it with this. #!/bin/sh screen -S minecraft -p 0 -X stuff “`printf “say This is a test.\r”`”; This injects the command “say This is a test” to the screen called minecraft. Found [...]

No comments