[arch-general] Cinnamon desktop and keybindings

2017-08-28 Thread Jeanette C. via arch-general

Hey hey,
I've started trying Cinnamon as a desktop. Since I'm blind, I rely on the 
keyboard shortcuts. The standard keybindings doesn't appear to give me much 
access though.


Using gsettings I've identified a few Cinnamon related schemas. Though not all 
of them are taking effect. I've read about some keybinding and customisation 
issues online. So...
Which keybinding schemas have a real effect on the environment? Is there 
perhaps a configuration for keyboard access to Cinnamon, without media-keys 
(those special keys some keyboards have)?


Any practical advise on this is very much appreciated.

Thank you and best wishes,

Jeanette


* website: http://juliencoder.de - for summer is a state of sound
* SoundCloud: https://soundcloud.com/jeanette_c

Where are you now, what have you found
Where is your heart, when I'm not around <3
(Britney Spears)


[arch-general] DNSmasq forward caching to local

2017-08-28 Thread Maykel Franco via arch-general
Hello, I'm building a dnsmasq in place to cache the
DNS requests from a foreign DNS server.

The idea is, my computer makes a DNS request that is not registered
In my local Dnsmasq, but it does a forward and sends it to the DNS server
(Mentioned above). So, that the next time I come back
To consult that DNS address, and have it cached and do not need
Request it from the outside DNS server.

I have this configuration:

listen-address=127.0.0.1
port=53
bind-interfaces
user=dnsmasq
log-facility=/var/log/dnsmasq.log
log-queries
dns-forward-max=150
cache-size=150
server=192.168.0.33


But in the logs I see, I do not cache anything in the local, which
always goes to
Ask the DNS entries to the server 192.168.0.33:

Dnsmasq [5067]: query [A] www.google.es from 127.0.0.1
Dnsmasq [5067]: forwarded www.google.com to 192.168.0.33

What am I doing wrong?? I'm looking at information but I can not find
anything ...