I want to screenshare my desktop with my cousin who lives out of town. What do I enter in the IP box to connect to his specific computer? The traditional 192.168.X.XXX won't work of course..I'm assuming I'll have to use his ISP IP with some type of string command to address his specific laptop..?
Home
/
user-88892
Matthew's questions
Possible Duplicate:
How to customize the context menu in Nautilus?
I'm trying to make a Mark as executable
command for the right click in nautilus for a faster work flow. I came up with this script:
#! /bin/bash
for file in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
gksudo "chmod +x $file" &
done
How do I get this to work though. I currently have a .sh
file and have no idea where to put it.