Removed unused Lua function in Awesome config

This commit is contained in:
Lucien Cartier-Tilet 2020-06-14 20:57:47 +02:00
parent fa3faba5a2
commit c19d4b0d96
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 3 additions and 20 deletions

View File

@ -346,26 +346,9 @@
:PROPERTIES:
:CUSTOM_ID: Custom_functions-Wallpaper-related_functions-Set_a_random_wallpaper-104bbeec
:END:
The following function allows the user to get the list of available
wallpapers I have in my wallpapers directory. This depends on the variable
described in [[#Variable_definitions-Wallpapers_directory-23b54f4f]]. By the
way, the assert on line 3 allows Lua to wait for ~popen~ to run.
#+BEGIN_SRC lua -n
local function get_papes()
local i, papes, popen = 0, {}, io.popen
local pfile = assert(popen('find '..papes_dir..' -type f'))
for filename in pfile:lines() do
i = i + 1
papes[i] = filename
end
pfile:close()
return papes
end
#+END_SRC
This function is another one that sets a random wallpaper from the list of
wallpapers provided by ~get_papes()~ described above. This depends on
[[https://github.com/l3ib/nitrogen/][Nitrogen]] and [[https://github.com/dylanaraps/pywal][Pywal]].
This function sets a random wallpaper from the directory
=~/Pictures/Wallpapers=, see [[file:bin.org::#pape-update-bdecbadf][pape-update]] in my custom scripts. This depends
on [[https://github.com/l3ib/nitrogen/][Nitrogen]] and [[https://github.com/dylanaraps/pywal][Pywal]].
#+BEGIN_SRC lua
local function set_random_pape()
awful.spawn.with_shell("pape-update")