How to enable -keystroke option of unclutter in unity? The 2019 Stack Overflow Developer...
How do I add random spotting to the same face in cycles?
What LEGO pieces have "real-world" functionality?
Did the new image of black hole confirm the general theory of relativity?
How does ice melt when immersed in water?
When did F become S in typeography, and why?
What information about me do stores get via my credit card?
Am I ethically obligated to go into work on an off day if the reason is sudden?
Wall plug outlet change
Do warforged have souls?
Difference between "generating set" and free product?
Finding the path in a graph from A to B then back to A with a minimum of shared edges
First use of “packing” as in carrying a gun
What are these Gizmos at Izaña Atmospheric Research Center in Spain?
Who or what is the being for whom Being is a question for Heidegger?
What is this lever in Argentinian toilets?
Road tyres vs "Street" tyres for charity ride on MTB Tandem
What aspect of planet Earth must be changed to prevent the industrial revolution?
How to delete random line from file using Unix command?
What's the point in a preamp?
How to pronounce 1ターン?
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Does Parliament hold absolute power in the UK?
How should I replace vector<uint8_t>::const_iterator in an API?
Mortgage adviser recommends a longer term than necessary combined with overpayments
How to enable -keystroke option of unclutter in unity?
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)“Sticky key”-like bug, KeyPress/Release events repeat indefinitelyHow can I disable the sharing of one mouse between several X ServerLayouts?Cursor only moving horizontally on a macbook 6.2 with Ubuntu 12.04keystroke loss in Ubuntu 12.04How to fix an error relating to no keyboard input accepted in gnome desktop, though keycode shows scancodes?Black screen with keystroke historyKeystroke error in Unity after upgrade to 14.04Fn+F1 keystroke acts like Super+SCtrl modifier key not workingConfigure ubuntu to record every keystroke in every session
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
Recently I installed unclutter to hide the mouse pointer while I'm typing, since there is no option in Ubuntu 14.04 to hide mouse pointer. According to the man pages of unclutter ther is a option -keystroke that wait until a key has been pressed and hides the pointer. But my problem is that it doesn't work by running this command:
unclutter -keystroke &
Another hint in the man pages is that:
LIMITATIONS:
The -keystroke option may not work (that is, the cursor will not disappear) with
clients that request KeyRelease events. Games and Xt applications using KeyUp
in their translation tables are most likely to suffer from this problem. The
most feasible solution is to extend unclutter to use the XTest extension to get
all keyboard and mouse events, though this of course requires XTest to be in the
server too.
The -keystroke option does not distinguish modifier keys from keys which actu‐
ally generate characters. If desired this could be implemented in a simple way
by using XLookupString to see if any characters are returned.
I must tell that I wouldn't like a timer for hiding mouse when it's idle. I would like it work like the windows.
keyboard mouse autohide
add a comment |
Recently I installed unclutter to hide the mouse pointer while I'm typing, since there is no option in Ubuntu 14.04 to hide mouse pointer. According to the man pages of unclutter ther is a option -keystroke that wait until a key has been pressed and hides the pointer. But my problem is that it doesn't work by running this command:
unclutter -keystroke &
Another hint in the man pages is that:
LIMITATIONS:
The -keystroke option may not work (that is, the cursor will not disappear) with
clients that request KeyRelease events. Games and Xt applications using KeyUp
in their translation tables are most likely to suffer from this problem. The
most feasible solution is to extend unclutter to use the XTest extension to get
all keyboard and mouse events, though this of course requires XTest to be in the
server too.
The -keystroke option does not distinguish modifier keys from keys which actu‐
ally generate characters. If desired this could be implemented in a simple way
by using XLookupString to see if any characters are returned.
I must tell that I wouldn't like a timer for hiding mouse when it's idle. I would like it work like the windows.
keyboard mouse autohide
add a comment |
Recently I installed unclutter to hide the mouse pointer while I'm typing, since there is no option in Ubuntu 14.04 to hide mouse pointer. According to the man pages of unclutter ther is a option -keystroke that wait until a key has been pressed and hides the pointer. But my problem is that it doesn't work by running this command:
unclutter -keystroke &
Another hint in the man pages is that:
LIMITATIONS:
The -keystroke option may not work (that is, the cursor will not disappear) with
clients that request KeyRelease events. Games and Xt applications using KeyUp
in their translation tables are most likely to suffer from this problem. The
most feasible solution is to extend unclutter to use the XTest extension to get
all keyboard and mouse events, though this of course requires XTest to be in the
server too.
The -keystroke option does not distinguish modifier keys from keys which actu‐
ally generate characters. If desired this could be implemented in a simple way
by using XLookupString to see if any characters are returned.
I must tell that I wouldn't like a timer for hiding mouse when it's idle. I would like it work like the windows.
keyboard mouse autohide
Recently I installed unclutter to hide the mouse pointer while I'm typing, since there is no option in Ubuntu 14.04 to hide mouse pointer. According to the man pages of unclutter ther is a option -keystroke that wait until a key has been pressed and hides the pointer. But my problem is that it doesn't work by running this command:
unclutter -keystroke &
Another hint in the man pages is that:
LIMITATIONS:
The -keystroke option may not work (that is, the cursor will not disappear) with
clients that request KeyRelease events. Games and Xt applications using KeyUp
in their translation tables are most likely to suffer from this problem. The
most feasible solution is to extend unclutter to use the XTest extension to get
all keyboard and mouse events, though this of course requires XTest to be in the
server too.
The -keystroke option does not distinguish modifier keys from keys which actu‐
ally generate characters. If desired this could be implemented in a simple way
by using XLookupString to see if any characters are returned.
I must tell that I wouldn't like a timer for hiding mouse when it's idle. I would like it work like the windows.
keyboard mouse autohide
keyboard mouse autohide
asked Oct 3 '15 at 19:09
sh2psh2p
7010
7010
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use xbanish
to do this. It is well known that the unclutter
keystroke function has been broken for quite some time. I have tested this solution and it works well.
First, install git
if it's not already installed:
sudo apt-get update
sudo apt-get install git build-essential libxtst-dev x11proto-core-dev
Then, clone the repo and install xbanish
:
cd
git clone https://github.com/jcs/xbanish.git
cd xbanish
make
Now, set an alias
for xbanish
:
echo "alias xbanish='~/xbanish/xbanish &'" | tee -a ~/.bashrc
. ~/.bashrc
You can now run xbanish by simply running the following command:
xbanish
or
~/xbanish/xbanish &
Additionally, here's a helpful tip that has helped me so much when it comes to "no such file" errors.
You can use apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it:
sudo apt-get install apt-file
and then run:
sudo apt-file update
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file/usr/include/X11/X.h
. Run the following commands to installx11proto-core-dev
. Then, run:sudo make clean
before you runmake
. Please post any more errors, thanks!
– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can useapt-file search
to find out what package contains a file you are looking for. Here's an example:apt-file search X11/X.h
. However,apt-file
needs to be installed and you must runsudo apt-file update
before you can use it:sudo apt-get install apt-file
and then run:sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f681214%2fhow-to-enable-keystroke-option-of-unclutter-in-unity%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use xbanish
to do this. It is well known that the unclutter
keystroke function has been broken for quite some time. I have tested this solution and it works well.
First, install git
if it's not already installed:
sudo apt-get update
sudo apt-get install git build-essential libxtst-dev x11proto-core-dev
Then, clone the repo and install xbanish
:
cd
git clone https://github.com/jcs/xbanish.git
cd xbanish
make
Now, set an alias
for xbanish
:
echo "alias xbanish='~/xbanish/xbanish &'" | tee -a ~/.bashrc
. ~/.bashrc
You can now run xbanish by simply running the following command:
xbanish
or
~/xbanish/xbanish &
Additionally, here's a helpful tip that has helped me so much when it comes to "no such file" errors.
You can use apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it:
sudo apt-get install apt-file
and then run:
sudo apt-file update
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file/usr/include/X11/X.h
. Run the following commands to installx11proto-core-dev
. Then, run:sudo make clean
before you runmake
. Please post any more errors, thanks!
– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can useapt-file search
to find out what package contains a file you are looking for. Here's an example:apt-file search X11/X.h
. However,apt-file
needs to be installed and you must runsudo apt-file update
before you can use it:sudo apt-get install apt-file
and then run:sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
add a comment |
You can use xbanish
to do this. It is well known that the unclutter
keystroke function has been broken for quite some time. I have tested this solution and it works well.
First, install git
if it's not already installed:
sudo apt-get update
sudo apt-get install git build-essential libxtst-dev x11proto-core-dev
Then, clone the repo and install xbanish
:
cd
git clone https://github.com/jcs/xbanish.git
cd xbanish
make
Now, set an alias
for xbanish
:
echo "alias xbanish='~/xbanish/xbanish &'" | tee -a ~/.bashrc
. ~/.bashrc
You can now run xbanish by simply running the following command:
xbanish
or
~/xbanish/xbanish &
Additionally, here's a helpful tip that has helped me so much when it comes to "no such file" errors.
You can use apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it:
sudo apt-get install apt-file
and then run:
sudo apt-file update
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file/usr/include/X11/X.h
. Run the following commands to installx11proto-core-dev
. Then, run:sudo make clean
before you runmake
. Please post any more errors, thanks!
– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can useapt-file search
to find out what package contains a file you are looking for. Here's an example:apt-file search X11/X.h
. However,apt-file
needs to be installed and you must runsudo apt-file update
before you can use it:sudo apt-get install apt-file
and then run:sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
add a comment |
You can use xbanish
to do this. It is well known that the unclutter
keystroke function has been broken for quite some time. I have tested this solution and it works well.
First, install git
if it's not already installed:
sudo apt-get update
sudo apt-get install git build-essential libxtst-dev x11proto-core-dev
Then, clone the repo and install xbanish
:
cd
git clone https://github.com/jcs/xbanish.git
cd xbanish
make
Now, set an alias
for xbanish
:
echo "alias xbanish='~/xbanish/xbanish &'" | tee -a ~/.bashrc
. ~/.bashrc
You can now run xbanish by simply running the following command:
xbanish
or
~/xbanish/xbanish &
Additionally, here's a helpful tip that has helped me so much when it comes to "no such file" errors.
You can use apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it:
sudo apt-get install apt-file
and then run:
sudo apt-file update
You can use xbanish
to do this. It is well known that the unclutter
keystroke function has been broken for quite some time. I have tested this solution and it works well.
First, install git
if it's not already installed:
sudo apt-get update
sudo apt-get install git build-essential libxtst-dev x11proto-core-dev
Then, clone the repo and install xbanish
:
cd
git clone https://github.com/jcs/xbanish.git
cd xbanish
make
Now, set an alias
for xbanish
:
echo "alias xbanish='~/xbanish/xbanish &'" | tee -a ~/.bashrc
. ~/.bashrc
You can now run xbanish by simply running the following command:
xbanish
or
~/xbanish/xbanish &
Additionally, here's a helpful tip that has helped me so much when it comes to "no such file" errors.
You can use apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it:
sudo apt-get install apt-file
and then run:
sudo apt-file update
edited 3 mins ago
answered Oct 4 '15 at 9:24
mchidmchid
23.7k25287
23.7k25287
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file/usr/include/X11/X.h
. Run the following commands to installx11proto-core-dev
. Then, run:sudo make clean
before you runmake
. Please post any more errors, thanks!
– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can useapt-file search
to find out what package contains a file you are looking for. Here's an example:apt-file search X11/X.h
. However,apt-file
needs to be installed and you must runsudo apt-file update
before you can use it:sudo apt-get install apt-file
and then run:sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
add a comment |
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file/usr/include/X11/X.h
. Run the following commands to installx11proto-core-dev
. Then, run:sudo make clean
before you runmake
. Please post any more errors, thanks!
– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can useapt-file search
to find out what package contains a file you are looking for. Here's an example:apt-file search X11/X.h
. However,apt-file
needs to be installed and you must runsudo apt-file update
before you can use it:sudo apt-get install apt-file
and then run:sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
I get the following error when I run the make command. I also tried sudo make but the same error: sajad@LoneWalker:~/xbanish$ make cc -O2 -Wall -Wunused -Wmissing-prototypes -Wstrict-prototypes -I/usr/X11R6/include -c xbanish.c -o xbanish.o xbanish.c:35:19: fatal error: X11/X.h: No such file or directory #include <X11/X.h> ^ compilation terminated. make: *** [xbanish.o] Error 1
– sh2p
Oct 7 '15 at 22:17
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file
/usr/include/X11/X.h
. Run the following commands to install x11proto-core-dev
. Then, run: sudo make clean
before you run make
. Please post any more errors, thanks!– mchid
Oct 8 '15 at 3:10
@sh2p Fortunately, this is quite easy to fix. It appears you are missing the file
/usr/include/X11/X.h
. Run the following commands to install x11proto-core-dev
. Then, run: sudo make clean
before you run make
. Please post any more errors, thanks!– mchid
Oct 8 '15 at 3:10
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can use
apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
. However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it: sudo apt-get install apt-file
and then run: sudo apt-file update
– mchid
Oct 8 '15 at 3:25
@sh2p Also, here's a helpful tip that has helped me so much when it comes to no such file errors. You can use
apt-file search
to find out what package contains a file you are looking for. Here's an example: apt-file search X11/X.h
. However, apt-file
needs to be installed and you must run sudo apt-file update
before you can use it: sudo apt-get install apt-file
and then run: sudo apt-file update
– mchid
Oct 8 '15 at 3:25
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
Thanks for your help @mchid After installing 4 packages, and adding alias for xbanish it worked correctly. Please edit the first comment where u wrote x11proto-core-dev, it must be sudo apt-get install blah blah... actually the second comment was more helpful and made my life easier! Thanks a lot.
– sh2p
Oct 8 '15 at 18:02
1
1
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
I had to install the libxtst-dev package to have Xfixes.h.
– Damien
yesterday
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f681214%2fhow-to-enable-keystroke-option-of-unclutter-in-unity%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown