0
votes
0answers
15 views
conky attempt to call nil value
I've been tweaking my conky config and getting the error
conky: llua_do_call: function conky_cpu execution failed: attempt to call a nil value
The function conky_cpu resides in ~/.conky_cpu.lua. ...
1
vote
0answers
22 views
Awesome wm wibox visible just in one tag
I want to leave visible wibox1 only one of my tags.
I try use this code:
your_tag:add_signal("property:selected", function(tag)
your_wibox.visible = tag.selected
end)
But no have success.
...
0
votes
0answers
13 views
Unable to correctly install Torch7
./install-deps
apt-get install lua5.1
apt-get install luajit
./install.sh
./test.sh
Using Lua at:
/usr/bin/luajit
/usr/bin/luajit: module 'paths' not found:
no field package.preload['paths']
...
1
vote
1answer
25 views
Why Lapis does not work?
I have installed Lapis framework using command:
luarocks install lapis --local
It gave me success installation:
Updating manifest for /home/Oman/.luarocks/lib/luarocks/rocks
lapis 1.5.0-2 is now ...
0
votes
1answer
117 views
Ubuntu, lua, nmap and sqlite3 - module 'luasql.sqlite3' not found
I need to work with nmap and sqlite3 and I installed lua 5.1 and lua-sql-sqlite3 on an ubuntu machine:
sudo apt-get install lua5.1; sudo apt-get install lua-sql-sqlite3
Now, when I'm doing this:
$ ...
-2
votes
1answer
94 views
What is the Lua language used in Conky script?
I've been experimenting with Linux on a spare PC using Crunchbang so that I can try changing things and tinker. The Conky system monitor is fun to work with and changes are immediately seen, so it's a ...
0
votes
0answers
27 views
LUA Script syntax
I wrote under suggestion a LUA script
clearDS()
addDS(".", "IN DNSKEY 257 3 8 AwEAAaP3gGQ4db0tAiDEky0dcUNGeI1aTDYP5NFxzhbdpD60ZhKLVV4KyxPmoSNUpq5Fv5M0iBwK1Tyswsyq/...
0
votes
0answers
50 views
Luakit questions
I used firefox before I tried conkeror which brought me to luakit and it's great !
I like conkeror but it is really buggy, it always crash after 10min navigation and some buffers opened.
Luakit seems ...
2
votes
1answer
194 views
Can a wibox in Awesome-WM be setup vertically?
I use the venerable Awesome WM to manage tiled window layouts across a couple of screens. My configuration has a few goodies, but in general it follows a familiar pattern with a bar across the top ...
2
votes
1answer
38 views
Disable text on tags in awesomeWM?
The current awesomewm theme that I am using has small icons to manage the tags, as opposed to the traditional numbers. How can I disable the numbers from displaying over top of my icons?
2
votes
1answer
176 views
Run Lua commands in Awesome window manager
I need to have network widget in my Awesome manager. When I placed in very bottom of rc.lua line
awful.util.spawn("nm-applet")
my Awesome was not starting until I have removed it. What is wrong ...
0
votes
1answer
396 views
Bandwidth speed test with nginx
I have server with nginx-1.4.1.
I want to test bandwidth between my desktop and server.
Incoming speed I can test by simple download file with size 10M from server and count time what I need to ...
1
vote
4answers
387 views
Distro with pip and npm as package managers?
Is there an attempt of distro around that for Python and Node code ( and Ruby , Lua ) would use Pip, NPM and rubygems and luarocks respectively ? It could simply work as a passthrough from native ...
5
votes
2answers
7k views
Increasing conky height
Is there any way to change the height of a conky window?
.conkyrc
background no
update_interval 1
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
double_buffer yes
no_buffers yes
...
8
votes
1answer
377 views
How to force applications to not start maximised in Awesome WM?
How to reproduce:
ssh -X user@host firefox (or some other X application).
Maximise the window.
Close the application.
Open the application in Awesome WM (tried only locally, but should also work ...
2
votes
1answer
406 views
Editing Conky configuration variables from Lua
I've been messing around with Conky for a while now and I recently started dabbling in Lua scripting. One of the things that used to bug me about a "flat" conkyrc approach (as opposed to a combined ...
5
votes
1answer
1k views
Conky - string formatting
I have conky the record:
${color lightblue} Down: ${downspeed wlan0} Up: ${upspeed wlan0}
Conky prints link speed, but the text moves:
Down: OB Up: OB
Down: 60B Up: 60B
Down: 148B Up: 148B
...
3
votes
1answer
1k views
Control-q-? key binding in Awesome WM
I wish to configure my Awesome Window Manager so that the keyboard shortcuts begin with ctrlq.
ctrlq-x, ctrlq-y, ctrlq-z, and so on...
I've attempted to modify the /etc/xdg/awesome/rc.lua config ...
2
votes
2answers
3k views
Using a lua rock installed with luarocks
I wanted to install luasql.mysql with luarocks, and I've ran into a problem. Even though the packages were installed providing mysql.h, luarocks couldn't find it. I solved it eventually:
luarocks ...
13
votes
2answers
3k views
How to separate Awesome's `rc.lua` configuration into multiple files?
I've just moved to Awesome WM from OpenBox. I like that it's very extensible, customizable and I have huge control about window layout. I like structured and organized things and I'd like to separate ...