The input tag has no wiki summary.
0
votes
2answers
64 views
Shell script how to read input from a file
I need to read input from a file given in following format.
$ ./process_data.sh arg1 < input_data.txt
How do I read input_data in my shell script process_data.sh?
Thanks,
3
votes
4answers
160 views
Get input from editor (vim/nano/emacs/textmate?)
I was just curious if there's a way to get input not from StdIn but from $EDITOR - be it vim, nano, emacs or even a non-command-line-editor (MacVim/TextMate). What are the ...
5
votes
2answers
104 views
how to deal with keyboard-greedy apps
I'm having a very specific problem, however any help will aid in understanding X's relationship to the keyboard.
I'd like to be able to launch the ElectricSheep program on top of music playing from ...
2
votes
1answer
61 views
Sending some input into a process, then resuming input from command line
I have an interactive terminal program, that accepts stdin (telnet for example).
I want to send it some input before interacting with it, like this:
echo "Hello" | telnet somewhere 123
But that ...
0
votes
2answers
438 views
How to directly read keyboard input in real-time?
I am not certain if this is ultimately the correct place to ask this but... I am developing a program which requires real-time input from the user. That is; it needs to be able to read the keys being ...
2
votes
1answer
131 views
How can I make C-m1 emulate a right click?
On Mac OS X, you can right click by holding down control and clicking. I swapped the command and control keys with setxkbmap -option altwin:ctrl_win, but how do I make it right click by holding down ...
5
votes
2answers
413 views
How do mouse events work in linux?
This is mostly out of curiosity, I'm trying to understand how event handling works
on a low level, so please don't reference me to a software that'll do it for me.
If for example I want to write a ...
3
votes
1answer
123 views
Fetching user input while running in the background
I am writing a script that prompts the user for input and does some processing afterwards. I was using read to get the data, but then I noticed that when the script is ran with a keyboard shortcut (I ...
2
votes
1answer
31 views
Directing Xorg input to selected application
I'm trying to play Frets on Fire using my PS3 Guitar Hero III controller. It works right away, but it's also controlling the cursor as if it's a mouse. I'd like to play the game windowed, but that's ...
4
votes
2answers
282 views
Multitouch support on KDE
On Ubuntu there is an app called ginn which forces non-multitouch aware apps to support multitouch. (source)
Is there any analogue for the KDE Desktop Environment?
5
votes
1answer
265 views
Dual head configuration with two touchscreens in Linux
As a part of my current project I need to set up a Linux-based workstation with two monitors, both of which are multitouch-enabled (ViewSonic VX2258wm, Quanta touch panel). So, naturally, I set up a ...
6
votes
0answers
190 views
barcode scanner input when running xorg and evdev
When I scan a barcode in a text console (CTRL+ALT+F1 or not running X) I get the correct input, but when I try with an application running on X, I don't get the correct barcode.
The scanner is ...
2
votes
1answer
264 views
Apple Magic Trackpad resets settings after session
I was able to get the Apple Magic Trackpad working on Fedora 15 KDE 4.6. (I previously got it working on Linux Mint.)
However, the settings -- particularly activating the single-finger left click and ...
9
votes
5answers
1k views
Disable Keyboard & Mouse input on unix (under X)
How can one programmatically "freeze" the Keyboard & Mouse temporarily, so that no one could mess with the system?
There are several possibilities where this is useful. For instance, I have a ...
2
votes
2answers
64 views
SED misbehaving with input file
Simply put I have a small sed command that is supposed to trim " and wrap the input between the <id> tag. It goes well single line and multiple line input, but badly misbehaves on an input file ...